diff --git a/community/autonomous_5g_slicing_lab/Automatic_5G_Network_Lab_Setup.ipynb b/community/autonomous_5g_slicing_lab/Automatic_5G_Network_Lab_Setup.ipynb index 434fc0781..1612206bd 100644 --- a/community/autonomous_5g_slicing_lab/Automatic_5G_Network_Lab_Setup.ipynb +++ b/community/autonomous_5g_slicing_lab/Automatic_5G_Network_Lab_Setup.ipynb @@ -45,10 +45,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "id": "fffa0783-c270-4ed6-9b4b-1f5040341f4f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdin", + "output_type": "stream", + "text": [ + "Enter your API Key: ········\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "✅ API Key successfully saved to config.yaml\n" + ] + } + ], "source": [ "import yaml\n", "from getpass import getpass\n", @@ -96,13 +111,15 @@ "source": [ "### 5 Agentic LLMs for 5G Section\n", "\n", - "Once you have the **5G Lab GitHub** repository cloned and the API Key and Kinetica passwords configured, you can proceed to the **Agentic LLMs** section. This part of the lab demonstrates how to deploy an agentic workflow to monitor network performance and dynamically adjust bandwidth allocation.\n", + "Once you have the **5G Lab GitHub** repository cloned and the API Key and Kinetica passwords configured, you can proceed to install the lab by following these three sections.\n", "\n", "- **Part A – Setup of 5G Lab environment** \n", " Located at: `./autonomous5g_slicing_lab/llm-slicing-5g-lab/DLI_Lab_Setup.ipynb` \n", " Provides instructions to set up a 5G Network Software Stack in your environemnt.\n", - "\n", - "- **Part B – 5G Network Agent Workflow** \n", + "- **Part B – Setup Graphana environment** \n", + " Located at: `./autonomous5g_slicing_lab/agentic-llm/README_GRAPHANA.md` \n", + " Provides instructions to set up a Graphana environment for visualiztaion.\n", + "- **Part C – 5G Network Agent Workflow** \n", " Located at: `./autonomous5g_slicing_lab/agentic-llm/agentic_pipeline_DLI.ipynb` \n", " Explains the agentic pipeline in **LangGraph** for managing 5G network slicing and bandwidth allocation.\n" ] diff --git a/community/autonomous_5g_slicing_lab/README.md b/community/autonomous_5g_slicing_lab/README.md index 501ebc078..abdf12d96 100644 --- a/community/autonomous_5g_slicing_lab/README.md +++ b/community/autonomous_5g_slicing_lab/README.md @@ -26,7 +26,7 @@ To run the lab, ensure you have: - Kinetica database access (credentials in `.env` file). - **Dependencies**: Listed in `requirements.txt` in the respective directories. -## Lab Setup +## 5G Lab Setup The lab setup configures a fully functional 5G network simulation environment. To set up the lab, first you will need to run autonomous_5g_slicing_lab/Automatic_5G_Network_Lab_Setup.ipynb to configure your environment, and then you will need to run the Jupyter notebook located at `autonomous_5g_slicing_lab/llm-slicing-5g-lab/DLI_Lab_Setup.ipynb`. The notebook automates the following steps: @@ -44,6 +44,12 @@ In summary, to start your lab, you need to follow these steps: 1. **Open 'autonomous_5g_slicing_lab/Automatic_5G_Network_Lab_Setup.ipynb' in the main directory and set up your environment keys 2. **Open 'autonomous_5g_slicing_lab/llm-slicing-5g-lab/DLI_Lab_Setup.ipynb and set up your 5G Network Environment +## Running Graphana Dashboard + +This lab uses Graphana for visualization. You need to install the Graphana environment with the following instructions +1. Open the `autonomous_5g_slicing_lab/agentic-llm/REAME_GRAPHANA.md' and follow the instructions. +Ensure you verify the Graphana environment, and you save the GRAPHANA_DASHBOARD variable in the `autonomous_5g_slicing_lab/agentic-llm/confg.yaml file. + ## Running the Agentic Workflow Once the lab is set up, you can run the agentic workflow to monitor network performance and dynamically adjust bandwidth allocation. The workflow uses a LangGraph-based agent to analyze Kinetica database logs and optimize slice configurations. @@ -84,6 +90,7 @@ After running the shutdown notebook, you can restart the lab by re-running `DLI_ - `.env`: Environment variables (e.g., Kinetica credentials). - `logs/`: Directory for log files (created during execution). - `autonomous_5g_slicing_lab/agentic-llm/`: + - `README_GRAPHANA.md `: Markdown file to install and setup Graphana. - `agentic_pipeline-DLI.ipynb`: Notebook for running the LangGraph agent UI. - `requirements.txt`: Python dependencies for the agentic workflow. diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/README_GRAFANA-checkpoint.md b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/README_GRAFANA-checkpoint.md new file mode 100644 index 000000000..b1f951c68 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/README_GRAFANA-checkpoint.md @@ -0,0 +1,90 @@ +# 5G Network Agent: Grafana & InfluxDB Integration Guide + +This guide explains how to set up and use the enhanced real-time metrics dashboard for the 5G Network Agent, using **Grafana** and **InfluxDB** for professional, interactive visualization. It is tailored for users starting from the original [NVIDIA/GenerativeAIExamples](https://github.com/NVIDIA/GenerativeAIExamples/tree/main) repository, and reflects all recent changes and improvements. + +--- + +## 🚀 Overview: What's New + +- **Grafana Dashboards**: Interactive, real-time time-series visualizations +- **InfluxDB**: High-performance time-series database for metrics storage +- **Automated Docker Setup**: One-command startup for Grafana & InfluxDB +- **Streamlit UI**: Embedded Grafana dashboard in the main app +- **Test & Utility Scripts**: Easy verification and troubleshooting + +--- + +## 📁 File Structure (Grafana Integration) + +``` +agentic-llm/ +├── chatbot_DLI.py # Main Streamlit app (Grafana embedded) +├── influxdb_utils.py # InfluxDB client utility (metrics API) +├── test_influxdb.py # Script to test InfluxDB connectivity +├── docker-compose.yml # Docker Compose for Grafana & InfluxDB +├── start_grafana_services.sh # Linux/Mac startup script +├── start_grafana_services.bat # Windows startup script +├── requirements_grafana.txt # Python dependencies +├── grafana/ +│ ├── provisioning/ +│ │ ├── datasources/ +│ │ │ └── influxdb.yaml # InfluxDB datasource config +│ │ └── dashboards/ +│ │ └── dashboard.yaml # Dashboard provisioning config +│ └── dashboards/ +│ └── 5g-metrics-dashboard.json # Dashboard definition (edit here) +├── config.yaml # App configuration (log file paths, etc.) +└── README_GRAFANA.md # This guide +``` + +--- + +## 🛠️ Setup Instructions + +### 1. Prerequisites +-** Install docker compose if not installed +```bash +sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose +sudo chmod +x /usr/local/bin/docker-compose +docker-compose version +``` + +- **Python 3.8+** + +### 2. Install Python Dependencies + +```bash +pip install -r requirements_grafana.txt +``` + +### 3. Start Grafana & InfluxDB Services + +**On Linux/Mac:** +```bash +chmod +x start_grafana_services.sh +./start_grafana_services.sh +``` + +**On Windows:** +```cmd +start_grafana_services.bat +``` + +This will: +- Stop any existing containers +- Start Grafana (http://localhost:9002) and InfluxDB (http://localhost:9001) +- Provision the dashboard and datasource automatically + +### 4. Verify Services +- Graphana Services are running in the following ports. Please make sure you are exposing these ports in your environment. +- **Grafana**: [http://localhost:9002](http://localhost:9002) (Press "Skip" to avoid the user and password authentication) +- **InfluxDB**: [http://localhost:9001](http://localhost:9001) + +### 5. Get Variable for Dashboard in Graphana +- **Go to **Grafana**: [http://localhost:9002](http://localhost:9002) +- **Get the letter combination for your created dashboard. +E.g. https://9002-3yqhu0mm9.brevlab.com/?orgId=1&from=now-6h&to=now&timezone=browser - letter combination is 3yqhu0mm9 and store it in the file config.yaml under /autonomous_5g_slicing_lab/agentic-llm +- See the picture showing how to get the number + +![Alt text](/agentic-llm/images/graphana.png) + diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/agentic_pipeline-DLI-Copy1-checkpoint.ipynb b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/agentic_pipeline-DLI-Copy1-checkpoint.ipynb new file mode 100644 index 000000000..803905928 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/agentic_pipeline-DLI-Copy1-checkpoint.ipynb @@ -0,0 +1,225 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Nvidia Logo](./images/nvidia.png) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 5G Network Configuration Agent\n", + "\n", + "### Overview \n", + "This notebook outlines how the 5G network configuration works—how it detects SDU buffer full errors and reconfigures the network. We will use concepts demonstrated in [intro_agents.ipynb](intro_agents.ipynb) to build this agent using LangGraph and LangChain.\n", + "\n", + "### Table of Contents\n", + "1. Architecture Overview\n", + "2. File Descriptions\n", + "3. Define and run the Agent\n", + "4. Streamlit UI implementation\n", + "\n", + "### 1. Architecture Overview\n", + "\n", + "![Architecture diagram](./images/architecture_diagram.png) \n", + "\n", + "#### Key Components: \n", + "\n", + "**Agents**:\n", + "1. **Monitoring Agent**: \n", + " - Continuously reads gNodeB logs from `../llm-slicing-5g-lab/logs/gNodeB.log`. \n", + " - Analyzes each chunk for SDU buffer full errors. \n", + " - Routes to the Configuration Agent if an error is detected. \n", + "\n", + "2. **Configuration Agent**: \n", + " - Called when an error is detected in the gNodeB logs. \n", + " - Has two tools bound to it: `get_packet_loss` and `reconfigure_network`. \n", + " - First, retrieves the latest packet loss logs from the database using the `get_packet_loss` tool. \n", + " - Analyzes the logs and determines which UE needs more bandwidth. Based on this, it assigns higher bandwidth to the selected UE. \n", + " - Calls the `reconfigure_network` tool to use xAPP and reconfigure the network. \n", + " - Returns control to the Monitoring Agent to continue monitoring. \n", + "\n", + "**Tools**:\n", + "1. **`get_packet_loss`**: Queries the database and retrieves a DataFrame containing per-UE packet loss statistics. \n", + "2. **`reconfigure_network`**: Calls the xAPP with optimized slicing parameters to adjust network configurations. \n", + "\n", + "#### Example Error Logs \n", + "\n", + "```md\n", + "[RLC] /home/nvidia/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 195 SDU rejected, SDU buffer full\n", + " [NR_MAC] Frame.Slot 896.0\n", + " UE RNTI c1f9 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas)\n", + " UE c1f9: UL-RI 1, TPMI 0\n", + " UE c1f9: dlsch_rounds 23415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28\n", + " UE c1f9: ulsch_rounds 8560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9\n", + " UE c1f9: MAC: TX 177738642 RX 612401 bytes\n", + " UE c1f9: LCID 1: TX 1022 RX 325 bytes\n", + "```\n", + " \n", + "### 2. Files to Refer \n", + "\n", + "- **[agents.py](./agents.py)** – Contains code for Monitoring and Configuration Agents. \n", + "- **[tools.py](./tools.py)** – Implements the tools used by the agents. \n", + "- **[langgraph_agent.py](./langgraph_agent.py)** – Defines the LangGraph agent workflow. \n", + "- **[chatbot_DLI.py](./chatbot_DLI.py)** – Implementation for the Streamlit UI. \n", + "\n", + "\n", + "#### Expected Output \n", + "\n", + "By the end of this notebook, you will have: \n", + "- A functional LangGraph workflow connected to the 5g slicing lab, that detects network issues and triggers reconfiguration. \n", + "- A pipeline capable of analyzing logs, querying packet loss data, and adjusting slicing parameters dynamically. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating a LangGraph Workflow " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have defined two agents—the **Monitoring Agent** and the **Configuration Agent**—as combinations of a model and the tool(s) they have access to. This is achieved using LangGraph's `create_react_agent()` function, which creates an agent that employs ReAct prompting.\n", + "\n", + "**States in Graph** \n", + " - A state represents the evolving context of execution, maintaining data across multiple steps. \n", + " - It stores intermediate results, tool outputs, and agent decisions. \n", + " - States enable reasoning over past interactions, ensuring continuity in the workflow. \n", + "\n", + "**Nodes and Edges in LangGraph** \n", + " - **Nodes** represent agents, tool calls, or decision steps in the workflow. \n", + " - **Edges** define the flow between nodes, determining execution order based on conditions. \n", + " - This structure allows dynamic decision-making and parallel execution where needed. \n", + "\n", + "Refer [this](https://langchain-ai.github.io/langgraph/concepts/low_level/) for more information.\n", + "\n", + "The workflow has been defined in [langgraph_agent.py](langgraph_agent.py), please refer it for implementation details. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the Streamlit User Interface\n", + "\n", + "We provide a predefined Streamlit-based user interface for monitoring the system in real time. This interface allows users to interact with the monitoring software efficiently and gain insights into its operation.\n", + "\n", + "#### About Streamlit:\n", + "[Streamlit](https://streamlit.io/) is a lightweight Python framework for building interactive web applications with minimal effort. It enables users to create and deploy data-driven dashboards and tools using simple Python scripts.\n", + "\n", + "#### Features of the UI:\n", + "- Real-time Log Monitoring – View live logs generated by the agent.\n", + "- Packet Loss Visualization – Monitor real-time packet loss of UE1 and UE2 using dynamic charts.\n", + "- Agent Control – Start and stop the agent directly through the UI." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "application/javascript": [ + "var url = 'http://'+window.location.host+'/dashboard';\n", + "element.innerHTML = '

< Link To Streamlit Frontend >

';\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%js\n", + "var url = 'http://'+window.location.host+'/dashboard';\n", + "element.innerHTML = '

< Link To Streamlit Frontend >

';" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Collecting usage statistics. To deactivate, set browser.gatherUsageStats to false.\n", + "\u001b[0m\n", + "\u001b[0m\n", + "\u001b[34m\u001b[1m You can now view your Streamlit app in your browser.\u001b[0m\n", + "\u001b[0m\n", + "\u001b[34m Local URL: \u001b[0m\u001b[1mhttp://localhost:8501\u001b[0m\n", + "\u001b[34m Network URL: \u001b[0m\u001b[1mhttp://172.27.20.152:8501\u001b[0m\n", + "\u001b[34m External URL: \u001b[0m\u001b[1mhttp://204.52.27.230:8501\u001b[0m\n", + "\u001b[0m\n" + ] + } + ], + "source": [ + "!~/.local/bin/streamlit run chatbot_DLI.py --server.enableCORS=false --server.enableXsrfProtection=false" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running Langgraph Agent" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The streamlit UI calls langgraph_agent.py in the background. The agent logs its outputs to agent.log, which are in turn displayed on the UI. You may run the script to see how the agent works. Log files are written to in the `/llm-slicing-5g-lab/logs` directory. Run the following commands in separate terminals to stream logs for agent, UE1 and UE2 respectively.\n", + "\n", + "```sh\n", + "tail -f /llm-slicing-5g-lab/logs/agent.log\n", + "tail -f /llm-slicing-5g-lab/logs/UE2_iperfc.log\n", + "tail -f /llm-slicing-5g-lab/logs/UE1_iperfc.log\n", + "```\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!python3 langgraph_agent.py" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/agentic_pipeline-DLI-checkpoint.ipynb b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/agentic_pipeline-DLI-checkpoint.ipynb new file mode 100644 index 000000000..577694fe2 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/agentic_pipeline-DLI-checkpoint.ipynb @@ -0,0 +1,225 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Nvidia Logo](./images/nvidia.png) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 5G Network Configuration Agent\n", + "\n", + "### Overview \n", + "This notebook outlines how the 5G network configuration works—how it detects SDU buffer full errors and reconfigures the network. We will use concepts demonstrated in [intro_agents.ipynb](intro_agents.ipynb) to build this agent using LangGraph and LangChain.\n", + "\n", + "### Table of Contents\n", + "1. Architecture Overview\n", + "2. File Descriptions\n", + "3. Define and run the Agent\n", + "4. Streamlit UI implementation\n", + "\n", + "### 1. Architecture Overview\n", + "\n", + "![Architecture diagram](./images/architecture_diagram.png) \n", + "\n", + "#### Key Components: \n", + "\n", + "**Agents**:\n", + "1. **Monitoring Agent**: \n", + " - Continuously reads gNodeB logs from `../llm-slicing-5g-lab/logs/gNodeB.log`. \n", + " - Analyzes each chunk for SDU buffer full errors. \n", + " - Routes to the Configuration Agent if an error is detected. \n", + "\n", + "2. **Configuration Agent**: \n", + " - Called when an error is detected in the gNodeB logs. \n", + " - Has two tools bound to it: `get_packet_loss` and `reconfigure_network`. \n", + " - First, retrieves the latest packet loss logs from the database using the `get_packet_loss` tool. \n", + " - Analyzes the logs and determines which UE needs more bandwidth. Based on this, it assigns higher bandwidth to the selected UE. \n", + " - Calls the `reconfigure_network` tool to use xAPP and reconfigure the network. \n", + " - Returns control to the Monitoring Agent to continue monitoring. \n", + "\n", + "**Tools**:\n", + "1. **`get_packet_loss`**: Queries the database and retrieves a DataFrame containing per-UE packet loss statistics. \n", + "2. **`reconfigure_network`**: Calls the xAPP with optimized slicing parameters to adjust network configurations. \n", + "\n", + "#### Example Error Logs \n", + "\n", + "```md\n", + "[RLC] /home/nvidia/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 195 SDU rejected, SDU buffer full\n", + " [NR_MAC] Frame.Slot 896.0\n", + " UE RNTI c1f9 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas)\n", + " UE c1f9: UL-RI 1, TPMI 0\n", + " UE c1f9: dlsch_rounds 23415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28\n", + " UE c1f9: ulsch_rounds 8560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9\n", + " UE c1f9: MAC: TX 177738642 RX 612401 bytes\n", + " UE c1f9: LCID 1: TX 1022 RX 325 bytes\n", + "```\n", + " \n", + "### 2. Files to Refer \n", + "\n", + "- **[agents.py](./agents.py)** – Contains code for Monitoring and Configuration Agents. \n", + "- **[tools.py](./tools.py)** – Implements the tools used by the agents. \n", + "- **[langgraph_agent.py](./langgraph_agent.py)** – Defines the LangGraph agent workflow. \n", + "- **[chatbot_DLI.py](./chatbot_DLI.py)** – Implementation for the Streamlit UI. \n", + "\n", + "\n", + "#### Expected Output \n", + "\n", + "By the end of this notebook, you will have: \n", + "- A functional LangGraph workflow connected to the 5g slicing lab, that detects network issues and triggers reconfiguration. \n", + "- A pipeline capable of analyzing logs, querying packet loss data, and adjusting slicing parameters dynamically. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating a LangGraph Workflow " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have defined two agents—the **Monitoring Agent** and the **Configuration Agent**—as combinations of a model and the tool(s) they have access to. This is achieved using LangGraph's `create_react_agent()` function, which creates an agent that employs ReAct prompting.\n", + "\n", + "**States in Graph** \n", + " - A state represents the evolving context of execution, maintaining data across multiple steps. \n", + " - It stores intermediate results, tool outputs, and agent decisions. \n", + " - States enable reasoning over past interactions, ensuring continuity in the workflow. \n", + "\n", + "**Nodes and Edges in LangGraph** \n", + " - **Nodes** represent agents, tool calls, or decision steps in the workflow. \n", + " - **Edges** define the flow between nodes, determining execution order based on conditions. \n", + " - This structure allows dynamic decision-making and parallel execution where needed. \n", + "\n", + "Refer [this](https://langchain-ai.github.io/langgraph/concepts/low_level/) for more information.\n", + "\n", + "The workflow has been defined in [langgraph_agent.py](langgraph_agent.py), please refer it for implementation details. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the Streamlit User Interface\n", + "\n", + "We provide a predefined Streamlit-based user interface for monitoring the system in real time. This interface allows users to interact with the monitoring software efficiently and gain insights into its operation.\n", + "\n", + "#### About Streamlit:\n", + "[Streamlit](https://streamlit.io/) is a lightweight Python framework for building interactive web applications with minimal effort. It enables users to create and deploy data-driven dashboards and tools using simple Python scripts.\n", + "\n", + "#### Features of the UI:\n", + "- Real-time Log Monitoring – View live logs generated by the agent.\n", + "- Packet Loss Visualization – Monitor real-time packet loss of UE1 and UE2 using dynamic charts.\n", + "- Agent Control – Start and stop the agent directly through the UI." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "application/javascript": [ + "var url = 'http://'+window.location.host+'/dashboard';\n", + "element.innerHTML = '

< Link To Streamlit Frontend >

';\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%js\n", + "var url = 'http://'+window.location.host+'/dashboard';\n", + "element.innerHTML = '

< Link To Streamlit Frontend >

';" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Collecting usage statistics. To deactivate, set browser.gatherUsageStats to false.\n", + "\u001b[0m\n", + "\u001b[0m\n", + "\u001b[34m\u001b[1m You can now view your Streamlit app in your browser.\u001b[0m\n", + "\u001b[0m\n", + "\u001b[34m Local URL: \u001b[0m\u001b[1mhttp://localhost:8501\u001b[0m\n", + "\u001b[34m Network URL: \u001b[0m\u001b[1mhttp://172.27.19.176:8501\u001b[0m\n", + "\u001b[34m External URL: \u001b[0m\u001b[1mhttp://204.52.26.81:8501\u001b[0m\n", + "\u001b[0m\n" + ] + } + ], + "source": [ + "!~/.local/bin/streamlit run chatbot_DLI.py --server.enableCORS=false --server.enableXsrfProtection=false" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running Langgraph Agent" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The streamlit UI calls langgraph_agent.py in the background. The agent logs its outputs to agent.log, which are in turn displayed on the UI. You may run the script to see how the agent works. Log files are written to in the `/llm-slicing-5g-lab/logs` directory. Run the following commands in separate terminals to stream logs for agent, UE1 and UE2 respectively.\n", + "\n", + "```sh\n", + "tail -f /llm-slicing-5g-lab/logs/agent.log\n", + "tail -f /llm-slicing-5g-lab/logs/UE2_iperfc.log\n", + "tail -f /llm-slicing-5g-lab/logs/UE1_iperfc.log\n", + "```\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!python3 langgraph_agent.py" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/chatbot_DLI-checkpoint.py b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/chatbot_DLI-checkpoint.py new file mode 100644 index 000000000..e91a9184c --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/.ipynb_checkpoints/chatbot_DLI-checkpoint.py @@ -0,0 +1,286 @@ +# SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +#Streamlit User Interface for visualizing the 5G Network Agent with Grafana +import streamlit as st +import pandas as pd +import time +import re +import numpy as np +import time +import streamlit as st +from watchdog.observers import Observer +from watchdog.events import FileSystemEventHandler +import subprocess +import os +import signal +import yaml +from gpudb import GPUdb +from dotenv import load_dotenv +import json +import logging +import colorlog +from influxdb_utils import InfluxDBMetricsClient + + +# Configure colored logging. +handler = colorlog.StreamHandler() +handler.setFormatter(colorlog.ColoredFormatter( + fmt="%(log_color)s%(asctime)s %(levelname)s: %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + log_colors={ + 'DEBUG': 'blue', + 'INFO': 'green', + 'WARNING': 'yellow', + 'ERROR': 'red', + 'CRITICAL': 'red,bg_white', + } +)) +logger = colorlog.getLogger(__name__) +logger.addHandler(handler) +logger.setLevel(logging.INFO) +logger.propagate = False + +# Configuration: Paths for both log files +config_file = yaml.safe_load(open('config.yaml', 'r')) +AGENT_LOG_FILE = config_file['AGENT_LOG_FILE'] +os.makedirs(os.path.dirname(AGENT_LOG_FILE), exist_ok=True) + +# Create the file if it doesn't exist +if not os.path.exists(AGENT_LOG_FILE): + with open(AGENT_LOG_FILE, "w") as file: + pass + +WINDOW_SIZE_SECONDS = 60 +process = None +logs = [] + +load_dotenv("../llm-slicing-5g-lab/.env") +kdbc_options = GPUdb.Options() +kdbc_options.username = os.environ.get("KINETICA_USERNAME") +kdbc_options.password = os.environ.get("KINETICA_PASSWORD") +kdbc_options.disable_auto_discovery = True +kdbc: GPUdb = GPUdb( + host=os.environ.get("KINETICA_HOST"), + options=kdbc_options +) + +def generate_sql_query(ue:str): + load_dotenv("../llm-slicing-5g-lab/.env") + return f""" + SELECT + "timestamp", + "loss_percentage", + "bitrate" + FROM + {os.environ.get("IPERF3_RANDOM_TABLE_NAME")} + WHERE + "ue"='{ue}' AND "timestamp" >= current_datetime() - INTERVAL {WINDOW_SIZE_SECONDS} SECONDS + ORDER BY + "timestamp" DESC + """ + +# Initialize InfluxDB client +influx_client = InfluxDBMetricsClient() +influx_client.connect() + +# Initialize session state for persistent data storage +if "data_ue1" not in st.session_state: + st.session_state.data_ue1 = pd.DataFrame() +if "data_ue2" not in st.session_state: + st.session_state.data_ue2 = pd.DataFrame() + +#Class for streaming Agent logs to UI +class LogFileHandler(FileSystemEventHandler): + def __init__(self, callback): + self.callback = callback + + def on_modified(self, event): + if event.src_path == AGENT_LOG_FILE: + self.callback() + +def tail_logs(): + """ + Generator function that yields new log lines from Agent_logs (all lines that appeared + since the last iteration) so we do not artificially delay reading them. + """ + with open(AGENT_LOG_FILE, 'r') as file: + # Move to the end of file + file.seek(0, 2) + + while True: + current_position = file.tell() + lines = file.readlines() + yield lines + +def start(): + #Start Agent + process = subprocess.Popen(['python3', 'langgraph_agent.py']) + + # Read stdout and stderr line by line + # for line in process.stdout: + # logger.info(line.strip()) # Log stdout + + # for line in process.stderr: + # logger.error(line.strip()) # Log stderr + +def stop(): + if process is not None: + st.session_state.data_ue1 = None + st.session_state.data_ue2 = None + os.kill(process.pid, signal.SIGTERM) + +def get_cutoff_time() -> str: + current_time = pd.Timestamp.utcnow().tz_convert("UTC") + return (current_time - pd.Timedelta(seconds=WINDOW_SIZE_SECONDS)) + +def get_grafana_dashboard_url(): + """Get the Grafana dashboard URL for embedding (cloud version)""" + return "https://9002-3yqhu0mm9.brevlab.com/d/5g-metrics/5g-network-metrics-dashboard?orgId=1&refresh=5s&theme=dark" + +st.set_page_config(page_title="Real-Time Packet Loss & Transfer Rate", layout="wide") +st.title("5G-Network Configuration Agent") +status_placeholder = st.empty() +status_placeholder.text("Press the button to start monitoring!") + +# Set up file watcher (though we mainly rely on tail_logs) +event_handler = LogFileHandler(lambda: None) +observer = Observer() +observer.schedule(event_handler, path=AGENT_LOG_FILE) +observer.start() +log_generator = tail_logs() + +col_logs, col_charts = st.columns([3, 3]) +with col_logs: + button_col1, button_col2 = st.columns(2) + with button_col1: + start_monitoring = st.button("Start Monitoring", key="start", use_container_width=True) + + with button_col2: + stop_monitoring = st.button("Stop Monitoring", key="stop", use_container_width=True) + + log_display = st.empty() # For log text area + log_display.code('', height=600) + +with col_charts: + + # Check if Grafana is accessible + try: + import requests + # In the health check, use http://localhost:9002 + response = requests.get("https://9002-3yqhu0mm9.brevlab.com", timeout=5) + if response.status_code == 200: + + # Embed Grafana dashboard + dashboard_url = get_grafana_dashboard_url() + st.markdown(f""" + + """, unsafe_allow_html=True) + + # Add link to open in new tab + st.markdown(f"[🔗 Open Dashboard in New Tab]({dashboard_url})") + else: + st.error("❌ Grafana is not responding properly") + except Exception as e: + st.error(f"❌ Cannot connect to Grafana: {e}") + st.info("💡 Please start Grafana services using: `./start_grafana_services.sh` or `start_grafana_services.bat`") + +if start_monitoring: + status_placeholder.text("Monitoring in Progress") + start() + while True: + # Read the latest log data for UE1 and UE2 + new_log = next(log_generator) + logs.extend([line.strip() for line in new_log]) + + #erase old logs + if len(logs) > 10000: + logs.pop(0) + + # Update the display with the last 200 lines + log_display.code('\n'.join(logs[-200:]), height=600) + st.markdown(""" + + """, unsafe_allow_html=True) + + # Fetch new data for UE1 and UE2 (restored to NVIDIA original) + cutoff_time = get_cutoff_time() + + try: + new_data_ue1 = kdbc.to_df(sql=generate_sql_query(ue="UE1")) + new_data_ue1["timestamp"] = pd.to_datetime(new_data_ue1["timestamp"]).dt.tz_localize("UTC") + + if not new_data_ue1.empty: + st.session_state.data_ue1 = ( + pd.concat([st.session_state.data_ue1, new_data_ue1]) + .drop_duplicates(subset=["timestamp"]) + .sort_values("timestamp") + .query("timestamp > @cutoff_time") + .reset_index(drop=True) + ) + except Exception as error: + logger.error(f"Error fetching UE1 data: {error}") + + try: + new_data_ue2 = kdbc.to_df(sql=generate_sql_query(ue="UE3")) # Use UE3 as in the original + new_data_ue2["timestamp"] = pd.to_datetime(new_data_ue2["timestamp"]).dt.tz_localize("UTC") + + if not new_data_ue2.empty: + st.session_state.data_ue2 = ( + pd.concat([st.session_state.data_ue2, new_data_ue2]) + .drop_duplicates(subset=["timestamp"]) + .sort_values("timestamp") + .query("timestamp > @cutoff_time") + .reset_index(drop=True) + ) + except Exception as error: + logger.error(f"Error fetching UE2 data: {error}") + + # Write new data to InfluxDB for real-time visualization + if not st.session_state.data_ue1.empty: + # Write latest UE1 data to InfluxDB + latest_ue1 = st.session_state.data_ue1.iloc[-1] + influx_client.write_metrics( + ue="UE1", + loss_percentage=latest_ue1["loss_percentage"], + bitrate=latest_ue1["bitrate"], + timestamp=latest_ue1["timestamp"] + ) + + if not st.session_state.data_ue2.empty: + # Write latest UE2 data to InfluxDB + latest_ue2 = st.session_state.data_ue2.iloc[-1] + influx_client.write_metrics( + ue="UE3", # match Kinetica/original logic + loss_percentage=latest_ue2["loss_percentage"], + bitrate=latest_ue2["bitrate"], + timestamp=latest_ue2["timestamp"] + ) + +if stop_monitoring: + status_placeholder.text("Monitoring Stopped") + # Close InfluxDB connection + influx_client.close() + stop() \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/README_GRAFANA.md b/community/autonomous_5g_slicing_lab/agentic-llm/README_GRAFANA.md new file mode 100644 index 000000000..eaaa2d4ba --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/README_GRAFANA.md @@ -0,0 +1,91 @@ +# 5G Network Agent: Grafana & InfluxDB Integration Guide + +This guide explains how to set up and use the enhanced real-time metrics dashboard for the 5G Network Agent, using **Grafana** and **InfluxDB** for professional, interactive visualization. It is tailored for users starting from the original [NVIDIA/GenerativeAIExamples](https://github.com/NVIDIA/GenerativeAIExamples/tree/main) repository, and reflects all recent changes and improvements. + +--- + +## 🚀 Overview: What's New + +- **Grafana Dashboards**: Interactive, real-time time-series visualizations +- **InfluxDB**: High-performance time-series database for metrics storage +- **Automated Docker Setup**: One-command startup for Grafana & InfluxDB +- **Streamlit UI**: Embedded Grafana dashboard in the main app +- **Test & Utility Scripts**: Easy verification and troubleshooting + +--- + +## 📁 File Structure (Grafana Integration) + +``` +agentic-llm/ +├── chatbot_DLI.py # Main Streamlit app (Grafana embedded) +├── influxdb_utils.py # InfluxDB client utility (metrics API) +├── test_influxdb.py # Script to test InfluxDB connectivity +├── docker-compose.yml # Docker Compose for Grafana & InfluxDB +├── start_grafana_services.sh # Linux/Mac startup script +├── start_grafana_services.bat # Windows startup script +├── requirements_grafana.txt # Python dependencies +├── grafana/ +│ ├── provisioning/ +│ │ ├── datasources/ +│ │ │ └── influxdb.yaml # InfluxDB datasource config +│ │ └── dashboards/ +│ │ └── dashboard.yaml # Dashboard provisioning config +│ └── dashboards/ +│ └── 5g-metrics-dashboard.json # Dashboard definition (edit here) +├── config.yaml # App configuration (log file paths, etc.) +└── README_GRAFANA.md # This guide +``` + +--- + +## 🛠️ Setup Instructions + +### 1. Prerequisites +-** Install docker compose if not installed +```bash +sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose +sudo chmod +x /usr/local/bin/docker-compose +docker-compose version +``` + +- **Python 3.8+** + +### 2. Install Python Dependencies + +```bash +cd ./autonomous_5g_slicing_lab/agentic-llm +pip install -r requirements_grafana.txt +``` + +### 3. Start Grafana & InfluxDB Services + +**On Linux/Mac:** +```bash +chmod +x start_grafana_services.sh +./start_grafana_services.sh +``` + +**On Windows:** +```cmd +start_grafana_services.bat +``` + +This will: +- Stop any existing containers +- Start Grafana (http://localhost:9002) and InfluxDB (http://localhost:9001) +- Provision the dashboard and datasource automatically + +### 4. Verify Services +- Graphana Services are running in the following ports. Please make sure you are exposing these ports in your environment. +- **Grafana**: [http://localhost:9002](http://localhost:9002) (Press "Skip" to avoid the user and password authentication) +- **InfluxDB**: [http://localhost:9001](http://localhost:9001) + +### 5. Get Variable for Dashboard in Graphana +- **Go to **Grafana**: [http://localhost:9002](http://localhost:9002) +- **Get the letter combination for your created dashboard. +E.g. https://9002-3yqhu0mm9.brevlab.com/?orgId=1&from=now-6h&to=now&timezone=browser - letter combination is 3yqhu0mm9 and store it in the file config.yaml under /autonomous_5g_slicing_lab/agentic-llm +- See the picture showing how to get the number + +![Alt text](/agentic-llm/images/graphana.png) + diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/agentic_pipeline-DLI.ipynb b/community/autonomous_5g_slicing_lab/agentic-llm/agentic_pipeline-DLI.ipynb index efd3bbfe3..031a61041 100644 --- a/community/autonomous_5g_slicing_lab/agentic-llm/agentic_pipeline-DLI.ipynb +++ b/community/autonomous_5g_slicing_lab/agentic-llm/agentic_pipeline-DLI.ipynb @@ -12,66 +12,8 @@ "metadata": {}, "source": [ "## 5G Network Configuration Agent\n", - "\n", - "### Overview \n", - "This notebook outlines how the 5G network configuration works—how it detects SDU buffer full errors and reconfigures the network. We will use concepts demonstrated in [intro_agents.ipynb](intro_agents.ipynb) to build this agent using LangGraph and LangChain.\n", - "\n", - "### Table of Contents\n", - "1. Architecture Overview\n", - "2. File Descriptions\n", - "3. Define and run the Agent\n", - "4. Streamlit UI implementation\n", - "\n", - "### 1. Architecture Overview\n", - "\n", - "![Architecture diagram](./images/architecture_diagram.png) \n", - "\n", - "#### Key Components: \n", - "\n", - "**Agents**:\n", - "1. **Monitoring Agent**: \n", - " - Continuously reads gNodeB logs from `../llm-slicing-5g-lab/logs/gNodeB.log`. \n", - " - Analyzes each chunk for SDU buffer full errors. \n", - " - Routes to the Configuration Agent if an error is detected. \n", - "\n", - "2. **Configuration Agent**: \n", - " - Called when an error is detected in the gNodeB logs. \n", - " - Has two tools bound to it: `get_packet_loss` and `reconfigure_network`. \n", - " - First, retrieves the latest packet loss logs from the database using the `get_packet_loss` tool. \n", - " - Analyzes the logs and determines which UE needs more bandwidth. Based on this, it assigns higher bandwidth to the selected UE. \n", - " - Calls the `reconfigure_network` tool to use xAPP and reconfigure the network. \n", - " - Returns control to the Monitoring Agent to continue monitoring. \n", - "\n", - "**Tools**:\n", - "1. **`get_packet_loss`**: Queries the database and retrieves a DataFrame containing per-UE packet loss statistics. \n", - "2. **`reconfigure_network`**: Calls the xAPP with optimized slicing parameters to adjust network configurations. \n", - "\n", - "#### Example Error Logs \n", - "\n", - "```md\n", - "[RLC] /home/nvidia/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 195 SDU rejected, SDU buffer full\n", - " [NR_MAC] Frame.Slot 896.0\n", - " UE RNTI c1f9 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas)\n", - " UE c1f9: UL-RI 1, TPMI 0\n", - " UE c1f9: dlsch_rounds 23415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28\n", - " UE c1f9: ulsch_rounds 8560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9\n", - " UE c1f9: MAC: TX 177738642 RX 612401 bytes\n", - " UE c1f9: LCID 1: TX 1022 RX 325 bytes\n", - "```\n", - " \n", - "### 2. Files to Refer \n", - "\n", - "- **[agents.py](./agents.py)** – Contains code for Monitoring and Configuration Agents. \n", - "- **[tools.py](./tools.py)** – Implements the tools used by the agents. \n", - "- **[langgraph_agent.py](./langgraph_agent.py)** – Defines the LangGraph agent workflow. \n", - "- **[chatbot_DLI.py](./chatbot_DLI.py)** – Implementation for the Streamlit UI. \n", - "\n", - "\n", - "#### Expected Output \n", - "\n", - "By the end of this notebook, you will have: \n", - "- A functional LangGraph workflow connected to the 5g slicing lab, that detects network issues and triggers reconfiguration. \n", - "- A pipeline capable of analyzing logs, querying packet loss data, and adjusting slicing parameters dynamically. " + "## Fi\n", + "\n" ] }, { @@ -160,9 +102,10 @@ "\u001b[34m\u001b[1m You can now view your Streamlit app in your browser.\u001b[0m\n", "\u001b[0m\n", "\u001b[34m Local URL: \u001b[0m\u001b[1mhttp://localhost:8501\u001b[0m\n", - "\u001b[34m Network URL: \u001b[0m\u001b[1mhttp://172.27.19.176:8501\u001b[0m\n", - "\u001b[34m External URL: \u001b[0m\u001b[1mhttp://204.52.26.81:8501\u001b[0m\n", - "\u001b[0m\n" + "\u001b[34m Network URL: \u001b[0m\u001b[1mhttp://172.27.31.121:8501\u001b[0m\n", + "\u001b[34m External URL: \u001b[0m\u001b[1mhttp://204.52.27.192:8501\u001b[0m\n", + "\u001b[0m\n", + "Saved graph image as ./images/langgraph_DLI.png\n" ] } ], diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/agents.py b/community/autonomous_5g_slicing_lab/agentic-llm/agents.py index ca71756ba..8c74d75db 100644 --- a/community/autonomous_5g_slicing_lab/agentic-llm/agents.py +++ b/community/autonomous_5g_slicing_lab/agentic-llm/agents.py @@ -1,221 +1,221 @@ -# SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -import random -import time -import yaml -from typing import TypedDict, Optional -from langchain_core.messages import HumanMessage, SystemMessage -from langchain_nvidia_ai_endpoints import ChatNVIDIA -from langgraph.graph import StateGraph, MessagesState -from langgraph.prebuilt import create_react_agent -from tools import reconfigure_network, get_packetloss_logs -import logging - -# Configure the logger without timestamp and level tags -config_file = yaml.safe_load(open('config.yaml', 'r')) - -logging.basicConfig( - filename= config_file['AGENT_LOG_FILE'], # Log file name - level=logging.INFO, # Log level - format="%(message)s" # Only log the message -) - -#llm api to use Nvidia NIM Inference Endpoints. -llm = ChatNVIDIA( - model= config_file['model_name'], - api_key= config_file['API_KEY'], - temperature=0.2, - top_p=0.7, - max_tokens=4096, -) - -#State class for communication between agents -class State(TypedDict): - start: Optional[int] = None #pointer to start reading from gnodeB.log - messages: Optional[str] = None - agent_id: Optional[str] = None #useful for routing between agents - files: Optional[dict] = None #pass error logs from Monitoring Agent to COnfiguration Agent - consent: Optional[str] = None - config_value: Optional[list] = None #keep a track of slice values - count: Optional[int] = None - -def MonitoringAgent(state: State): - response = "This is a Monitoring agent, monitoring logs for SDU buffer full error." - logging.info(response) - filename = config_file['gnb_logs'] - chunk_size = 1000 - start_val = state['start'] #Always start parsing logs from end of file to analayze the most recent logs - - #Keep reading the gnodeB logs file for chunks till an error is detected. - with open(filename, 'r') as file: - while True: - file_size = os.path.getsize(filename) - #Wait till there are substantial logs - if (start_val + chunk_size) >= file_size: - #print("Waiting for logs\n") - logging.info("Waiting for logs \n") - time.sleep(2) - continue - file.seek(start_val) - chunk = file.read(chunk_size) - - if chunk: - start_val += len(chunk) - prompt0 = f"""Hello, you are a Network Monitoring agent. You will be provided with a random chunk of text. Your task is to classify logs with "buffer full" errors: - If it has a "buffer full" error just reply "yes". If it does not have a "buffer full" error reply "no". DO NOT provide explanation. - Example of Log that HAS a "buffer full" error: - - [RLC] /home/nvidia/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 195 SDU rejected, SDU buffer full - [NR_MAC] Frame.Slot 896.0 - UE RNTI c1f9 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) - UE c1f9: UL-RI 1, TPMI 0 - UE c1f9: dlsch_rounds 23415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 - UE c1f9: ulsch_rounds 8560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 - UE c1f9: MAC: TX 177738642 RX 612401 bytes - UE c1f9: LCID 1: TX 1022 RX 325 bytes - - Example of Log that does NOT have a "buffer full" error: - - [NR_MAC] Frame.Slot 896.0 - UE RNTI c1f9 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) - UE c1f9: UL-RI 1, TPMI 0 - UE c1f9: dlsch_rounds 56771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 - UE c1f9: ulsch_rounds 16844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 - UE c1f9: MAC: TX 480086220 RX 941362 bytes - UE c1f9: LCID 1: TX 1022 RX 325 bytes - - Logs to analyze: - {chunk} - """ - human_message0 = HumanMessage(content=prompt0) - response0 = llm.invoke([human_message0]) - cleaned_content0 = response0.content - logging.info("Response from Monitoring agent: Error Detected? %s\n", cleaned_content0) - if cleaned_content0=='yes': - break - else: - continue - return {"messages":response, "start": start_val, "files":{"chunk": chunk} } - -system_promt = 'You are a Configuration agent in a LangGraph. Your task is to help an user reconfigure a current 5G network. You must reply to the questions asked concisely, and exactly in the format directed to you.' -config_agent = create_react_agent(llm, tools=[reconfigure_network, get_packetloss_logs], prompt = system_promt) -def ConfigurationAgent(state: State): - response = "This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error." - logging.info(response) - logging.info("Error detected in logs: \n %s \n\n", state['files']['chunk']) - prompt_0 = ''' - Your task is to determine which UE needs reconfiguration. Follow these steps exactly: - - 1. Call the get_packetloss_logs tool to get packet loss logs. - Action: get_packetloss_logs() - - 2. Analyze the results: - - Identify which UE (UE1 or UE3) has a higher packet loss, depending on lost_packets,loss_percentage and UE. - - State which UE you've identified as needing reconfiguration. - If UE1 requires reconfiguration, just reply "UE1". If UE3 requires reconfiguration, just reply "UE3". DO NOT provide explanation. - ''' - human_message = HumanMessage(content=prompt_0) - response = config_agent.invoke({"messages":[human_message]}) - cleaned_content0 = response['messages'][-1].content - - prompt_1 = f''' - - Your task is to reconfigure the network using the `reconfigure_network` tool. The tool accepts the following parameters: - 1. `UE` = UE (UE1 or UE2) which requires reconfiguration - 2. `value_1_old` = Old value 1 of configs - 3. `value_2_old` = Old value 2 of configs - - Here is the input: - - `UE` = {cleaned_content0} - - `value_1_old` = {state['config_value'][0]} - - `value_2_old` = {state['config_value'][1]} - - Use the tool to reconfigure the network. Return **only** the tool response list as the output.''' - - human_message2 = HumanMessage(content=prompt_1) - response2 = config_agent.invoke({"messages":[human_message2]}) - config_value_updated = response2['messages'][-2].content - config_value_updated = config_value_updated.strip("[]").replace("'", "").split(", ") - count = state['count'] - count += 1 - - #start monitoring from the end - start = os.path.getsize(config_file['gnb_logs']) - - #take in human input - consent = 'yes' - if count >= config_file['interrupt_after']: - consent = input("Do you want to continue Monitoring? (yes/no)") - return {"messages":response, "agent_id": "Configuration Agent", "start": start, 'config_value':config_value_updated, 'count': count, 'consent': consent} - -""" -**Exercise** -We saw how to run the configuration agent with 2 LLM calls to the agent. Can we use the create_react_agent to execute both tool calls with a single prompt? -TO DO: -Replace the below configuration agent to find out! - -def ConfigurationAgent(state: State): - response = "This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error." - logging.info(response) - logging.info("Error detected in logs: \n %s \n\n", state['files']['chunk']) - #test: - combined_prompt = f''' - You are a network reconfiguration agent specializing in UE reconfiguration. Your task is to identify and reconfigure problematic UE equipment. Follow these steps exactly: - - 1. **Get logs**: - - Call `get_packetloss_logs` to retrieve network performance data - Action: get_packetloss_logs() - - 2. **Analysis**: - - Identify which UE (UE1 or UE2) shows higher packet loss using these metrics: - * Total lost_packets - * loss_percentage - * UE identifier - - Store your conclusion as "target_UE" - - 3. **Reconfiguration**: - - Use `reconfigure_network` with parameters: - 1. UE = target_UE - 2. value_1_old = {state['config_value'][0]} - 3. value_2_old = {state['config_value'][1]} - Action: reconfigure_network(UE=target_UE, value_1_old={state['config_value'][0]}, value_2_old={state['config_value'][1]}) - - 4. **Output**: - - Return **only** the final tool response from `reconfigure_network` - - No explanations or additional text - ''' - config_agent = create_react_agent(llm, tools=[reconfigure_network, get_packetloss_logs], prompt=combined_prompt) - time.sleep(2) - human_message2 = HumanMessage(content="Please reconfigure the network") - response2 = config_agent.invoke({"messages":[human_message2]}) - - config_value_updated = response2['messages'][-2].content - config_value_updated = config_value_updated.strip("[]").replace("'", "").split(", ") - count = state['count'] - count += 1 - - #start monitoring from the end - start = os.path.getsize(state['logs_filename']) - - #take in human input - consent = 'yes' - if count >= config_file['interrupt_after']: - consent = input("Do you want to continue Monitoring? (yes/no)") - return {"messages":response, "agent_id": "Configuration Agent", "start": start, 'config_value':config_value_updated, 'count': count, 'consent': consent} - - +# SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import random +import time +import yaml +from typing import TypedDict, Optional +from langchain_core.messages import HumanMessage, SystemMessage +from langchain_nvidia_ai_endpoints import ChatNVIDIA +from langgraph.graph import StateGraph, MessagesState +from langgraph.prebuilt import create_react_agent +from tools import reconfigure_network, get_packetloss_logs +import logging + +# Configure the logger without timestamp and level tags +config_file = yaml.safe_load(open('config.yaml', 'r')) + +logging.basicConfig( + filename= config_file['AGENT_LOG_FILE'], # Log file name + level=logging.INFO, # Log level + format="%(message)s" # Only log the message +) + +#llm api to use Nvidia NIM Inference Endpoints. +llm = ChatNVIDIA( + model= config_file['model_name'], + api_key= config_file['API_KEY'], + temperature=0.2, + top_p=0.7, + max_tokens=4096, +) + +#State class for communication between agents +class State(TypedDict): + start: Optional[int] = None #pointer to start reading from gnodeB.log + messages: Optional[str] = None + agent_id: Optional[str] = None #useful for routing between agents + files: Optional[dict] = None #pass error logs from Monitoring Agent to COnfiguration Agent + consent: Optional[str] = None + config_value: Optional[list] = None #keep a track of slice values + count: Optional[int] = None + +def MonitoringAgent(state: State): + response = "This is a Monitoring agent, monitoring logs for SDU buffer full error." + logging.info(response) + filename = config_file['gnb_logs'] + chunk_size = 1000 + start_val = state['start'] #Always start parsing logs from end of file to analayze the most recent logs + + #Keep reading the gnodeB logs file for chunks till an error is detected. + with open(filename, 'r') as file: + while True: + file_size = os.path.getsize(filename) + #Wait till there are substantial logs + if (start_val + chunk_size) >= file_size: + #print("Waiting for logs\n") + logging.info("Waiting for logs \n") + time.sleep(2) + continue + file.seek(start_val) + chunk = file.read(chunk_size) + + if chunk: + start_val += len(chunk) + prompt0 = f"""Hello, you are a Network Monitoring agent. You will be provided with a random chunk of text. Your task is to classify logs with "buffer full" errors: + If it has a "buffer full" error just reply "yes". If it does not have a "buffer full" error reply "no". DO NOT provide explanation. + Example of Log that HAS a "buffer full" error: + + [RLC] /home/nvidia/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 195 SDU rejected, SDU buffer full + [NR_MAC] Frame.Slot 896.0 + UE RNTI c1f9 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) + UE c1f9: UL-RI 1, TPMI 0 + UE c1f9: dlsch_rounds 23415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 + UE c1f9: ulsch_rounds 8560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 + UE c1f9: MAC: TX 177738642 RX 612401 bytes + UE c1f9: LCID 1: TX 1022 RX 325 bytes + + Example of Log that does NOT have a "buffer full" error: + + [NR_MAC] Frame.Slot 896.0 + UE RNTI c1f9 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) + UE c1f9: UL-RI 1, TPMI 0 + UE c1f9: dlsch_rounds 56771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 + UE c1f9: ulsch_rounds 16844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 + UE c1f9: MAC: TX 480086220 RX 941362 bytes + UE c1f9: LCID 1: TX 1022 RX 325 bytes + + Logs to analyze: + {chunk} + """ + human_message0 = HumanMessage(content=prompt0) + response0 = llm.invoke([human_message0]) + cleaned_content0 = response0.content + logging.info("Response from Monitoring agent: Error Detected? %s\n", cleaned_content0) + if cleaned_content0=='yes': + break + else: + continue + return {"messages":response, "start": start_val, "files":{"chunk": chunk} } + +system_promt = 'You are a Configuration agent in a LangGraph. Your task is to help an user reconfigure a current 5G network. You must reply to the questions asked concisely, and exactly in the format directed to you.' +config_agent = create_react_agent(llm, tools=[reconfigure_network, get_packetloss_logs], prompt = system_promt) +def ConfigurationAgent(state: State): + response = "This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error." + logging.info(response) + logging.info("Error detected in logs: \n %s \n\n", state['files']['chunk']) + prompt_0 = ''' + Your task is to determine which UE needs reconfiguration. Follow these steps exactly: + + 1. Call the get_packetloss_logs tool to get packet loss logs. + Action: get_packetloss_logs() + + 2. Analyze the results: + - Identify which UE (UE1 or UE3) has a higher packet loss, depending on lost_packets,loss_percentage and UE. + - State which UE you've identified as needing reconfiguration. + If UE1 requires reconfiguration, just reply "UE1". If UE3 requires reconfiguration, just reply "UE3". DO NOT provide explanation. + ''' + human_message = HumanMessage(content=prompt_0) + response = config_agent.invoke({"messages":[human_message]}) + cleaned_content0 = response['messages'][-1].content + + prompt_1 = f''' + + Your task is to reconfigure the network using the `reconfigure_network` tool. The tool accepts the following parameters: + 1. `UE` = UE (UE1 or UE2) which requires reconfiguration + 2. `value_1_old` = Old value 1 of configs + 3. `value_2_old` = Old value 2 of configs + + Here is the input: + - `UE` = {cleaned_content0} + - `value_1_old` = {state['config_value'][0]} + - `value_2_old` = {state['config_value'][1]} + + Use the tool to reconfigure the network. Return **only** the tool response list as the output.''' + + human_message2 = HumanMessage(content=prompt_1) + response2 = config_agent.invoke({"messages":[human_message2]}) + config_value_updated = response2['messages'][-2].content + config_value_updated = config_value_updated.strip("[]").replace("'", "").split(", ") + count = state['count'] + count += 1 + + #start monitoring from the end + start = os.path.getsize(config_file['gnb_logs']) + + #take in human input + consent = 'yes' + if count >= config_file['interrupt_after']: + consent = input("Do you want to continue Monitoring? (yes/no)") + return {"messages":response, "agent_id": "Configuration Agent", "start": start, 'config_value':config_value_updated, 'count': count, 'consent': consent} + +""" +**Exercise** +We saw how to run the configuration agent with 2 LLM calls to the agent. Can we use the create_react_agent to execute both tool calls with a single prompt? +TO DO: +Replace the below configuration agent to find out! + +def ConfigurationAgent(state: State): + response = "This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error." + logging.info(response) + logging.info("Error detected in logs: \n %s \n\n", state['files']['chunk']) + #test: + combined_prompt = f''' + You are a network reconfiguration agent specializing in UE reconfiguration. Your task is to identify and reconfigure problematic UE equipment. Follow these steps exactly: + + 1. **Get logs**: + - Call `get_packetloss_logs` to retrieve network performance data + Action: get_packetloss_logs() + + 2. **Analysis**: + - Identify which UE (UE1 or UE2) shows higher packet loss using these metrics: + * Total lost_packets + * loss_percentage + * UE identifier + - Store your conclusion as "target_UE" + + 3. **Reconfiguration**: + - Use `reconfigure_network` with parameters: + 1. UE = target_UE + 2. value_1_old = {state['config_value'][0]} + 3. value_2_old = {state['config_value'][1]} + Action: reconfigure_network(UE=target_UE, value_1_old={state['config_value'][0]}, value_2_old={state['config_value'][1]}) + + 4. **Output**: + - Return **only** the final tool response from `reconfigure_network` + - No explanations or additional text + ''' + config_agent = create_react_agent(llm, tools=[reconfigure_network, get_packetloss_logs], prompt=combined_prompt) + time.sleep(2) + human_message2 = HumanMessage(content="Please reconfigure the network") + response2 = config_agent.invoke({"messages":[human_message2]}) + + config_value_updated = response2['messages'][-2].content + config_value_updated = config_value_updated.strip("[]").replace("'", "").split(", ") + count = state['count'] + count += 1 + + #start monitoring from the end + start = os.path.getsize(state['logs_filename']) + + #take in human input + consent = 'yes' + if count >= config_file['interrupt_after']: + consent = input("Do you want to continue Monitoring? (yes/no)") + return {"messages":response, "agent_id": "Configuration Agent", "start": start, 'config_value':config_value_updated, 'count': count, 'consent': consent} + + """ \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/chatbot_DLI.py b/community/autonomous_5g_slicing_lab/agentic-llm/chatbot_DLI.py index f689d5095..93a2d5fc5 100644 --- a/community/autonomous_5g_slicing_lab/agentic-llm/chatbot_DLI.py +++ b/community/autonomous_5g_slicing_lab/agentic-llm/chatbot_DLI.py @@ -13,18 +13,16 @@ # See the License for the specific language governing permissions and # limitations under the License. -#Streamlit User Interface for visualizing the 5G Network Agent +#Streamlit User Interface for visualizing the 5G Network Agent with Grafana import streamlit as st import pandas as pd import time import re -import matplotlib.pyplot as plt import numpy as np import time import streamlit as st from watchdog.observers import Observer from watchdog.events import FileSystemEventHandler -from matplotlib.ticker import FuncFormatter import subprocess import os import signal @@ -34,6 +32,7 @@ import json import logging import colorlog +from influxdb_utils import InfluxDBMetricsClient # Configure colored logging. @@ -57,6 +56,7 @@ # Configuration: Paths for both log files config_file = yaml.safe_load(open('config.yaml', 'r')) AGENT_LOG_FILE = config_file['AGENT_LOG_FILE'] +GRAPHANA_DASHBOARD = config_file['GRAPHANA_DASHBOARD'] os.makedirs(os.path.dirname(AGENT_LOG_FILE), exist_ok=True) # Create the file if it doesn't exist @@ -93,6 +93,10 @@ def generate_sql_query(ue:str): "timestamp" DESC """ +# Initialize InfluxDB client +influx_client = InfluxDBMetricsClient() +influx_client.connect() + # Initialize session state for persistent data storage if "data_ue1" not in st.session_state: st.session_state.data_ue1 = pd.DataFrame() @@ -143,33 +147,9 @@ def get_cutoff_time() -> str: current_time = pd.Timestamp.utcnow().tz_convert("UTC") return (current_time - pd.Timedelta(seconds=WINDOW_SIZE_SECONDS)) -def create_plot(): - plt.close("all") - plt.style.use("dark_background") - fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(4,4)) - ax1.set_title("User Equipment 1", fontsize=8, color="white") - ax1.grid(True, linestyle="--", linewidth=0.5, color="gray") - ax1.set_ylim(0, 100) - ax1.tick_params(axis="y", colors="#FFD700", labelsize=5) - ax1.tick_params(axis="x", colors="#FFD700", labelsize=5) - - ax1_twin = ax1.twinx() - ax1_twin.set_ylim(0, 60) - ax1_twin.tick_params(axis="y", colors="#FF8C00", labelsize=5) - - ax2.set_title("User Equipment 2", fontsize=8, color="white") - ax2.grid(True, linestyle="--", linewidth=0.5, color="gray") - ax2.set_ylim(0, 100) - ax2.tick_params(axis="y", colors="#FFD700", labelsize=5) - ax2.tick_params(axis="x", colors="#FFD700", labelsize=5) - - ax2_twin = ax2.twinx() - ax2_twin.set_ylim(0, 60) - ax2_twin.tick_params(axis="y", colors="#FF8C00", labelsize=5) - plt.tight_layout(pad=2.0) - - return fig - +def get_grafana_dashboard_url(): + """Get the Grafana dashboard URL for embedding (cloud version)""" + return f"https://9002-{GRAPHANA_DASHBOARD}.brevlab.com/d/5g-metrics/5g-network-metrics-dashboard?orgId=1&refresh=5s&theme=dark" st.set_page_config(page_title="Real-Time Packet Loss & Transfer Rate", layout="wide") st.title("5G-Network Configuration Agent") @@ -196,10 +176,33 @@ def create_plot(): log_display.code('', height=600) with col_charts: - # Create placeholders for the charts - chart_placeholder = st.empty() - fig = create_plot() - chart_placeholder.pyplot(fig) + + # Check if Grafana is accessible + try: + import requests + # In the health check, use the configured dashboard URL + response = requests.get(f"https://9002-{GRAPHANA_DASHBOARD}.brevlab.com", timeout=5) + if response.status_code == 200: + + # Embed Grafana dashboard + dashboard_url = get_grafana_dashboard_url() + st.markdown(f""" + + """, unsafe_allow_html=True) + + # Add link to open in new tab + st.markdown(f"[🔗 Open Dashboard in New Tab]({dashboard_url})") + else: + st.error("❌ Grafana is not responding properly") + except Exception as e: + st.error(f"❌ Cannot connect to Grafana: {e}") + st.info("💡 Please start Grafana services using: `./start_grafana_services.sh` or `start_grafana_services.bat`") if start_monitoring: status_placeholder.text("Monitoring in Progress") @@ -223,7 +226,7 @@ def create_plot(): """, unsafe_allow_html=True) - # Fetch new data for UE1 and UE2 + # Fetch new data for UE1 and UE2 (restored to NVIDIA original) cutoff_time = get_cutoff_time() try: @@ -238,13 +241,11 @@ def create_plot(): .query("timestamp > @cutoff_time") .reset_index(drop=True) ) - # Compute the cutoff time for filtering - except Exception as error: logger.error(f"Error fetching UE1 data: {error}") try: - new_data_ue2 = kdbc.to_df(sql=generate_sql_query(ue="UE3")) + new_data_ue2 = kdbc.to_df(sql=generate_sql_query(ue="UE3")) # Use UE3 as in the original new_data_ue2["timestamp"] = pd.to_datetime(new_data_ue2["timestamp"]).dt.tz_localize("UTC") if not new_data_ue2.empty: @@ -258,60 +259,29 @@ def create_plot(): except Exception as error: logger.error(f"Error fetching UE2 data: {error}") - # If both datasets have data, update the charts - if not st.session_state.data_ue1.empty and not st.session_state.data_ue2.empty: - plt.close("all") # Close previous figures - fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(4,4)) # Two side-by-side charts - - # Generate x-axis as a rolling index for left-to-right movement - x_axis_ue1 = st.session_state.data_ue1["timestamp"] - x_axis_ue2 = st.session_state.data_ue2["timestamp"] - - # **User Equipment 1 Chart** - ax1.set_title("User Equipment 1", fontsize=8, color="white") - ax1.grid(True, linestyle="--", linewidth=0.5, color="gray") - ax1.set_ylim(0, 100) # Set y-axis range for packet loss - - line1, = ax1.plot(x_axis_ue1, st.session_state.data_ue1["loss_percentage"], - color="#FFD700", linestyle="--", linewidth=1, label="Packet Loss (%)") - - ax1.tick_params(axis="y", colors="#FFD700", labelsize=5) - ax1.tick_params(axis="x", colors="#FFD700", labelsize=5) - - ax1_twin = ax1.twinx() - ax1_twin.set_ylim(0, 160) # Set y-axis range for bitrate - line2, = ax1_twin.plot(x_axis_ue1, st.session_state.data_ue1["bitrate"], - color="#FF8C00", linestyle="-", linewidth=1, label="Transfer Rate (MBytes)") - ax1_twin.tick_params(axis="y", colors="#FF8C00", labelsize=5) - - # **User Equipment 2 Chart** - ax2.set_title("User Equipment 2", fontsize=8, color="white") - ax2.grid(True, linestyle="--", linewidth=0.5, color="gray") - ax2.set_ylim(0, 100) # Set y-axis range for packet loss - - line3, = ax2.plot(x_axis_ue2, st.session_state.data_ue2["loss_percentage"], - color="#FFD700", linestyle="--", linewidth=1, label="Packet Loss (%)") - - ax2.tick_params(axis="y", colors="#FFD700", labelsize=5) - ax2.tick_params(axis="x", colors="#FFD700", labelsize=5) - - ax2_twin = ax2.twinx() - ax2_twin.set_ylim(0, 160) # Set y-axis range for bitrate - line4, = ax2_twin.plot(x_axis_ue2, st.session_state.data_ue2["bitrate"], - color="#FF8C00", linestyle="-", linewidth=1, label="Transfer Rate (MBytes)") - ax2_twin.tick_params(axis="y", colors="#FF8C00", labelsize=5) - - # Add legend - ax1.legend(handles=[line1, line2], loc="upper right", fontsize=6, facecolor="#333", edgecolor="white") - ax2.legend(handles=[line3, line4], loc="upper right", fontsize=6, facecolor="#333", edgecolor="white") - - plt.tight_layout(pad=2.0) - - # Update the Streamlit plot - chart_placeholder.pyplot(fig) + # Write new data to InfluxDB for real-time visualization + if not st.session_state.data_ue1.empty: + # Write latest UE1 data to InfluxDB + latest_ue1 = st.session_state.data_ue1.iloc[-1] + influx_client.write_metrics( + ue="UE1", + loss_percentage=latest_ue1["loss_percentage"], + bitrate=latest_ue1["bitrate"], + timestamp=latest_ue1["timestamp"] + ) + + if not st.session_state.data_ue2.empty: + # Write latest UE2 data to InfluxDB + latest_ue2 = st.session_state.data_ue2.iloc[-1] + influx_client.write_metrics( + ue="UE3", # match Kinetica/original logic + loss_percentage=latest_ue2["loss_percentage"], + bitrate=latest_ue2["bitrate"], + timestamp=latest_ue2["timestamp"] + ) if stop_monitoring: - status_placeholder.text("Monitoring in Stopped") - fig = create_plot() - chart_placeholder.pyplot(fig) + status_placeholder.text("Monitoring Stopped") + # Close InfluxDB connection + influx_client.close() stop() \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/config.yaml b/community/autonomous_5g_slicing_lab/agentic-llm/config.yaml index c8d472768..032cd9f63 100644 --- a/community/autonomous_5g_slicing_lab/agentic-llm/config.yaml +++ b/community/autonomous_5g_slicing_lab/agentic-llm/config.yaml @@ -1,7 +1,9 @@ AGENT_LOG_FILE: ../llm-slicing-5g-lab/logs/agent.log +API_KEY: LOG_FILE_UE1: ../llm-slicing-5g-lab/logs/UE1_iperfc.log LOG_FILE_UE2: ../llm-slicing-5g-lab/logs/UE2_iperfc.log gnb_logs: ../llm-slicing-5g-lab/logs/gNodeB.log interrupt_after: 30 model_name: meta/llama-3.1-70b-instruct reconfig_script_path: ../llm-slicing-5g-lab/change_rc_slice.sh +GRAPHANA_DASHBOARD: diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/docker-compose.yml b/community/autonomous_5g_slicing_lab/agentic-llm/docker-compose.yml new file mode 100644 index 000000000..88ce6cf34 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/docker-compose.yml @@ -0,0 +1,46 @@ +version: '3.8' + +services: + influxdb: + image: influxdb:2.7 + container_name: influxdb + ports: + - "9001:8086" + environment: + - DOCKER_INFLUXDB_INIT_MODE=setup + - DOCKER_INFLUXDB_INIT_USERNAME=admin + - DOCKER_INFLUXDB_INIT_PASSWORD=adminpassword + - DOCKER_INFLUXDB_INIT_ORG=5g-lab + - DOCKER_INFLUXDB_INIT_BUCKET=5g-metrics + - DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=5g-lab-token + volumes: + - influxdb_data:/var/lib/influxdb2 + networks: + - 5g-network + + grafana: + image: grafana/grafana:latest + container_name: grafana + ports: + - "9002:3000" + environment: + - GF_SECURITY_ADMIN_USER=admin + - GF_SECURITY_ADMIN_PASSWORD=admin + - GF_USERS_ALLOW_SIGN_UP=false + - GF_SECURITY_ALLOW_EMBEDDING=true + volumes: + - grafana_data:/var/lib/grafana + - ./grafana/provisioning:/etc/grafana/provisioning + - ./grafana/dashboards:/var/lib/grafana/dashboards + networks: + - 5g-network + depends_on: + - influxdb + +volumes: + influxdb_data: + grafana_data: + +networks: + 5g-network: + driver: bridge \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/grafana/dashboards/5g-metrics-dashboard.json b/community/autonomous_5g_slicing_lab/agentic-llm/grafana/dashboards/5g-metrics-dashboard.json new file mode 100644 index 000000000..806ba200c --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/grafana/dashboards/5g-metrics-dashboard.json @@ -0,0 +1,199 @@ +{ + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "grafana", + "uid": "-- Grafana --" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "type": "dashboard" + } + ] + }, + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 0, + "id": null, + "links": [], + "liveNow": false, + "panels": [ + { + "id": 1, + "type": "timeseries", + "title": "UE1: Loss Percentage & Transfer Rate", + "gridPos": { + "x": 0, + "y": 0, + "h": 8, + "w": 24 + }, + "fieldConfig": { + "defaults": { + "custom": { + "drawStyle": "line", + "lineInterpolation": "linear", + "lineWidth": 2, + "fillOpacity": 0, + "showPoints": "never" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { "color": "green", "value": null }, + { "color": "red", "value": 80 } + ] + } + }, + "overrides": [ + { + "matcher": { "id": "byName", "options": "loss_percentage" }, + "properties": [ + { "id": "color", "value": { "mode": "fixed", "fixedColor": "red" } }, + { "id": "custom.lineStyle", "value": { "dash": [0] } }, + { "id": "unit", "value": "percent" }, + { "id": "custom.axisPlacement", "value": "left" } + ] + }, + { + "matcher": { "id": "byName", "options": "bitrate" }, + "properties": [ + { "id": "color", "value": { "mode": "fixed", "fixedColor": "blue" } }, + { "id": "custom.lineStyle", "value": { "dash": [8, 4] } }, + { "id": "unit", "value": "MBps" }, + { "id": "custom.axisPlacement", "value": "right" } + ] + } + ] + }, + "pluginVersion": "12.0.2", + "targets": [ + { + "datasource": { + "type": "influxdb", + "uid": "P951FEA4DE68E13C5" + }, + "query": "from(bucket: \"5g-metrics\")\n |> range(start: v.timeRangeStart, stop: v.timeRangeStop)\n |> filter(fn: (r) => r[\"_measurement\"] == \"network_metrics\")\n |> filter(fn: (r) => r[\"ue\"] == \"UE1\")\n |> filter(fn: (r) => r[\"_field\"] == \"loss_percentage\" or r[\"_field\"] == \"bitrate\")\n |> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)\n |> yield(name: \"mean\")", + "refId": "A" + } + ], + "datasource": { + "type": "influxdb", + "uid": "P951FEA4DE68E13C5" + }, + "options": { + "tooltip": { + "mode": "single", + "sort": "none", + "hideZeros": false + }, + "legend": { + "showLegend": true, + "displayMode": "list", + "placement": "bottom", + "calcs": [] + } + } + }, + { + "id": 2, + "type": "timeseries", + "title": "UE3: Loss Percentage & Transfer Rate", + "gridPos": { + "x": 0, + "y": 8, + "h": 8, + "w": 24 + }, + "fieldConfig": { + "defaults": { + "custom": { + "drawStyle": "line", + "lineInterpolation": "linear", + "lineWidth": 2, + "fillOpacity": 0, + "showPoints": "never" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { "color": "green", "value": null }, + { "color": "red", "value": 80 } + ] + } + }, + "overrides": [ + { + "matcher": { "id": "byName", "options": "loss_percentage" }, + "properties": [ + { "id": "color", "value": { "mode": "fixed", "fixedColor": "orange" } }, + { "id": "custom.lineStyle", "value": { "dash": [0] } }, + { "id": "unit", "value": "percent" }, + { "id": "custom.axisPlacement", "value": "left" } + ] + }, + { + "matcher": { "id": "byName", "options": "bitrate" }, + "properties": [ + { "id": "color", "value": { "mode": "fixed", "fixedColor": "green" } }, + { "id": "custom.lineStyle", "value": { "dash": [8, 4] } }, + { "id": "unit", "value": "MBps" }, + { "id": "custom.axisPlacement", "value": "right" } + ] + } + ] + }, + "pluginVersion": "12.0.2", + "targets": [ + { + "datasource": { + "type": "influxdb", + "uid": "P951FEA4DE68E13C5" + }, + "query": "from(bucket: \"5g-metrics\")\n |> range(start: v.timeRangeStart, stop: v.timeRangeStop)\n |> filter(fn: (r) => r[\"_measurement\"] == \"network_metrics\")\n |> filter(fn: (r) => r[\"ue\"] == \"UE3\")\n |> filter(fn: (r) => r[\"_field\"] == \"loss_percentage\" or r[\"_field\"] == \"bitrate\")\n |> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)\n |> yield(name: \"mean\")", + "refId": "A" + } + ], + "datasource": { + "type": "influxdb", + "uid": "P951FEA4DE68E13C5" + }, + "options": { + "tooltip": { + "mode": "single", + "sort": "none", + "hideZeros": false + }, + "legend": { + "showLegend": true, + "displayMode": "list", + "placement": "bottom", + "calcs": [] + } + } + } + ], + "refresh": "5s", + "schemaVersion": 38, + "style": "dark", + "tags": [], + "templating": { + "list": [] + }, + "time": { + "from": "now-5m", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "5G Network Metrics Dashboard", + "uid": "5g-metrics", + "version": 2, + "weekStart": "" +} \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/grafana/provisioning/dashboards/dashboard.yaml b/community/autonomous_5g_slicing_lab/agentic-llm/grafana/provisioning/dashboards/dashboard.yaml new file mode 100644 index 000000000..dabb27dfa --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/grafana/provisioning/dashboards/dashboard.yaml @@ -0,0 +1,12 @@ +apiVersion: 1 + +providers: + - name: '5g-metrics' + orgId: 1 + folder: '' + type: file + disableDeletion: false + updateIntervalSeconds: 10 + allowUiUpdates: true + options: + path: /var/lib/grafana/dashboards \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/grafana/provisioning/datasources/influxdb.yaml b/community/autonomous_5g_slicing_lab/agentic-llm/grafana/provisioning/datasources/influxdb.yaml new file mode 100644 index 000000000..d382c043d --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/grafana/provisioning/datasources/influxdb.yaml @@ -0,0 +1,14 @@ +apiVersion: 1 + +datasources: + - name: InfluxDB + type: influxdb + access: proxy + url: http://influxdb:8086 + secureJsonData: + token: 5g-lab-token + jsonData: + version: Flux + organization: 5g-lab + defaultBucket: 5g-metrics + tlsSkipVerify: true \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/images/Experiment.jpg b/community/autonomous_5g_slicing_lab/agentic-llm/images/Experiment.jpg new file mode 100644 index 000000000..de93387ae Binary files /dev/null and b/community/autonomous_5g_slicing_lab/agentic-llm/images/Experiment.jpg differ diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/images/graphana.png b/community/autonomous_5g_slicing_lab/agentic-llm/images/graphana.png new file mode 100644 index 000000000..d8a0d4899 Binary files /dev/null and b/community/autonomous_5g_slicing_lab/agentic-llm/images/graphana.png differ diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/images/langgraph_DLI.png b/community/autonomous_5g_slicing_lab/agentic-llm/images/langgraph_DLI.png index 1e0bc1083..f8f6be5bc 100644 Binary files a/community/autonomous_5g_slicing_lab/agentic-llm/images/langgraph_DLI.png and b/community/autonomous_5g_slicing_lab/agentic-llm/images/langgraph_DLI.png differ diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/influxdb_utils.py b/community/autonomous_5g_slicing_lab/agentic-llm/influxdb_utils.py new file mode 100644 index 000000000..88d19c2e3 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/influxdb_utils.py @@ -0,0 +1,144 @@ +""" +InfluxDB client utility for 5G network metrics +""" +import os +import time +from datetime import datetime +from influxdb_client import InfluxDBClient, Point +from influxdb_client.client.write_api import SYNCHRONOUS +import logging + +logger = logging.getLogger(__name__) + +class InfluxDBMetricsClient: + def __init__(self, url="http://localhost:9001", token="5g-lab-token", + org="5g-lab", bucket="5g-metrics"): + """ + Initialize InfluxDB client for metrics storage + + Args: + url (str): InfluxDB server URL + token (str): Authentication token + org (str): Organization name + bucket (str): Bucket name for storing metrics + """ + self.url = url + self.token = token + self.org = org + self.bucket = bucket + self.client = None + self.write_api = None + + def connect(self): + """Establish connection to InfluxDB""" + try: + self.client = InfluxDBClient( + url=self.url, + token=self.token, + org=self.org + ) + self.write_api = self.client.write_api(write_options=SYNCHRONOUS) + logger.info("Successfully connected to InfluxDB") + return True + except Exception as e: + logger.error(f"Failed to connect to InfluxDB: {e}") + return False + + def write_metrics(self, ue: str, loss_percentage: float, bitrate: float, timestamp: datetime = None): + """ + Write network metrics to InfluxDB + + Args: + ue (str): User Equipment identifier + loss_percentage (float): Packet loss percentage + bitrate (float): Transfer rate in MBytes + timestamp (datetime): Timestamp for the measurement + """ + if not self.write_api: + logger.error("InfluxDB client not connected") + return False + + try: + if timestamp is None: + timestamp = datetime.utcnow() + + # Create data points + loss_point = Point("network_metrics") \ + .tag("ue", ue) \ + .field("loss_percentage", loss_percentage) \ + .time(timestamp) + + bitrate_point = Point("network_metrics") \ + .tag("ue", ue) \ + .field("bitrate", bitrate) \ + .time(timestamp) + + # Write to InfluxDB + self.write_api.write(bucket=self.bucket, record=[loss_point, bitrate_point]) + logger.debug(f"Written metrics for {ue}: loss={loss_percentage}%, bitrate={bitrate}MB") + return True + + except Exception as e: + logger.error(f"Failed to write metrics for {ue}: {e}") + return False + + def write_dataframe(self, df, ue_column="ue", loss_column="loss_percentage", + bitrate_column="bitrate", timestamp_column="timestamp"): + """ + Write pandas DataFrame to InfluxDB + + Args: + df: Pandas DataFrame with metrics data + ue_column (str): Column name for UE identifier + loss_column (str): Column name for loss percentage + bitrate_column (str): Column name for bitrate + timestamp_column (str): Column name for timestamp + """ + if not self.write_api: + logger.error("InfluxDB client not connected") + return False + + try: + points = [] + for _, row in df.iterrows(): + ue = row[ue_column] + loss = row[loss_column] + bitrate = row[bitrate_column] + timestamp = row[timestamp_column] + + # Create data points + loss_point = Point("network_metrics") \ + .tag("ue", ue) \ + .field("loss_percentage", loss) \ + .time(timestamp) + + bitrate_point = Point("network_metrics") \ + .tag("ue", ue) \ + .field("bitrate", bitrate) \ + .time(timestamp) + + points.extend([loss_point, bitrate_point]) + + # Write all points + self.write_api.write(bucket=self.bucket, record=points) + logger.info(f"Written {len(points)} data points to InfluxDB") + return True + + except Exception as e: + logger.error(f"Failed to write DataFrame to InfluxDB: {e}") + return False + + def close(self): + """Close InfluxDB connection""" + if self.client: + self.client.close() + logger.info("InfluxDB connection closed") + + def __enter__(self): + """Context manager entry""" + self.connect() + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + """Context manager exit""" + self.close() \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/intro_agents.ipynb b/community/autonomous_5g_slicing_lab/agentic-llm/intro_agents.ipynb index 56c803e5d..ceeabdf4a 100644 --- a/community/autonomous_5g_slicing_lab/agentic-llm/intro_agents.ipynb +++ b/community/autonomous_5g_slicing_lab/agentic-llm/intro_agents.ipynb @@ -1,458 +1,458 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "![Nvidia Logo](./images/nvidia.png) " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Introduction to LLM Agents in LangGraph and LangChain\n", - "\n", - "This notebook provides an introduction to building LLM-based agents using LangGraph and LangChain. It covers the fundamental implementations required for developing agentic workflows. By the end of this notebook, you will have an understanding of the following concepts:\n", - "\n", - "1. [NVIDIA NIM Endpoints](https://build.nvidia.com/explore/discover) – Learn how to integrate and use NVIDIA NIM endpoints for efficient inference.\n", - "2. [Tool Calling using `bind_tools`](https://python.langchain.com/docs/modules/agents/tools/custom_tools/) – Understand how to define and bind tools within an agent.\n", - "3. [Agents using `create_react_agent`](https://python.langchain.com/docs/modules/agents/) – Explore the creation of ReAct (Reasoning + Acting) agents using Langgraph.\n", - "\n", - "This notebook serves as a introduction to implementing intelligent agents with modular and scalable workflows.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Set up" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "import yaml\n", - "from langchain_nvidia_ai_endpoints import ChatNVIDIA\n", - "from langchain_core.tools import tool\n", - "from langgraph.prebuilt import create_react_agent" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Accessing Nvidia NIM endpoints" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is a list of available models, we will be using `meta/llama-3.1-70b-instruct` for this notebook." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "tool_models = [model for model in ChatNVIDIA.get_available_models() if model.supports_tools]\n", - "for elem in tool_models:\n", - " print(elem)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We'll set up the LLM through LangChain's ChatNVIDIA functionality, which provides an interface to NVIDIA NIM chat models. It offers connection to both hosted and local NIMs (Mistral, Llama, etc.), tool calling capabilities, streaming functionality, etc. Here is an example on how to implement that" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "llm = ChatNVIDIA(\n", - " model= \"meta/llama-3.1-70b-instruct\",\n", - " temperature=0.2,\n", - " top_p=0.7,\n", - " max_tokens=4096,\n", - ")\n", - "\n", - "# Locally-hosted model example\n", - "# llm = ChatNVIDIA(base_url=\"http://3.145.171.211:8000/v1\", model_name=\"meta/llama-3.1-8b-instruct\") " - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "I'm just a computer program, so I don't have feelings, but thanks for asking! How can I assist you today?\n" - ] - } - ], - "source": [ - "result = llm.invoke(\"Hi How are you\")\n", - "print(result.content)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Tool calling with `.bind_tools()`" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In LangChain, [tool calling](https://python.langchain.com/docs/concepts/tool_calling/) allows LLMs to invoke external functions, APIs, or utilities dynamically, extending LLM capabilities beyond text generation. We define tools with the `@tool` decorator, and bind them to llm with `.bind_tool()` function. That tells the LLM which tools are available for using. LLM calls these functions with the proper arguments depending on the prompt it receives." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:591: UserWarning: Model 'nvdev/meta/llama-3.1-70b-instruct' is not known to support tools. Your tool binding may fail at inference time.\n", - " warnings.warn(\n" - ] - } - ], - "source": [ - "@tool\n", - "def multiply(a: int, b: int) -> int:\n", - " \"\"\"Multiply a and b and return result\n", - "\n", - " Args:\n", - " a: first int\n", - " b: second int\n", - " \"\"\"\n", - " return a*b\n", - "\n", - "llm_with_tools = llm.bind_tools([multiply])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "LLM intelligently decides where to call a tool or not depending on the prompt." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "AIMessage(content=\"Hello! It's nice to meet you. Is there something I can help you with or would you like to chat?\", additional_kwargs={}, response_metadata={'role': 'assistant', 'content': \"Hello! It's nice to meet you. Is there something I can help you with or would you like to chat?\", 'token_usage': {'prompt_tokens': 283, 'total_tokens': 307, 'completion_tokens': 24}, 'finish_reason': 'stop', 'model_name': 'nvdev/meta/llama-3.1-70b-instruct'}, id='run-34a9624d-e628-4af5-a5c4-f3ceafc8533a-0', usage_metadata={'input_tokens': 283, 'output_tokens': 24, 'total_tokens': 307}, role='assistant')" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "llm_with_tools.invoke(\"Hello world!\")" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[{'name': 'multiply',\n", - " 'args': {'a': 56, 'b': 64},\n", - " 'id': 'chatcmpl-tool-fb0629aaebde42b4ba91e4d36c93a431',\n", - " 'type': 'tool_call'}]" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "result = llm_with_tools.invoke(\"What is the multiplication of 56 and 64\")\n", - "result.tool_calls" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using `.bind_tools()`, LLM tells us which tool to call, with which arguments. But it doesn't actually invoke the tool. To invoke the tool intelligently we use the `.create_react_agent()` prebuilt function from Langgraph." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Prebuilt ReAcT agent using `.create_react_agent()`" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "ReAct (Reasoning + Acting) is an agent architecture, based on this paper [ReAct: Synergizing Reasoning and Acting in Language Models](https://arxiv.org/pdf/2210.03629), that combines step-by-step reasoning with tool use. LangGraph provides a prebuilt function [create_react_agent](https://langchain-ai.github.io/langgraph/how-tos/create-react-agent/) to easily implement this architecture. It uses `.bind_tools()` under the hood to attach tools to the language model." - ] - }, - { - "cell_type": "code", - "execution_count": 48, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:591: UserWarning: Model 'nvdev/meta/llama-3.1-405b-instruct' is not known to support tools. Your tool binding may fail at inference time.\n", - " warnings.warn(\n" - ] - } - ], - "source": [ - "# Define Tool 1: Square a Number\n", - "@tool\n", - "def square(n: int) -> int:\n", - " \"\"\"Returns the square of a number.\"\"\"\n", - " return n * n\n", - "\n", - "# Define Tool 2: Multiply Two Numbers\n", - "@tool\n", - "def multiply(a: int, b: int) -> int:\n", - " \"\"\"Multiply two numbers.\"\"\"\n", - " return a * b\n", - "\n", - "\n", - "agent = create_react_agent(llm, [square, multiply])\n", - "\n", - "# Invoke the agent with a query that requires two tool calls\n", - "response = agent.invoke({\"messages\": \"What is (5 squared) multiplied by 2?\"})\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 49, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'The answer is 50.'" - ] - }, - "execution_count": 49, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "response['messages'][-1].content" - ] - }, - { - "cell_type": "code", - "execution_count": 55, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "================================\u001b[1m Human Message \u001b[0m=================================\n", - "\n", - "What is (5 squared) multiplied by 2?\n", - "==================================\u001b[1m Ai Message \u001b[0m==================================\n", - "Tool Calls:\n", - " square (chatcmpl-tool-3fbc1698aad645b7a9b1a38ebfc3c1f4)\n", - " Call ID: chatcmpl-tool-3fbc1698aad645b7a9b1a38ebfc3c1f4\n", - " Args:\n", - " n: 5\n", - "=================================\u001b[1m Tool Message \u001b[0m=================================\n", - "Name: square\n", - "\n", - "25\n", - "==================================\u001b[1m Ai Message \u001b[0m==================================\n", - "Tool Calls:\n", - " multiply (chatcmpl-tool-557233293c6c4011a6d54fcfd2633d88)\n", - " Call ID: chatcmpl-tool-557233293c6c4011a6d54fcfd2633d88\n", - " Args:\n", - " a: 25\n", - " b: 2\n", - "=================================\u001b[1m Tool Message \u001b[0m=================================\n", - "Name: multiply\n", - "\n", - "50\n", - "==================================\u001b[1m Ai Message \u001b[0m==================================\n", - "\n", - "The answer is 50.\n" - ] - } - ], - "source": [ - "for m in response['messages']:\n", - " m.pretty_print()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now that you are familiar with the basics of building agents, we will explore how to build a 5G network reconfiguration agent. Please refer to [agentic_pipeline-DLI.ipynb](agentic_pipeline-DLI.ipynb) for more details." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from typing import Literal\n", - "from pydantic import BaseModel, Field" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:591: UserWarning: Model 'nvdev/meta/llama-3.1-70b-instruct' is not known to support tools. Your tool binding may fail at inference time.\n", - " warnings.warn(\n" - ] - } - ], - "source": [ - "model = llm\n", - "# For this tutorial we will use custom tool that returns pre-defined values for weather in two cities (NYC & SF)\n", - "@tool\n", - "def get_weather(city: Literal[\"nyc\", \"sf\"]):\n", - " \"\"\"Use this to get weather information.\"\"\"\n", - " if city == \"nyc\":\n", - " return \"It might be cloudy in nyc\"\n", - " elif city == \"sf\":\n", - " return \"It's always sunny in sf\"\n", - " else:\n", - " raise AssertionError(\"Unknown city\")\n", - "\n", - "\n", - "tools = [get_weather]\n", - "\n", - "\n", - "class WeatherResponse(BaseModel):\n", - " \"\"\"Respond to the user in this format.\"\"\"\n", - "\n", - " conditions: str = Field(description=\"Weather conditions\")\n", - "\n", - "\n", - "# Define the graph\n", - "\n", - "from langgraph.prebuilt import create_react_agent\n", - "\n", - "graph = create_react_agent(\n", - " model,\n", - " tools=tools,\n", - " # specify the schema for the structured output using `response_format` parameter\n", - " response_format=WeatherResponse,\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:814: UserWarning: Model 'nvdev/meta/llama-3.1-70b-instruct' is not known to support structured output. Your output may fail at inference time.\n", - " warnings.warn(\n" - ] - } - ], - "source": [ - "inputs = {\"messages\": [(\"user\", \"What's the weather in NYC?\")]}\n", - "response = graph.invoke(inputs)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "WeatherResponse(conditions='Cloudy')" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "response[\"structured_response\"]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.12" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Nvidia Logo](./images/nvidia.png) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction to LLM Agents in LangGraph and LangChain\n", + "\n", + "This notebook provides an introduction to building LLM-based agents using LangGraph and LangChain. It covers the fundamental implementations required for developing agentic workflows. By the end of this notebook, you will have an understanding of the following concepts:\n", + "\n", + "1. [NVIDIA NIM Endpoints](https://build.nvidia.com/explore/discover) – Learn how to integrate and use NVIDIA NIM endpoints for efficient inference.\n", + "2. [Tool Calling using `bind_tools`](https://python.langchain.com/docs/modules/agents/tools/custom_tools/) – Understand how to define and bind tools within an agent.\n", + "3. [Agents using `create_react_agent`](https://python.langchain.com/docs/modules/agents/) – Explore the creation of ReAct (Reasoning + Acting) agents using Langgraph.\n", + "\n", + "This notebook serves as a introduction to implementing intelligent agents with modular and scalable workflows.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "import yaml\n", + "from langchain_nvidia_ai_endpoints import ChatNVIDIA\n", + "from langchain_core.tools import tool\n", + "from langgraph.prebuilt import create_react_agent" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Accessing Nvidia NIM endpoints" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here is a list of available models, we will be using `meta/llama-3.1-70b-instruct` for this notebook." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "tool_models = [model for model in ChatNVIDIA.get_available_models() if model.supports_tools]\n", + "for elem in tool_models:\n", + " print(elem)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We'll set up the LLM through LangChain's ChatNVIDIA functionality, which provides an interface to NVIDIA NIM chat models. It offers connection to both hosted and local NIMs (Mistral, Llama, etc.), tool calling capabilities, streaming functionality, etc. Here is an example on how to implement that" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "llm = ChatNVIDIA(\n", + " model= \"meta/llama-3.1-70b-instruct\",\n", + " temperature=0.2,\n", + " top_p=0.7,\n", + " max_tokens=4096,\n", + ")\n", + "\n", + "# Locally-hosted model example\n", + "# llm = ChatNVIDIA(base_url=\"http://3.145.171.211:8000/v1\", model_name=\"meta/llama-3.1-8b-instruct\") " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "I'm just a computer program, so I don't have feelings, but thanks for asking! How can I assist you today?\n" + ] + } + ], + "source": [ + "result = llm.invoke(\"Hi How are you\")\n", + "print(result.content)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tool calling with `.bind_tools()`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In LangChain, [tool calling](https://python.langchain.com/docs/concepts/tool_calling/) allows LLMs to invoke external functions, APIs, or utilities dynamically, extending LLM capabilities beyond text generation. We define tools with the `@tool` decorator, and bind them to llm with `.bind_tool()` function. That tells the LLM which tools are available for using. LLM calls these functions with the proper arguments depending on the prompt it receives." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:591: UserWarning: Model 'nvdev/meta/llama-3.1-70b-instruct' is not known to support tools. Your tool binding may fail at inference time.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "@tool\n", + "def multiply(a: int, b: int) -> int:\n", + " \"\"\"Multiply a and b and return result\n", + "\n", + " Args:\n", + " a: first int\n", + " b: second int\n", + " \"\"\"\n", + " return a*b\n", + "\n", + "llm_with_tools = llm.bind_tools([multiply])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "LLM intelligently decides where to call a tool or not depending on the prompt." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "AIMessage(content=\"Hello! It's nice to meet you. Is there something I can help you with or would you like to chat?\", additional_kwargs={}, response_metadata={'role': 'assistant', 'content': \"Hello! It's nice to meet you. Is there something I can help you with or would you like to chat?\", 'token_usage': {'prompt_tokens': 283, 'total_tokens': 307, 'completion_tokens': 24}, 'finish_reason': 'stop', 'model_name': 'nvdev/meta/llama-3.1-70b-instruct'}, id='run-34a9624d-e628-4af5-a5c4-f3ceafc8533a-0', usage_metadata={'input_tokens': 283, 'output_tokens': 24, 'total_tokens': 307}, role='assistant')" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "llm_with_tools.invoke(\"Hello world!\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'name': 'multiply',\n", + " 'args': {'a': 56, 'b': 64},\n", + " 'id': 'chatcmpl-tool-fb0629aaebde42b4ba91e4d36c93a431',\n", + " 'type': 'tool_call'}]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "result = llm_with_tools.invoke(\"What is the multiplication of 56 and 64\")\n", + "result.tool_calls" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Using `.bind_tools()`, LLM tells us which tool to call, with which arguments. But it doesn't actually invoke the tool. To invoke the tool intelligently we use the `.create_react_agent()` prebuilt function from Langgraph." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Prebuilt ReAcT agent using `.create_react_agent()`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "ReAct (Reasoning + Acting) is an agent architecture, based on this paper [ReAct: Synergizing Reasoning and Acting in Language Models](https://arxiv.org/pdf/2210.03629), that combines step-by-step reasoning with tool use. LangGraph provides a prebuilt function [create_react_agent](https://langchain-ai.github.io/langgraph/how-tos/create-react-agent/) to easily implement this architecture. It uses `.bind_tools()` under the hood to attach tools to the language model." + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:591: UserWarning: Model 'nvdev/meta/llama-3.1-405b-instruct' is not known to support tools. Your tool binding may fail at inference time.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "# Define Tool 1: Square a Number\n", + "@tool\n", + "def square(n: int) -> int:\n", + " \"\"\"Returns the square of a number.\"\"\"\n", + " return n * n\n", + "\n", + "# Define Tool 2: Multiply Two Numbers\n", + "@tool\n", + "def multiply(a: int, b: int) -> int:\n", + " \"\"\"Multiply two numbers.\"\"\"\n", + " return a * b\n", + "\n", + "\n", + "agent = create_react_agent(llm, [square, multiply])\n", + "\n", + "# Invoke the agent with a query that requires two tool calls\n", + "response = agent.invoke({\"messages\": \"What is (5 squared) multiplied by 2?\"})\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'The answer is 50.'" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response['messages'][-1].content" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "================================\u001b[1m Human Message \u001b[0m=================================\n", + "\n", + "What is (5 squared) multiplied by 2?\n", + "==================================\u001b[1m Ai Message \u001b[0m==================================\n", + "Tool Calls:\n", + " square (chatcmpl-tool-3fbc1698aad645b7a9b1a38ebfc3c1f4)\n", + " Call ID: chatcmpl-tool-3fbc1698aad645b7a9b1a38ebfc3c1f4\n", + " Args:\n", + " n: 5\n", + "=================================\u001b[1m Tool Message \u001b[0m=================================\n", + "Name: square\n", + "\n", + "25\n", + "==================================\u001b[1m Ai Message \u001b[0m==================================\n", + "Tool Calls:\n", + " multiply (chatcmpl-tool-557233293c6c4011a6d54fcfd2633d88)\n", + " Call ID: chatcmpl-tool-557233293c6c4011a6d54fcfd2633d88\n", + " Args:\n", + " a: 25\n", + " b: 2\n", + "=================================\u001b[1m Tool Message \u001b[0m=================================\n", + "Name: multiply\n", + "\n", + "50\n", + "==================================\u001b[1m Ai Message \u001b[0m==================================\n", + "\n", + "The answer is 50.\n" + ] + } + ], + "source": [ + "for m in response['messages']:\n", + " m.pretty_print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that you are familiar with the basics of building agents, we will explore how to build a 5G network reconfiguration agent. Please refer to [agentic_pipeline-DLI.ipynb](agentic_pipeline-DLI.ipynb) for more details." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from typing import Literal\n", + "from pydantic import BaseModel, Field" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:591: UserWarning: Model 'nvdev/meta/llama-3.1-70b-instruct' is not known to support tools. Your tool binding may fail at inference time.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "model = llm\n", + "# For this tutorial we will use custom tool that returns pre-defined values for weather in two cities (NYC & SF)\n", + "@tool\n", + "def get_weather(city: Literal[\"nyc\", \"sf\"]):\n", + " \"\"\"Use this to get weather information.\"\"\"\n", + " if city == \"nyc\":\n", + " return \"It might be cloudy in nyc\"\n", + " elif city == \"sf\":\n", + " return \"It's always sunny in sf\"\n", + " else:\n", + " raise AssertionError(\"Unknown city\")\n", + "\n", + "\n", + "tools = [get_weather]\n", + "\n", + "\n", + "class WeatherResponse(BaseModel):\n", + " \"\"\"Respond to the user in this format.\"\"\"\n", + "\n", + " conditions: str = Field(description=\"Weather conditions\")\n", + "\n", + "\n", + "# Define the graph\n", + "\n", + "from langgraph.prebuilt import create_react_agent\n", + "\n", + "graph = create_react_agent(\n", + " model,\n", + " tools=tools,\n", + " # specify the schema for the structured output using `response_format` parameter\n", + " response_format=WeatherResponse,\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/nvidia/.local/lib/python3.10/site-packages/langchain_nvidia_ai_endpoints/chat_models.py:814: UserWarning: Model 'nvdev/meta/llama-3.1-70b-instruct' is not known to support structured output. Your output may fail at inference time.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "inputs = {\"messages\": [(\"user\", \"What's the weather in NYC?\")]}\n", + "response = graph.invoke(inputs)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "WeatherResponse(conditions='Cloudy')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response[\"structured_response\"]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/requirements_grafana.txt b/community/autonomous_5g_slicing_lab/agentic-llm/requirements_grafana.txt new file mode 100644 index 000000000..c541b6015 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/requirements_grafana.txt @@ -0,0 +1,10 @@ +streamlit>=1.28.0 +pandas>=1.5.0 +numpy>=1.21.0 +watchdog>=3.0.0 +pyyaml>=6.0 +gpudb>=7.2.0 +python-dotenv>=1.0.0 +colorlog>=6.7.0 +influxdb-client>=1.38.0 +requests>=2.31.0 \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/start_grafana_services.bat b/community/autonomous_5g_slicing_lab/agentic-llm/start_grafana_services.bat new file mode 100755 index 000000000..84fcdc199 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/start_grafana_services.bat @@ -0,0 +1,40 @@ +@echo off +echo Starting Grafana and InfluxDB services... + +REM Check if Docker is running +docker info >nul 2>&1 +if errorlevel 1 ( + echo Error: Docker is not running. Please start Docker first. + pause + exit /b 1 +) + +REM Stop any existing containers +echo Stopping existing containers... +docker-compose down + +REM Start services +echo Starting services... +docker-compose up -d + +REM Wait for services to be ready +echo Waiting for services to be ready... +timeout /t 10 /nobreak >nul + +REM Check if services are running +docker-compose ps | findstr "Up" >nul +if errorlevel 1 ( + echo Failed to start services. Check the logs with: docker-compose logs + pause + exit /b 1 +) else ( + echo ✅ Services started successfully! + echo 📊 Grafana is available at: http://localhost:3000 + echo Username: admin + echo Password: admin + echo 📈 InfluxDB is available at: http://localhost:8086 + echo. + echo 🚀 You can now run the Streamlit app with Grafana integration! +) + +pause \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/start_grafana_services.sh b/community/autonomous_5g_slicing_lab/agentic-llm/start_grafana_services.sh new file mode 100755 index 000000000..42a573805 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/start_grafana_services.sh @@ -0,0 +1,36 @@ +#!/bin/bash + +# Start Grafana and InfluxDB services +echo "Starting Grafana and InfluxDB services..." + +# Check if Docker is running +if ! docker info > /dev/null 2>&1; then + echo "Error: Docker is not running. Please start Docker first." + exit 1 +fi + +# Stop any existing containers +echo "Stopping existing containers..." +docker-compose down + +# Start services +echo "Starting services..." +docker-compose up -d + +# Wait for services to be ready +echo "Waiting for services to be ready..." +sleep 10 + +# Check if services are running +if docker-compose ps | grep -q "Up"; then + echo "✅ Services started successfully!" + echo "📊 Grafana is available at: http://localhost:3000" + echo " Username: admin" + echo " Password: admin" + echo "📈 InfluxDB is available at: http://localhost:8086" + echo "" + echo "🚀 You can now run the Streamlit app with Grafana integration!" +else + echo "❌ Failed to start services. Check the logs with: docker-compose logs" + exit 1 +fi \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/test_influxdb.py b/community/autonomous_5g_slicing_lab/agentic-llm/test_influxdb.py new file mode 100644 index 000000000..1983bd5d7 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/agentic-llm/test_influxdb.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +""" +Test script for InfluxDB connection and data writing +""" +import time +from datetime import datetime, timedelta +import random +from influxdb_utils import InfluxDBMetricsClient + +def test_influxdb_connection(): + """Test InfluxDB connection and data writing""" + print("🔍 Testing InfluxDB connection...") + + # Initialize client + client = InfluxDBMetricsClient(url="http://localhost:9001") + + # Test connection + if not client.connect(): + print("❌ Failed to connect to InfluxDB") + print("💡 Make sure InfluxDB is running: docker-compose up -d") + return False + + print("✅ Successfully connected to InfluxDB") + + # Generate test data + print("📊 Writing test data...") + + # Write some test metrics for the last 5 minutes + end_time = datetime.utcnow() + start_time = end_time - timedelta(minutes=5) + + current_time = start_time + while current_time <= end_time: + # Generate realistic test data + ue1_loss = random.uniform(0, 5) # 0-5% packet loss + ue1_bitrate = random.uniform(30, 60) # 30-60 MB/s + + ue2_loss = random.uniform(0, 8) # 0-8% packet loss + ue2_bitrate = random.uniform(25, 55) # 25-55 MB/s + + # Write UE1 data + client.write_metrics( + ue="UE1", + loss_percentage=ue1_loss, + bitrate=ue1_bitrate, + timestamp=current_time + ) + + # Write UE2 data + client.write_metrics( + ue="UE2", + loss_percentage=ue2_loss, + bitrate=ue2_bitrate, + timestamp=current_time + ) + + current_time += timedelta(seconds=10) # Data point every 10 seconds + + print("✅ Test data written successfully!") + print(f"📈 Generated {60} data points (30 per UE) over 5 minutes") + + # Close connection + client.close() + print("🔌 InfluxDB connection closed") + + print("\n🎉 Test completed successfully!") + print("📊 You can now view the data in Grafana at: http://localhost:9002") + print(" Username: admin, Password: admin") + + return True + +if __name__ == "__main__": + test_influxdb_connection() \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/agentic-llm/tools.py b/community/autonomous_5g_slicing_lab/agentic-llm/tools.py index 40e8734a0..68ecf597d 100644 --- a/community/autonomous_5g_slicing_lab/agentic-llm/tools.py +++ b/community/autonomous_5g_slicing_lab/agentic-llm/tools.py @@ -1,111 +1,111 @@ -# SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. -# SPDX-License-Identifier: Apache-2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# This file defines the tools that are used by the agents. - -import pandas as pd -import time -import os -from langchain_core.tools import tool -import subprocess -import yaml -import logging -from dotenv import load_dotenv -import gpudb - - -config_file = yaml.safe_load(open('config.yaml', 'r')) -# Configure the logger without timestamp and level tags -logging.basicConfig( - filename= config_file['AGENT_LOG_FILE'], # Log file name - level=logging.INFO, # Log level - format="%(message)s" # Only log the message -) - -load_dotenv("../llm-slicing-5g-lab/.env") - -kdbc_options = gpudb.GPUdb.Options() -kdbc_options.username = os.environ.get("KINETICA_USERNAME") -kdbc_options.password = os.environ.get("KINETICA_PASSWORD") -kdbc_options.disable_auto_discovery = True -kdbc: gpudb.GPUdb = gpudb.GPUdb( - host=os.environ.get("KINETICA_HOST"), - options=kdbc_options -) - - -@tool -def reconfigure_network(UE: str, value_1_old: int, value_2_old: int): - """ - Use this tool to reconfigure the network. The tool reconfigures network, and returns new configuration values. - """ - time.sleep(2) #to improve logging - logging.info(f"This is reconfigure_network Tool \n") - logging.info(f"\n Executing reconfigure_network with UE={UE}, value_1_old={value_1_old}, value_2_old={value_2_old} \n") - script_path = config_file['reconfig_script_path'] - config_value_1 = "20" - config_value_2 = "80" - args_1 = args_2 = None - args_1 = ["20", "20"] - - if UE == "UE1": - args_2 = ["80","20"] - else: - args_2 = ["20","80"] - - try: - result = subprocess.run([script_path] + args_1, check=True, text=True, capture_output=True) - logging.info("\nScript output args_1:\n") - logging.info(result.stdout) - if args_2!=None: - result = subprocess.run([script_path] + args_2, check=True, text=True, capture_output=True) - logging.info("\nScript output args_2:\n") - logging.info(result.stdout) - - time.sleep(10) - logging.info("\n Wait for reconfiguration to kick in \n") - if args_2 != None: - return str(args_2) - - return str(args_1) - except subprocess.CalledProcessError as e: - logging.info("Error occurred:") - logging.info(e.stderr) - return "Reconfiguration unsuccessful" - - -@tool -def get_packetloss_logs() -> str: - """ - Get the logs to determine which UE is failing. - """ - time.sleep(2) #to improve logging - logging.info(f"This is get_packetloss_logs Tool \n") - logging.info("\nRetrieving packet loss logs from database\n") - time.sleep(5) # wait for db to get updated - iperf_random_table_name: str = os.environ.get('IPERF3_RANDOM_TABLE_NAME') - # Just to be sure we have the latest randomly generated table name - load_dotenv("../llm-slicing-5g-lab/.env") - - sql_query = f"SELECT lost_packets, loss_percentage, UE FROM {os.environ.get('IPERF3_RANDOM_TABLE_NAME')} ORDER BY timestamp DESC LIMIT 20;" - result_df: pd.DataFrame = kdbc.to_df( - sql=sql_query - ) - - if result_df is None or result_df.empty: - return "WARNING: A Problem has occurred. No results were found at this time. Please try again later." - - - return result_df.to_string(index=False) +# SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This file defines the tools that are used by the agents. + +import pandas as pd +import time +import os +from langchain_core.tools import tool +import subprocess +import yaml +import logging +from dotenv import load_dotenv +import gpudb + + +config_file = yaml.safe_load(open('config.yaml', 'r')) +# Configure the logger without timestamp and level tags +logging.basicConfig( + filename= config_file['AGENT_LOG_FILE'], # Log file name + level=logging.INFO, # Log level + format="%(message)s" # Only log the message +) + +load_dotenv("../llm-slicing-5g-lab/.env") + +kdbc_options = gpudb.GPUdb.Options() +kdbc_options.username = os.environ.get("KINETICA_USERNAME") +kdbc_options.password = os.environ.get("KINETICA_PASSWORD") +kdbc_options.disable_auto_discovery = True +kdbc: gpudb.GPUdb = gpudb.GPUdb( + host=os.environ.get("KINETICA_HOST"), + options=kdbc_options +) + + +@tool +def reconfigure_network(UE: str, value_1_old: int, value_2_old: int): + """ + Use this tool to reconfigure the network. The tool reconfigures network, and returns new configuration values. + """ + time.sleep(2) #to improve logging + logging.info(f"This is reconfigure_network Tool \n") + logging.info(f"\n Executing reconfigure_network with UE={UE}, value_1_old={value_1_old}, value_2_old={value_2_old} \n") + script_path = config_file['reconfig_script_path'] + config_value_1 = "20" + config_value_2 = "80" + args_1 = args_2 = None + args_1 = ["20", "20"] + + if UE == "UE1": + args_2 = ["80","20"] + else: + args_2 = ["20","80"] + + try: + result = subprocess.run([script_path] + args_1, check=True, text=True, capture_output=True) + logging.info("\nScript output args_1:\n") + logging.info(result.stdout) + if args_2!=None: + result = subprocess.run([script_path] + args_2, check=True, text=True, capture_output=True) + logging.info("\nScript output args_2:\n") + logging.info(result.stdout) + + time.sleep(10) + logging.info("\n Wait for reconfiguration to kick in \n") + if args_2 != None: + return str(args_2) + + return str(args_1) + except subprocess.CalledProcessError as e: + logging.info("Error occurred:") + logging.info(e.stderr) + return "Reconfiguration unsuccessful" + + +@tool +def get_packetloss_logs() -> str: + """ + Get the logs to determine which UE is failing. + """ + time.sleep(2) #to improve logging + logging.info(f"This is get_packetloss_logs Tool \n") + logging.info("\nRetrieving packet loss logs from database\n") + time.sleep(5) # wait for db to get updated + iperf_random_table_name: str = os.environ.get('IPERF3_RANDOM_TABLE_NAME') + # Just to be sure we have the latest randomly generated table name + load_dotenv("../llm-slicing-5g-lab/.env") + + sql_query = f"SELECT lost_packets, loss_percentage, UE FROM {os.environ.get('IPERF3_RANDOM_TABLE_NAME')} ORDER BY timestamp DESC LIMIT 20;" + result_df: pd.DataFrame = kdbc.to_df( + sql=sql_query + ) + + if result_df is None or result_df.empty: + return "WARNING: A Problem has occurred. No results were found at this time. Please try again later." + + + return result_df.to_string(index=False) diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/.env b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/.env index f9becd578..1291afeec 100644 --- a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/.env +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/.env @@ -1,5 +1,5 @@ KINETICA_HOST="https://demo72.kinetica.com/_gpudb" KINETICA_USERNAME="nvidia_gtc_2025" -KINETICA_PASSWORD="" +KINETICA_PASSWORD="ZwQ&pi0U76k5kMrX" KINETICA_SCHEMA="nvidia_gtc_dli_2025" -IPERF3_RANDOM_TABLE_NAME='nvidia_gtc_dli_2025.ultramicroscope_nonfreeman_necessariness_chewy_iperf3_logs' +IPERF3_RANDOM_TABLE_NAME='nvidia_gtc_dli_2025.mein_naphthoxide_downhanging_pneumonolith_iperf3_logs' diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/.ipynb_checkpoints/DLI_Lab_Setup-checkpoint.ipynb b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/.ipynb_checkpoints/DLI_Lab_Setup-checkpoint.ipynb new file mode 100644 index 000000000..7fa19af43 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/.ipynb_checkpoints/DLI_Lab_Setup-checkpoint.ipynb @@ -0,0 +1,937 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Start 5G Network Simulator\n", + "\n", + "In this DLI you will use an Agentic Generative AI solution to solve a bandwidth allocation problem. The lab will consist of two different parts. In the first part, the lab will show you how to setup an open source 5G Network Lab consisting of the following parts:\n", + "- 5G Core Lab simulation by Open Air Interface: https://openairinterface.org/oai-5g-core-network-project/\n", + "- FlexRIC that will be connected to the gNodeB and will be used to change the bandwidth allocation for each slice in the gNodeB\n", + "- RAN Lab composed by a gNodeB and two Use Equipment simulation components from Open Air OAI Softmode: https://github.com/simula/openairinterface5g/blob/dreibh/simulamet-testbed/doc/RUNMODEM.md\n", + "- Traffic generation over the Open Air network simulator using Iperf Tool: https://iperf.fr/\n", + "\n", + "The Lab setup will start with the initialization of the 5G Core Network, then we will set up the gNodeB and the RIC connecting both via the E1 protocol. We will attach two UEs to the 5G network, each UE1 will have its own slice as seen in the diagram. Once UEs are functional, we will use the Iperf tool to generate traffic. First we will set up the Iperf server on the OAI External Network connected by the User Plane Function UPF. Then we will use the Iperf Client to generate traffic against the External Network using the UEs connection. \n", + "\n", + "![5G Lab](./5glab.png)\n", + "\n", + "In this Jupyter Notebook we will set the lab for the experiment. In a separate Jupyter Notebook we will build the Agentic Workflow for the experiment." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Installing Requirements\n", + "In this first cell we will install the requirements for the Blueprint and we will restart the kernel, so you will need to press \"yes\" to the window that will pop up" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%%capture\n", + "!sudo apt install -y iperf3\n", + "!pip install -r ../requirements.txt\n", + "import IPython\n", + "IPython.Application.instance().kernel.do_shutdown(True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Installing Flexric and gNodeB" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This code will take between 7 and 8 minutes to run. It will compile the ric and gNodeB components within the DLI environment. If you want to install this lab in your computer, you just need to download the DLI directory and execute this command. " + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%%capture\n", + "!chmod +x build_ric_oai_ne.sh\n", + "!./build_ric_oai_ne.sh" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### OAI 5G Network \n", + "To set up the 5G core Network funcitons we will use the docker compose comand. First, we will setup the standard network funciton for the core and then we will set up an additonal slice (slice 2) that will have its own SMF and UPF" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "%%capture\n", + "!docker compose --progress=plain -f docker-compose-oai-cn-slice1.yaml up -d\n", + "import time\n", + "time.sleep(20)\n", + "!docker compose --progress=plain -f docker-compose-oai-cn-slice2.yaml up -d" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Start RIC\n", + "\n", + "Then we will start the FlexRIC to be able to modify parameters in the gNodeB on an ad hoc basis" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Process started with PID 102070, logging to logs/RIC.log.\n" + ] + } + ], + "source": [ + "import subprocess\n", + "import os\n", + "\n", + "# Ensure the logs directory exists\n", + "os.makedirs(\"logs\", exist_ok=True)\n", + "\n", + "cmd = \"./flexric/build/examples/ric/nearRT-RIC\"\n", + "logfile = \"logs/RIC.log\"\n", + "\n", + "# Open log file for writing and start the process\n", + "with open(logfile, \"a\") as log:\n", + " process = subprocess.Popen(\n", + " [\"bash\", \"-c\", f\"stdbuf -oL {cmd}\"], # stdbuf ensures real-time logging\n", + " stdout=log,\n", + " stderr=subprocess.STDOUT,\n", + " universal_newlines=True\n", + " )\n", + "\n", + "print(f\"Process started with PID {process.pid}, logging to {logfile}.\")\n", + "time.sleep(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "
\n", + " Trouble Shooting - Sample output\n", + " \n", + " If flexric starts successfully you should see a similar output in logs/RIC.log\n", + " ```\n", + " [UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf\n", + "[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/\n", + "[NEAR-RIC]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36421\n", + "[NEAR-RIC]: Initializing \n", + "[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC \n", + "[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM \n", + "[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 \n", + "[iApp]: Initializing ... \n", + "[iApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422\n", + "[NEAR-RIC]: Initializing Task Manager with 2 threads \n", + "[E2AP]: E2 SETUP-REQUEST rx from PLMN 1. 1 Node ID 3584 RAN type ngran_gNB\n", + "[NEAR-RIC]: Accepting RAN function ID 2 with def = ORAN-E2SM-KPM \n", + "[NEAR-RIC]: Accepting RAN function ID 3 with def = ORAN-E2SM-RC \n", + "[NEAR-RIC]: Accepting RAN function ID 142 with def = MAC_STATS_V0 \n", + "[NEAR-RIC]: Accepting RAN function ID 143 with def = RLC_STATS_V0 \n", + "[NEAR-RIC]: Accepting RAN function ID 144 with def = PDCP_STATS_V0 \n", + "[NEAR-RIC]: Accepting RAN function ID 145 with def = SLICE_STATS_V0 \n", + "[NEAR-RIC]: Accepting RAN function ID 146 with def = TC_STATS_V0 \n", + "[NEAR-RIC]: Accepting RAN function ID 148 with def = GTP_STATS_V0 \n", + " ```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Start the gNodeB\n", + "Then we will run the gNodeB using the OAI softmoden software" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Process started with PID 117275, logging to logs/gNodeB.log.\n" + ] + } + ], + "source": [ + "import subprocess\n", + "import os\n", + "\n", + "cmd = \"sudo ./openairinterface5g/cmake_targets/ran_build/build/nr-softmodem -O ran-conf/gnb.conf --sa --rfsim -E --gNBs.[0].min_rxtxtime 6\"\n", + "logfile = \"logs/gNodeB.log\"\n", + "\n", + "env = os.environ.copy()\n", + "env[\"LD_LIBRARY_PATH\"] = \".\"\n", + "\n", + "# Open log file for writing and start the process\n", + "with open(logfile, \"a\") as log:\n", + " process = subprocess.Popen(\n", + " [\"bash\", \"-c\", f\"stdbuf -oL {cmd}\"], # stdbuf ensures real-time logging\n", + " stdout=log,\n", + " stderr=subprocess.STDOUT,\n", + " universal_newlines=True\n", + " )\n", + "\n", + "print(f\"Process started with PID {process.pid}, logging to {logfile}.\")\n", + "time.sleep(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Initialize Bandwidth 50 50 \n", + "The gNodeB will have initially allocated 50% of its bandwidth to each of the slices. \n", + "\n", + "- Note : Incase you get `[E2AP]: Resending Setup Request after timeout`error, rerun the `Start RIC` cell.\n", + "\n", + "***\n", + "Please check `./logs/RIC.log` to ensure that flexRIC is working. Incase you see a \"failed\" message, try rerunning the `Start RIC` cell above. \n", + "\n", + "Error message : \n", + "```\n", + "nearRT-RIC: /dli/task/llm-slicing-5g-lab/flexric/src/lib/e2ap/v2_03/enc/e2ap_msg_enc_asn.c:3165: e2ap_enc_e42_setup_response_asn_pdu: Assertion `sr->len_e2_nodes_conn > 0 && \"No global node conected??\"' failed.\n", + "```\n", + "\n", + "***" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "50+50\n", + "[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf\n", + "[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/\n", + "[xAapp]: Initializing ... \n", + "[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422\n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so \n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so \n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so \n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so \n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so \n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so \n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so \n", + "[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so \n", + "[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM \n", + "[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC \n", + "[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 \n", + "[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 \n", + "[xApp]: DB filename = /tmp/xapp_db_1747219577414412 \n", + " [xApp]: E42 SETUP-REQUEST tx\n", + "[xApp]: E42 SETUP-RESPONSE rx \n", + "[xApp]: xApp ID = 7 \n", + "[xApp]: Registered E2 Nodes = 1 \n", + "Connected E2 nodes = 1\n", + "Setting PRB Ratio to 50:50\n", + "[xApp]: CONTROL-REQUEST tx \n", + "[xApp]: CONTROL ACK rx\n", + "[xApp]: Successfully received CONTROL-ACK \n", + "[xApp]: Control Loop Latency: 828 us\n", + "[xApp]: Sucessfully stopped \n", + "Test xApp run SUCCESSFULLY\n" + ] + } + ], + "source": [ + "!./change_rc_slice.sh 50 50\n", + "time.sleep(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Start the UE\n", + "After we will create a User Equipment Simulator and attach it to the gNodeB. Following cell creates UE1 and UE2" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import time\n", + "import subprocess\n", + "import logging\n", + "from typing import Optional, List\n", + "\n", + "import colorlog\n", + "\n", + "# Configure colored logging.\n", + "handler = colorlog.StreamHandler()\n", + "handler.setFormatter(colorlog.ColoredFormatter(\n", + " fmt=\"%(log_color)s%(asctime)s %(levelname)s: %(message)s\",\n", + " datefmt=\"%Y-%m-%d %H:%M:%S\",\n", + " log_colors={\n", + " 'DEBUG': 'blue',\n", + " 'INFO': 'green',\n", + " 'WARNING': 'yellow',\n", + " 'ERROR': 'red',\n", + " 'CRITICAL': 'red,bg_white',\n", + " }\n", + "))\n", + "logger = colorlog.getLogger(__name__)\n", + "logger.addHandler(handler)\n", + "logger.setLevel(logging.DEBUG)\n", + "logger.propagate = False\n", + "\n", + "def start_async_process(name: str, cmd: str, logfile: str) -> Optional[subprocess.Popen]:\n", + " \"\"\"\n", + " Start an asynchronous process and log its status.\n", + "\n", + " Args:\n", + " name: Name of the process.\n", + " cmd: The command to run.\n", + " logfile: Path to the log file.\n", + "\n", + " Returns:\n", + " The subprocess.Popen object if the process started successfully;\n", + " None otherwise.\n", + " \"\"\"\n", + " logger.info(\"Starting process %s with command: %s\", name, cmd)\n", + " try:\n", + " with open(logfile, \"a\") as log:\n", + " process = subprocess.Popen(\n", + " [\"bash\", \"-c\", f\"stdbuf -oL {cmd}\"],\n", + " stdout=log,\n", + " stderr=subprocess.STDOUT,\n", + " universal_newlines=True,\n", + " )\n", + " if process.pid:\n", + " logger.info(\"Process %s started with PID %s, logging to %s\", name, process.pid, logfile)\n", + " return process\n", + " else:\n", + " logger.error(\"Process %s did not start properly.\", name)\n", + " return None\n", + " except Exception as e:\n", + " logger.error(\"Failed to start process %s: %s\", name, str(e))\n", + " return None" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[32m2025-05-14 10:46:32 INFO: Starting process UE1 with command: \n", + " sudo ./multi_ue.sh -c1 -e & \n", + " sleep 5\n", + " sudo ip netns exec ue1 bash -c '\n", + " sudo LD_LIBRARY_PATH=. ./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem \\\n", + " --rfsimulator.serveraddr 10.201.1.100 -r 106 --numerology 1 --band 78 -C 3619200000 \\\n", + " --rfsim --sa -O ran-conf/ue_1.conf -E\n", + " '\n", + " \u001b[0m\n", + "\u001b[32m2025-05-14 10:46:32 INFO: Process UE1 started with PID 118709, logging to logs/UE1.log\u001b[0m\n", + "\u001b[32m2025-05-14 10:46:32 INFO: Starting process UE3 with command: \n", + " sudo ./multi_ue.sh -c3 -e & \n", + " sleep 5\n", + " sudo ip netns exec ue3 bash -c '\n", + " sudo LD_LIBRARY_PATH=. ./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem \\\n", + " --rfsimulator.serveraddr 10.203.1.100 -r 106 --numerology 1 --band 78 -C 3619200000 \\\n", + " --rfsim --sa -O ran-conf/ue_2.conf -E\n", + " '\n", + " \u001b[0m\n", + "\u001b[32m2025-05-14 10:46:32 INFO: Process UE3 started with PID 118712, logging to logs/UE3.log\u001b[0m\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + " sudo ./multi_ue.sh -c1 -e & \n", + " sleep 5\n", + " sudo ip netns exec ue1 bash -c '\n", + " sudo LD_LIBRARY_PATH=. ./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem \\\n", + " --rfsimulator.serveraddr 10.201.1.100 -r 106 --numerology 1 --band 78 -C 3619200000 \\\n", + " --rfsim --sa -O ran-conf/ue_1.conf -E\n", + " '\n", + " \n", + "\n", + " sudo ./multi_ue.sh -c3 -e & \n", + " sleep 5\n", + " sudo ip netns exec ue3 bash -c '\n", + " sudo LD_LIBRARY_PATH=. ./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem \\\n", + " --rfsimulator.serveraddr 10.203.1.100 -r 106 --numerology 1 --band 78 -C 3619200000 \\\n", + " --rfsim --sa -O ran-conf/ue_2.conf -E\n", + " '\n", + " \n" + ] + } + ], + "source": [ + "def start_ue(ue_id: str, config_file: str, namespace: str, server_addr: str, port: str = \"106\") -> Optional[subprocess.Popen]:\n", + " \"\"\"\n", + " Start a UE process.\n", + "\n", + " Args:\n", + " ue_id: Identifier for the UE (used in command arguments and logging).\n", + " config_file: Path to the UE configuration file.\n", + " namespace: The network namespace for the UE.\n", + " server_addr: The server address for the UE.\n", + " port: The port used by the UE (default is \"106\").\n", + "\n", + " Returns:\n", + " The subprocess.Popen object if the process started successfully; None otherwise.\n", + " \"\"\"\n", + " cmd = f\"\"\"\n", + " sudo ./multi_ue.sh -c{ue_id} -e & \n", + " sleep 5\n", + " sudo ip netns exec {namespace} bash -c '\n", + " sudo LD_LIBRARY_PATH=. ./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem \\\\\n", + " --rfsimulator.serveraddr {server_addr} -r {port} --numerology 1 --band 78 -C 3619200000 \\\\\n", + " --rfsim --sa -O {config_file} -E\n", + " '\n", + " \"\"\"\n", + " logfile = f\"logs/UE{ue_id}.log\"\n", + " print(cmd)\n", + " return start_async_process(f\"UE{ue_id}\", cmd, logfile)\n", + "\n", + "ue1_process = start_ue(\"1\", \"ran-conf/ue_1.conf\", \"ue1\", \"10.201.1.100\")\n", + "ue2_process = start_ue(\"3\", \"ran-conf/ue_2.conf\", \"ue3\", \"10.203.1.100\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Debugging tip: Print logs for sanity check**\n", + "\n", + "```\n", + "tail -f logs/UE1.log\n", + "tail -f logs/UE3.log\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Start the Iperf Tool Server\n", + "Once the 5G Network Simulation is running we will start the simulation of traffic by using with tool Iperf. First we will create an Iperf Server that will be on the External Network connected via the User Plane Function. " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[32m2025-05-14 10:46:38 INFO: Starting process iPerf_server1 with command: docker exec -t oai-ext-dn iperf3 -s -p 5201\u001b[0m\n", + "\u001b[32m2025-05-14 10:46:38 INFO: Process iPerf_server1 started with PID 119502, logging to logs/docker_iperfserver_server1.log\u001b[0m\n", + "\u001b[32m2025-05-14 10:46:38 INFO: Starting process iPerf_server2 with command: docker exec -t oai-ext-dn iperf3 -s -p 5202\u001b[0m\n", + "\u001b[32m2025-05-14 10:46:38 INFO: Process iPerf_server2 started with PID 119503, logging to logs/docker_iperfserver_server2.log\u001b[0m\n" + ] + } + ], + "source": [ + "def start_iperf(name: str, port: str) -> Optional[subprocess.Popen]:\n", + " \"\"\"\n", + " Start an iPerf3 server process.\n", + "\n", + " Args:\n", + " name: Identifier for the iPerf3 instance.\n", + " port: Port on which the iPerf3 server should run.\n", + "\n", + " Returns:\n", + " The subprocess.Popen object if started successfully; None otherwise.\n", + " \"\"\"\n", + " cmd = f\"docker exec -t oai-ext-dn iperf3 -s -p {port}\"\n", + " logfile = f\"logs/docker_iperfserver_{name}.log\"\n", + " return start_async_process(f\"iPerf_{name}\", cmd, logfile)\n", + "\n", + "iperf1_process = start_iperf(\"server1\", \"5201\")\n", + "iperf2_process = start_iperf(\"server2\", \"5202\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Start Traffic generator and insert records in the database\n", + "Once every element in The Network is up and running and the Iperf server is listening in the external network. We will run two iperf clients that will be generating traffic in both UEs. These scripts will generate udp traffic from the iperf server towards the UE and will alternate speeds 30M and 120M for 100 seconds. In the following cell we will\n", + "\n", + "1. Run traffic generator to alternate between 30M and 120M\n", + "2. Insert UE1 and UE2 iperf logs into the Kinetica Database. Kinetica is a very fast, distributed, GPU-accelerated database with advanced analytics, visualization, geospatial, and machine learning functionality." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# Generate traffic \n", + "\n", + "from datetime import datetime\n", + "import logging\n", + "import random\n", + "import re\n", + "import os\n", + "import subprocess\n", + "import threading\n", + "from typing import Dict, List, Pattern\n", + "\n", + "from dotenv import load_dotenv, set_key\n", + "from english_words import get_english_words_set\n", + "import gpudb\n", + "from gpudb import GPUdb\n", + "from gpudb import GPUdbColumnProperty as cp\n", + "from gpudb import GPUdbRecordColumn as rc\n", + "from IPython.display import display, HTML\n", + "\n", + "\n", + "class IperfRecord:\n", + " def __init__(\n", + " self,\n", + " record_id: str = \"\",\n", + " record_ue: str = None,\n", + " record_timestamp: str = \"\",\n", + " record_stream: int = None,\n", + " record_interval_start: float = None,\n", + " record_interval_end: float = None,\n", + " record_duration: float = 0.0,\n", + " record_data_transferred: float = None,\n", + " record_bitrate: float = None,\n", + " record_jitter: float = None,\n", + " record_lost_packets: int = None,\n", + " record_total_packets: int = None,\n", + " record_loss_percentage: float = None\n", + " ) -> None:\n", + " self.id = record_id\n", + " self.ue = record_ue\n", + " self.timestamp = record_timestamp\n", + " self.stream = record_stream\n", + " self.interval_start = record_interval_start\n", + " self.interval_end = record_interval_end\n", + " self.duration = record_duration\n", + " self.data_transferred = record_data_transferred\n", + " self.bitrate = record_bitrate\n", + " self.jitter = record_jitter\n", + " self.lost_packets = record_lost_packets\n", + " self.total_packets = record_total_packets\n", + " self.loss_percentage = record_loss_percentage\n", + "\n", + " def record_to_dict(self) -> Dict[str, str | float]:\n", + " return {\n", + " \"id\": self.id,\n", + " \"ue\": self.ue,\n", + " \"timestamp\": self.timestamp,\n", + " \"stream\": self.stream,\n", + " \"interval_start\": self.interval_start,\n", + " \"interval_end\": self.interval_end,\n", + " \"duration\": self.duration,\n", + " \"data_transferred\": self.data_transferred,\n", + " \"bitrate\": self.bitrate,\n", + " \"jitter\": self.jitter,\n", + " \"lost_packets\": self.lost_packets,\n", + " \"total_packets\": self.total_packets,\n", + " \"loss_percentage\": self.loss_percentage\n", + " }\n", + "\n", + "\n", + "def convert_bandwidth(bw_str: str) -> int:\n", + " \"\"\"\n", + " Converts a bandwidth string like \"120M\" or \"30M\" into an integer in bits per second.\n", + " \"\"\"\n", + " if bw_str.endswith(\"M\"):\n", + " return int(bw_str[:-1]) * 1_000_000\n", + " elif bw_str.endswith(\"K\"):\n", + " return int(bw_str[:-1]) * 1_000\n", + " else:\n", + " return int(bw_str)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " Kinetica Table: lineless_toolbuilding_squad_sciotheism_iperf3_logs
\n", + " User: nvidia_gtc_2025
\n", + " Password: Kinetica123!\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[32m2025-05-14 19:25:50 INFO: CURRENT ITERATION: 0\u001b[0m\n", + "\u001b[32m2025-05-14 19:26:40 INFO: CURRENT ITERATION: 1\u001b[0m\n", + "\u001b[32m2025-05-14 19:26:56 INFO: CURRENT ITERATION: 2\u001b[0m\n", + "\u001b[32m2025-05-14 19:27:34 INFO: CURRENT ITERATION: 3\u001b[0m\n", + "\u001b[32m2025-05-14 19:28:17 INFO: CURRENT ITERATION: 4\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 5\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 6\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 7\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 8\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 9\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 10\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 11\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 12\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 13\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 14\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 15\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 16\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 17\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 18\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 19\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 20\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 21\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 22\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 23\u001b[0m\n", + "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 24\u001b[0m\n" + ] + } + ], + "source": [ + "\n", + "# Load environment variables and initialize Kinetica connection.\n", + "load_dotenv()\n", + "kdbc_options = GPUdb.Options()\n", + "kdbc_options.username = os.environ.get(\"KINETICA_USERNAME\")\n", + "kdbc_options.password = os.environ.get(\"KINETICA_PASSWORD\")\n", + "kdbc_options.disable_auto_discovery = True\n", + "word_list: List[str] = list(get_english_words_set(['web2'], lower=True))\n", + "\n", + "\n", + "def generate_random_table_name() -> str:\n", + " # Generate a table name with the correct schema, four random underscore-separated words, and the string \"_iperf_3_logs\"\n", + " fully_qualified_random_table_name: str = f\"{os.environ.get('KINETICA_SCHEMA', 'nvidia_gtc_dli_2025')}.\" + \"_\".join(random.choices(word_list, k=4)) + \"_iperf3_logs\"\n", + " \n", + " # Set our environment variable in the .env file for use by the Agents.\n", + " set_key(\n", + " dotenv_path=\"./.env\",\n", + " key_to_set=\"IPERF3_RANDOM_TABLE_NAME\",\n", + " value_to_set=fully_qualified_random_table_name,\n", + " quote_mode=\"always\",\n", + " export=False,\n", + " encoding=\"utf-8\"\n", + " )\n", + " return fully_qualified_random_table_name\n", + "\n", + "\n", + "kdbc: GPUdb = GPUdb(\n", + " host=os.environ.get(\"KINETICA_HOST\"),\n", + " options=kdbc_options\n", + ")\n", + "\n", + "iperf3_table_name: str = generate_random_table_name()\n", + "if kdbc.has_table(table_name=iperf3_table_name).table_exists:\n", + " kdbc.clear_table(table_name=iperf3_table_name)\n", + "\n", + "schema, table = iperf3_table_name.split('.')\n", + "url = f'https://demo72.kinetica.com/gadmin/#/table/{schema}/{table}'\n", + "user = os.environ.get(\"KINETICA_USERNAME\")\n", + "password = os.environ.get(\"KINETICA_PASSWORD\")\n", + "html_out = f'''\n", + " Kinetica Table: {table}
\n", + " User: {user}
\n", + " Password: {password}\n", + "'''\n", + "display(HTML(html_out))\n", + "\n", + "schema: List[List[str]] = [\n", + " [\"id\", rc._ColumnType.STRING, cp.UUID, cp.PRIMARY_KEY, cp.INIT_WITH_UUID],\n", + " [\"ue\", rc._ColumnType.STRING, cp.CHAR8, cp.DICT],\n", + " [\"timestamp\", rc._ColumnType.STRING, cp.DATETIME, cp.INIT_WITH_NOW],\n", + " [\"stream\", rc._ColumnType.INT, cp.INT8, cp.DICT],\n", + " [\"interval_start\", rc._ColumnType.FLOAT],\n", + " [\"interval_end\", rc._ColumnType.FLOAT],\n", + " [\"duration\", rc._ColumnType.FLOAT],\n", + " [\"data_transferred\", rc._ColumnType.FLOAT],\n", + " [\"bitrate\", rc._ColumnType.FLOAT],\n", + " [\"jitter\", rc._ColumnType.FLOAT],\n", + " [\"lost_packets\", rc._ColumnType.INT],\n", + " [\"total_packets\", rc._ColumnType.INT],\n", + " [\"loss_percentage\", rc._ColumnType.FLOAT]\n", + "]\n", + "kdbc_table = gpudb.GPUdbTable(\n", + " _type=schema,\n", + " name=iperf3_table_name,\n", + " db=kdbc\n", + ")\n", + "\n", + "# Precompiled regex pattern to parse iperf3 output.\n", + "filter_regex: str = (\n", + " r'^\\[ *([0-9]+)\\] +([0-9]+\\.[0-9]+)-([0-9]+\\.[0-9]+) +sec +'\n", + " r'([0-9\\.]+) +MBytes +([0-9\\.]+) +Mbits/sec +([0-9\\.]+) +ms +'\n", + " r'([0-9]+)/([0-9]+) +\\(([0-9\\.]+)%\\)$'\n", + ")\n", + "pattern: Pattern[str] = re.compile(filter_regex)\n", + "\n", + "\n", + "def iperf_runner(\n", + " namespace: str,\n", + " ue_name: str,\n", + " bind_host: str,\n", + " server_host: str,\n", + " udp_port: int,\n", + " bandwidth: str,\n", + " test_length_secs: int,\n", + " kdbc_table: gpudb.GPUdbTable,\n", + " pattern: Pattern[str],\n", + " log_file: str\n", + ") -> None:\n", + " \"\"\"\n", + " Runs iperf for one UE, parses and inserts records into Kinetica,\n", + " and writes each record to a dedicated log file in the specified format.\n", + " Exits when the iperf process finishes.\n", + "\n", + " :param namespace: The network namespace for the UE.\n", + " :param ue_name: A label/identifier for the UE (e.g., \"UE1\").\n", + " :param bind_host: IP address to bind to (iperf3 -B).\n", + " :param server_host: The remote iperf3 server IP address.\n", + " :param udp_port: The UDP port to use (iperf3 -p).\n", + " :param bandwidth: The bandwidth limit (e.g. \"30M\" or \"120M\").\n", + " :param test_length_secs: The test duration in seconds (iperf3 -t).\n", + " :param kdbc_table: The Kinetica table object where we insert records.\n", + " :param pattern: Precompiled regex to parse iperf3 output.\n", + " :param log_file: Path to the log file for this iperf3 process (e.g. \"logs/UE1_iperfc.log\").\n", + " \"\"\"\n", + " try:\n", + " iperf_cmd = (\n", + " f\"stdbuf -oL iperf3 \"\n", + " f\"-B {bind_host} \"\n", + " f\"-c {server_host} \"\n", + " f\"-p {udp_port} \"\n", + " f\"-R -u \"\n", + " f\"-b {bandwidth} \"\n", + " f\"-t {test_length_secs}\"\n", + " )\n", + " cmd = [\"sudo\", \"ip\", \"netns\", \"exec\", namespace, \"bash\", \"-c\", iperf_cmd]\n", + "\n", + " # Open a subprocess to run iperf3.\n", + " with subprocess.Popen(\n", + " cmd,\n", + " stdout=subprocess.PIPE,\n", + " stderr=subprocess.STDOUT,\n", + " universal_newlines=True,\n", + " bufsize=1\n", + " ) as proc:\n", + " for line in proc.stdout:\n", + " line = line.strip()\n", + " match = pattern.match(line)\n", + " if match:\n", + " # Create an IperfRecord from the parsed line.\n", + " iperf_record = IperfRecord(\n", + " record_ue=ue_name,\n", + " record_stream=int(match.group(1)),\n", + " record_interval_start=float(match.group(2)),\n", + " record_interval_end=float(match.group(3)),\n", + " record_data_transferred=float(match.group(4)),\n", + " record_bitrate=float(match.group(5)),\n", + " record_jitter=float(match.group(6)),\n", + " record_lost_packets=int(match.group(7)),\n", + " record_total_packets=int(match.group(8)),\n", + " record_loss_percentage=float(match.group(9))\n", + " )\n", + " # Calculate duration.\n", + " iperf_record.duration = iperf_record.interval_end - iperf_record.interval_start\n", + "\n", + " # Insert record into Kinetica.\n", + " record_dict = iperf_record.record_to_dict()\n", + " kdbc_table.insert_records(record_dict)\n", + " kdbc_table.flush_data_to_server()\n", + "\n", + " # Write the raw iperf3 output line to the dedicated log file\n", + " # with the format: \"[] [] \"\n", + " timestamp = datetime.now().strftime(\"%Y-%m-%d %H:%M:%S\")\n", + " with open(log_file, \"a\") as f:\n", + " f.write(f\"[{ue_name}] [{timestamp}] {line}\\n\")\n", + " except Exception as e:\n", + " print(f\"Error running process: {e}\")\n", + " # When iperf3 ends, the function exits so that the main thread can handle any post-run activities.\n", + "\n", + "\n", + "bandwidth_ue1: str = \"30M\"\n", + "bandwidth_ue2: str = \"120M\"\n", + "bind_host_ue1: str = \"12.1.1.2\"\n", + "bind_host_ue2: str = \"12.1.1.130\"\n", + "server_host_ue1: str = \"192.168.70.135\"\n", + "server_host_ue2: str = \"192.168.70.135\"\n", + "udp_port_ue1: int = 5201\n", + "udp_port_ue2: int = 5202\n", + "test_length_secs: int = 100\n", + "\n", + "test_iterations: int = 25 # Feel free to change this as you see fit to run the log generation for a longer period of time.\n", + "current_iteration: int = 0\n", + "\n", + "while current_iteration < test_iterations:\n", + " logger.info(f\"\"\"CURRENT ITERATION: {current_iteration}\"\"\")\n", + " current_iteration += 1\n", + " \n", + " t1: threading.Thread = threading.Thread(\n", + " target=iperf_runner,\n", + " args=(\n", + " \"ue1\",\n", + " \"UE1\",\n", + " bind_host_ue1,\n", + " server_host_ue1,\n", + " udp_port_ue1,\n", + " bandwidth_ue1,\n", + " test_length_secs,\n", + " kdbc_table,\n", + " pattern,\n", + " \"logs/UE1_iperfc.log\"\n", + " ),\n", + " daemon=True\n", + " )\n", + "\n", + " t2: threading.Thread = threading.Thread(\n", + " target=iperf_runner,\n", + " args=(\n", + " \"ue3\",\n", + " \"UE3\",\n", + " bind_host_ue2,\n", + " server_host_ue2,\n", + " udp_port_ue2,\n", + " bandwidth_ue2,\n", + " test_length_secs,\n", + " kdbc_table,\n", + " pattern,\n", + " \"logs/UE2_iperfc.log\"\n", + " ),\n", + " daemon=True\n", + " )\n", + "\n", + " t1.start()\n", + " t2.start()\n", + "\n", + " t1.join()\n", + " t2.join()\n", + "\n", + " if bandwidth_ue1 == \"30M\":\n", + " bandwidth_ue1 = \"120M\"\n", + " else:\n", + " bandwidth_ue1 = \"30M\"\n", + "\n", + " if bandwidth_ue2 == \"30M\":\n", + " bandwidth_ue2 = \"120M\"\n", + " else:\n", + " bandwidth_ue2 = \"30M\"\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Keep the above cell running! If you want to see what is happening in the background, you can:\n", + "1. Check out UE1, UE2 iperf logs to see how traffic generator works, and how it leads to packet loss:\n", + " ```bash\n", + " tail -f logs/UE1_iperfc.log\n", + " tail -f logs/UE2_iperfc.log\n", + " ```\n", + "\n", + "2. Access Kinetica database, and see how wlogs are updated there real-time. Login with your username and password, mentioned in the .env file.\n", + "\n", + " - KINETICA_USERNAME=\"nvidia_gtc_2025\"\n", + " - KINETICA_PASSWORD=\"Kinetica123!\"\n", + " - KINETICA_SCHEMA=\"nvidia_gtc_dli_2025\"\n", + " - Table name: os.environment.get(\"IPERF3_RANDOM_TABLE_NAME\")\n", + " - URL : https://demo72.kinetica.com/gadmin/" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This will be the final step setting up the 5G Lab for the Agentic Workflow.\n", + "\n", + "![stop](./Stop2.jpg) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/DLI_Lab_Setup.ipynb b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/DLI_Lab_Setup.ipynb index 7fa19af43..cd6320662 100644 --- a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/DLI_Lab_Setup.ipynb +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/DLI_Lab_Setup.ipynb @@ -104,7 +104,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Process started with PID 102070, logging to logs/RIC.log.\n" + "Process started with PID 114339, logging to logs/RIC.log.\n" ] } ], @@ -184,7 +184,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Process started with PID 117275, logging to logs/gNodeB.log.\n" + "Process started with PID 115062, logging to logs/gNodeB.log.\n" ] } ], @@ -261,7 +261,7 @@ "[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 \n", "[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 \n", "[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 \n", - "[xApp]: DB filename = /tmp/xapp_db_1747219577414412 \n", + "[xApp]: DB filename = /tmp/xapp_db_1752933660363741 \n", " [xApp]: E42 SETUP-REQUEST tx\n", "[xApp]: E42 SETUP-RESPONSE rx \n", "[xApp]: xApp ID = 7 \n", @@ -271,7 +271,7 @@ "[xApp]: CONTROL-REQUEST tx \n", "[xApp]: CONTROL ACK rx\n", "[xApp]: Successfully received CONTROL-ACK \n", - "[xApp]: Control Loop Latency: 828 us\n", + "[xApp]: Control Loop Latency: 636 us\n", "[xApp]: Sucessfully stopped \n", "Test xApp run SUCCESSFULLY\n" ] @@ -364,7 +364,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "\u001b[32m2025-05-14 10:46:32 INFO: Starting process UE1 with command: \n", + "\u001b[32m2025-07-19 14:01:12 INFO: Starting process UE1 with command: \n", " sudo ./multi_ue.sh -c1 -e & \n", " sleep 5\n", " sudo ip netns exec ue1 bash -c '\n", @@ -373,8 +373,8 @@ " --rfsim --sa -O ran-conf/ue_1.conf -E\n", " '\n", " \u001b[0m\n", - "\u001b[32m2025-05-14 10:46:32 INFO: Process UE1 started with PID 118709, logging to logs/UE1.log\u001b[0m\n", - "\u001b[32m2025-05-14 10:46:32 INFO: Starting process UE3 with command: \n", + "\u001b[32m2025-07-19 14:01:12 INFO: Process UE1 started with PID 116644, logging to logs/UE1.log\u001b[0m\n", + "\u001b[32m2025-07-19 14:01:12 INFO: Starting process UE3 with command: \n", " sudo ./multi_ue.sh -c3 -e & \n", " sleep 5\n", " sudo ip netns exec ue3 bash -c '\n", @@ -383,7 +383,7 @@ " --rfsim --sa -O ran-conf/ue_2.conf -E\n", " '\n", " \u001b[0m\n", - "\u001b[32m2025-05-14 10:46:32 INFO: Process UE3 started with PID 118712, logging to logs/UE3.log\u001b[0m\n" + "\u001b[32m2025-07-19 14:01:12 INFO: Process UE3 started with PID 116645, logging to logs/UE3.log\u001b[0m\n" ] }, { @@ -472,10 +472,10 @@ "name": "stderr", "output_type": "stream", "text": [ - "\u001b[32m2025-05-14 10:46:38 INFO: Starting process iPerf_server1 with command: docker exec -t oai-ext-dn iperf3 -s -p 5201\u001b[0m\n", - "\u001b[32m2025-05-14 10:46:38 INFO: Process iPerf_server1 started with PID 119502, logging to logs/docker_iperfserver_server1.log\u001b[0m\n", - "\u001b[32m2025-05-14 10:46:38 INFO: Starting process iPerf_server2 with command: docker exec -t oai-ext-dn iperf3 -s -p 5202\u001b[0m\n", - "\u001b[32m2025-05-14 10:46:38 INFO: Process iPerf_server2 started with PID 119503, logging to logs/docker_iperfserver_server2.log\u001b[0m\n" + "\u001b[32m2025-07-19 14:01:19 INFO: Starting process iPerf_server1 with command: docker exec -t oai-ext-dn iperf3 -s -p 5201\u001b[0m\n", + "\u001b[32m2025-07-19 14:01:19 INFO: Process iPerf_server1 started with PID 117010, logging to logs/docker_iperfserver_server1.log\u001b[0m\n", + "\u001b[32m2025-07-19 14:01:19 INFO: Starting process iPerf_server2 with command: docker exec -t oai-ext-dn iperf3 -s -p 5202\u001b[0m\n", + "\u001b[32m2025-07-19 14:01:19 INFO: Process iPerf_server2 started with PID 117011, logging to logs/docker_iperfserver_server2.log\u001b[0m\n" ] } ], @@ -600,16 +600,16 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", - " Kinetica Table: lineless_toolbuilding_squad_sciotheism_iperf3_logs
\n", + " Kinetica Table: mein_naphthoxide_downhanging_pneumonolith_iperf3_logs
\n", " User: nvidia_gtc_2025
\n", - " Password: Kinetica123!\n" + " Password: ZwQ&pi0U76k5kMrX\n" ], "text/plain": [ "" @@ -622,31 +622,31 @@ "name": "stderr", "output_type": "stream", "text": [ - "\u001b[32m2025-05-14 19:25:50 INFO: CURRENT ITERATION: 0\u001b[0m\n", - "\u001b[32m2025-05-14 19:26:40 INFO: CURRENT ITERATION: 1\u001b[0m\n", - "\u001b[32m2025-05-14 19:26:56 INFO: CURRENT ITERATION: 2\u001b[0m\n", - "\u001b[32m2025-05-14 19:27:34 INFO: CURRENT ITERATION: 3\u001b[0m\n", - "\u001b[32m2025-05-14 19:28:17 INFO: CURRENT ITERATION: 4\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 5\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 6\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 7\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 8\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 9\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:51 INFO: CURRENT ITERATION: 10\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 11\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 12\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 13\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 14\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 15\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 16\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 17\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 18\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 19\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 20\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 21\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 22\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 23\u001b[0m\n", - "\u001b[32m2025-05-14 19:29:52 INFO: CURRENT ITERATION: 24\u001b[0m\n" + "\u001b[32m2025-07-19 14:01:25 INFO: CURRENT ITERATION: 0\u001b[0m\n", + "\u001b[32m2025-07-19 14:03:06 INFO: CURRENT ITERATION: 1\u001b[0m\n", + "\u001b[32m2025-07-19 14:04:47 INFO: CURRENT ITERATION: 2\u001b[0m\n", + "\u001b[32m2025-07-19 14:06:29 INFO: CURRENT ITERATION: 3\u001b[0m\n", + "\u001b[32m2025-07-19 14:08:10 INFO: CURRENT ITERATION: 4\u001b[0m\n", + "\u001b[32m2025-07-19 14:09:51 INFO: CURRENT ITERATION: 5\u001b[0m\n", + "\u001b[32m2025-07-19 14:11:32 INFO: CURRENT ITERATION: 6\u001b[0m\n", + "\u001b[32m2025-07-19 14:13:13 INFO: CURRENT ITERATION: 7\u001b[0m\n", + "\u001b[32m2025-07-19 14:14:55 INFO: CURRENT ITERATION: 8\u001b[0m\n", + "\u001b[32m2025-07-19 14:16:36 INFO: CURRENT ITERATION: 9\u001b[0m\n", + "\u001b[32m2025-07-19 14:18:17 INFO: CURRENT ITERATION: 10\u001b[0m\n", + "\u001b[32m2025-07-19 14:19:58 INFO: CURRENT ITERATION: 11\u001b[0m\n", + "\u001b[32m2025-07-19 14:21:39 INFO: CURRENT ITERATION: 12\u001b[0m\n", + "\u001b[32m2025-07-19 14:23:20 INFO: CURRENT ITERATION: 13\u001b[0m\n", + "\u001b[32m2025-07-19 14:25:02 INFO: CURRENT ITERATION: 14\u001b[0m\n", + "\u001b[32m2025-07-19 14:26:43 INFO: CURRENT ITERATION: 15\u001b[0m\n", + "\u001b[32m2025-07-19 14:28:24 INFO: CURRENT ITERATION: 16\u001b[0m\n", + "\u001b[32m2025-07-19 14:30:05 INFO: CURRENT ITERATION: 17\u001b[0m\n", + "\u001b[32m2025-07-19 14:31:46 INFO: CURRENT ITERATION: 18\u001b[0m\n", + "\u001b[32m2025-07-19 14:33:28 INFO: CURRENT ITERATION: 19\u001b[0m\n", + "\u001b[32m2025-07-19 14:35:09 INFO: CURRENT ITERATION: 20\u001b[0m\n", + "\u001b[32m2025-07-19 14:36:50 INFO: CURRENT ITERATION: 21\u001b[0m\n", + "\u001b[32m2025-07-19 14:38:31 INFO: CURRENT ITERATION: 22\u001b[0m\n", + "\u001b[32m2025-07-19 14:40:12 INFO: CURRENT ITERATION: 23\u001b[0m\n", + "\u001b[32m2025-07-19 14:41:54 INFO: CURRENT ITERATION: 24\u001b[0m\n" ] } ], diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/RIC.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/RIC.log new file mode 100644 index 000000000..9adfc3f27 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/RIC.log @@ -0,0 +1,456 @@ +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[NEAR-RIC]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36421 +[NEAR-RIC]: Initializing +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[iApp]: Initializing ... +[iApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[NEAR-RIC]: Initializing Task Manager with 2 threads +[E2AP]: E2 SETUP-REQUEST rx from PLMN 1. 1 Node ID 3584 RAN type ngran_gNB +[NEAR-RIC]: Accepting RAN function ID 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Accepting RAN function ID 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Accepting RAN function ID 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 144 with def = PDCP_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 146 with def = TC_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 148 with def = GTP_STATS_V0 +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[NEAR-RIC]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36421 +[NEAR-RIC]: Initializing +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[iApp]: Initializing ... +[iApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[NEAR-RIC]: Initializing Task Manager with 2 threads +[E2AP]: E2 SETUP-REQUEST rx from PLMN 1. 1 Node ID 3584 RAN type ngran_gNB +[NEAR-RIC]: Accepting RAN function ID 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Accepting RAN function ID 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Accepting RAN function ID 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 144 with def = PDCP_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 146 with def = TC_STATS_V0 +[NEAR-RIC]: Accepting RAN function ID 148 with def = GTP_STATS_V0 +[iApp]: E42 SETUP-REQUEST rx +[iApp]: E42 SETUP-RESPONSE tx +[NEAR-RIC]: CONTROL SERVICE sent +[iApp]: E42_RIC_CONTROL_REQUEST rx +[NEAR-RIC]: CONTROL ACKNOWLEDGE rx +[iApp]: RIC_CONTROL_ACKNOWLEDGE tx diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE1.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE1.log new file mode 100644 index 000000000..617f961ba --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE1.log @@ -0,0 +1,324385 @@ +stdbuf: missing operand +Try 'stdbuf --help' for more information. +creating namespace for UE ID 1 name ue1 +opening shell in namespace ue1 +type 'ip netns exec ue1 bash' in additional terminals +Calling sched_setscheduler(79) +[ENB_APP] nfapi (0) running mode: MONOLITHIC +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool2_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool2_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool3_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool3_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool4_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool4_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool5_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool5_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool6_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool6_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool7_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool7_-1, affinity ffffffff, priority 97 +[ITTI] Starting itti queue: TASK_UNKNOWN as task 0 +[ITTI] Starting itti queue: TASK_TIMER as task 1 +[ITTI] Starting itti queue: TASK_L2L1 as task 2 +[ITTI] Starting itti queue: TASK_BM as task 3 +[ITTI] Starting itti queue: TASK_PHY_ENB as task 4 +[ITTI] Starting itti queue: TASK_MAC_GNB as task 5 +[ITTI] Starting itti queue: TASK_RLC_ENB as task 6 +[ITTI] Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7 +[ITTI] Starting itti queue: TASK_PDCP_ENB as task 8 +[ITTI] Starting itti queue: TASK_PDCP_GNB as task 9 +[ITTI] Starting itti queue: TASK_DATA_FORWARDING as task 10 +[ITTI] Starting itti queue: TASK_END_MARKER as task 11 +[ITTI] Starting itti queue: TASK_RRC_ENB as task 12 +[ITTI] Starting itti queue: TASK_RRC_GNB as task 13 +[ITTI] Starting itti queue: TASK_RAL_ENB as task 14 +[ITTI] Starting itti queue: TASK_S1AP as task 15 +[ITTI] Starting itti queue: TASK_NGAP as task 16 +[ITTI] Starting itti queue: TASK_X2AP as task 17 +[ITTI] Starting itti queue: TASK_M2AP_ENB as task 18 +[ITTI] Starting itti queue: TASK_M2AP_MCE as task 19 +[ITTI] Starting itti queue: TASK_M3AP as task 20 +[ITTI] Starting itti queue: TASK_M3AP_MME as task 21 +[ITTI] Starting itti queue: TASK_M3AP_MCE as task 22 +[ITTI] Starting itti queue: TASK_SCTP as task 23 +[ITTI] Starting itti queue: TASK_ENB_APP as task 24 +[ITTI] Starting itti queue: TASK_GNB_APP as task 25 +[ITTI] Starting itti queue: TASK_MCE_APP as task 26 +[ITTI] Starting itti queue: TASK_MME_APP as task 27 +[ITTI] Starting itti queue: TASK_PHY_UE as task 28 +[ITTI] Starting itti queue: TASK_MAC_UE as task 29 +[ITTI] Starting itti queue: TASK_RLC_UE as task 30 +[ITTI] Starting itti queue: TASK_PDCP_UE as task 31 +[ITTI] Starting itti queue: TASK_RRC_UE as task 32 +[ITTI] Starting itti queue: TASK_RRC_NRUE as task 33 +[ITTI] Starting itti queue: TASK_NAS_UE as task 34 +[ITTI] Starting itti queue: TASK_RAL_UE as task 35 +[ITTI] Starting itti queue: TASK_GTPV1_U as task 36 +[ITTI] Starting itti queue: TASK_CU_F1 as task 37 +[ITTI] Starting itti queue: TASK_DU_F1 as task 38 +[ITTI] Starting itti queue: TASK_CUCP_E1 as task 39 +[ITTI] Starting itti queue: TASK_CUUP_E1 as task 40 +[ITTI] Starting itti queue: TASK_RRC_UE_SIM as task 41 +[ITTI] Starting itti queue: TASK_RRC_GNB_SIM as task 42 +[ITTI] Starting itti queue: TASK_RRC_NSA_UE as task 43 +[ITTI] Starting itti queue: TASK_RRC_NSA_NRUE as task 44 +[ITTI] Starting itti queue: TASK_NAS_NRUE as task 45 +[OPT] OPT disabled +[HW] Version: Branch: slicing-spring-of-code Abrev. Hash: 50d33e69f0 Date: Sat Mar 30 19:11:11 2024 +0100 +[PDCP] pdcp init,usegtp usenetlink +[PDCP] TUN: Opened socket oaitun_ue1 with fd nas_sock_fd[0]=97 +[PDCP] UE pdcp will use tun interface +[NR_MAC] [UE0] Initializing MAC +[NR_MAC] Initializing dl and ul config_request. num_slots = 20 +[RLC] activated srb0 for UE with RNTI 0x0 +[PHY] Set UE_fo_compensation 0, UE_scan_carrier 0, UE_no_timing_correction 0 +, chest-freq 0, chest-time 0 +[PHY] Set UE nb_rx_antenna 1, nb_tx_antenna 1, threequarter_fs 1, ssb_start_subcarrier 516 +[PHY] SA init parameters. DL freq 3619200000 UL offset 0 SSB numerology 1 N_RB_DL 106 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] samples_per_subframe 46080/per second 46080000, wCP 43008 +[PHY] Initializing UE vars for gNB TXant 1, UE RXant 1 +[PHY] prs_config configuration NOT found..!! Skipped configuring UE for the PRS reception +[PHY] UE 0 Setting N_TA_offset to 600 samples (factor 1.500000, UL Freq 3619200000, N_RB 106, mu 1) +[PHY] HW: Configuring card 0, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 1, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 2, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 3, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 4, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 5, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 6, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 7, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[HW] # /dev/cpu_dma_latency set to 2 us +sh: 1: cannot create /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu10/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu11/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu12/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu13/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu14/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu15/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu8/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu9/cpufreq/scaling_min_freq: Directory nonexistent +[HW] Can't set cpu frequency +[PHY] Intializing UE Threads for instance 0 (0x55fadb025c30,0x7f9b85379010)... +[UTIL] Creating thread UEthread with affinity -1 and priority 97 +[UTIL] threadCreate for UEthread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_UE_stats with affinity -1 and priority 1 +[HW] sample_rate 46080000.000000 +[HW] Running as client: will connect to a rfsimulator server side +[HW] [RRU] has loaded RFSIMULATOR device. +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_default=134217728" to increase RFsim performance +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_max=134217728" to increase RFsim performance +[UTIL] threadCreate for L1_UE_stats, affinity ffffffff, priority 1 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_default=134217728" to increase RFsim performance +[NR_RRC] create TASK_RRC_NRUE +[UTIL] Creating thread TASK_RRC_NRUE with affinity -1 and priority 50 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_max=134217728" to increase RFsim performance +[HW] Trying to connect to 10.201.1.100:4043 +[HW] Connection to 10.201.1.100:4043 established +[HW] connect() to 10.201.1.100:4043 failed, errno(0) +[UTIL] threadCreate for TASK_RRC_NRUE, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_RRC_NRUE +[UTIL] Creating thread TASK_NAS_NRUE with affinity -1 and priority 50 +[UTIL] threadCreate for TASK_NAS_NRUE, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_NAS_NRUE +[SIM] UICC simulation: IMSI=001010000000001, IMEISV=6754567890123413, Ki=fec86ba6eb707ed08905757b1bb44b8f, OPc=C42449363BBAD02B66D16BC975D77CC1, DNN=oai, SST=0x01, SD=0x000001 +[PHY] [SCHED][UE] Check absolute frequency DL 3619200000.000000, UL 3619200000.000000 (RF card 0, oai_exit 0, channel 0, rx_num_channels 1) +[NR_PHY] Starting sync detection +[PHY] [UE thread Synch] Running Initial Synch +[PHY] [UE] nr_synchro_time: Sync source = 0, Peak found at pos 85696, val = 1818651250 (90 dB) avg 51 dB, ffo 0.000000 +[PHY] PSS execution duration 27617 microseconds +[NR_PHY] ffo_pss 0.000000 (0 Hz), ffo_sss 0.000657 (19 Hz), ffo_pss+ffo_sss 0.000657 (19 Hz), nid1: 0, nid2: 0 +[PHY] [UE0] Initial sync: pbch decoded sucessfully, ssb index 0 +[PHY] [UE0] In synch, rx_offset 82276 samples +[PHY] [UE 0] Measured Carrier Frequency 3619200000 Hz (offset 0 Hz) +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] Got synch: hw_slot_offset 7, carrier off 0 Hz, rxgain 0.000000 (DL 3619200000.000000 Hz, UL 3619200000.000000 Hz) +[PHY] UE synchronized! decoded_frame_rx=658 UE->init_sync_frame=1 trashed_frames=6 +[PHY] Resynchronizing RX by 82276 samples +[NR_RRC] SIB1 decoded +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[MAC] Initialization of 4-step contention-based random access procedure +[NR_MAC] PRACH scheduler: Selected RO Frame 807, Slot 19, Symbol 0, Fdm 0 +[PHY] PRACH [UE 0] in frame.slot 807.19, placing PRACH in position 1804, msg1 frequency start 0 (k1 0), preamble_offset 2, first_nonzero_root_idx 0 +[NR_MAC] [UE 0][RAPROC] Got BI RAR subPDU 5 ms +[NR_MAC] [UE 0][RAPROC] Got RAPID RAR subPDU +[NR_MAC] [UE 0][RAPROC][808.7] Found RAR with the intended RAPID 11 +[MAC] received TA command 31 +[PHY] RAR-Msg2 decoded +[NR_MAC] [RAPROC][808.17] RA-Msg3 transmitted +[MAC] [UE 0][RAPROC] Frame 809 : received contention resolution identity: 0x18099426b0c6 Terminating RA procedure +[MAC] [UE 0][809.10][RAPROC] RA procedure succeeded. CB-RA: Contention Resolution is successful. +[NR_RRC] [UE0][RAPROC] Logical Channel DL-CCCH (SRB0), Received NR_RRCSetup +[RLC] Added srb 1 to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] State = NR_RRC_CONNECTED +[NR_RRC] [UE 0][RAPROC] Logical Channel UL-DCCH (SRB1), Generating RRCSetupComplete (bytes39) +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 42 , buffer 0x7f9b3c0043a0 +[NAS] nr_nas_msg_sim.c:331 derive_kgnb with count= 0 +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 21 , buffer 0x7f9b3c003710 +[NR_RRC] Received securityModeCommand (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing securityModeCommand +[NR_RRC] Security algorithm is set to nea0 +[NR_RRC] Integrity protection algorithm is set to nia2 +[NR_RRC] rrc_ue_process_securityModeCommand, security mode complete case +[NR_RRC] Receiving from SRB1 (DL-DCCH), encoding securityModeComplete, rrc_TransactionIdentifier: 2 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_RRC] radio Bearer Configuration is present +[NR_RRC] State = NR_RRC_CONNECTED +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] Measurement Configuration is present +[NR_RRC] Measurement Object List is present +[NR_RRC] Adding measurement object 1 +[NR_RRC] call rrc_mac_config_req +[NR_RRC] Report Configuration List is present +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 69 +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[NAS] [UE] Received REGISTRATION ACCEPT message +[NAS] This NAS IEI is not handled when extracting list of allowed NSSAI +[NR_RRC] Received Capability Enquiry (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing UECapabilityEnquiry +CMDLINE: "./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem" "--rfsimulator.serveraddr" "10.201.1.100" "-r" "106" "--numerology" "1" "--band" "78" "-C" "3619200000" "--rfsim" "--sa" "-O" "ran-conf/ue_1.conf" "-E" +[CONFIG] get parameters from libconfig ran-conf/ue_1.conf [LIBCONFIG] Path for include directive set to: ran-conf +[CONFIG] function config_libconfig_init returned 0 +[CONFIG] config module libconfig loaded +[LIBCONFIG] config: 2/2 parameters successfully set, (2 to default value) +[CONFIG] debug flags: 0x00000000 +[LIBCONFIG] log_config: 3/3 parameters successfully set, (2 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (48 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (50 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +log init done +[LIBCONFIG] (root): 31/31 parameters successfully set, (28 to default value) +[LIBCONFIG] (root): 42/42 parameters successfully set, (37 to default value) +[LIBCONFIG] (root): 6/6 parameters successfully set, (5 to default value) +[LIBCONFIG] TTracer: 3/3 parameters successfully set, (3 to default value) +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value) +[LIBCONFIG] loader.ldpc: 2/2 parameters successfully set, (1 to default value) +shlib_path libldpc.so +[LOADER] library libldpc.so successfully loaded +[LIBCONFIG] nas.noS1: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value) +shlib_path libdfts.so +[LOADER] library libdfts.so successfully loaded +[LIBCONFIG] list PRSs not found in config file ran-conf/ue_1.conf +[LIBCONFIG] device.recplay: 8/8 parameters successfully set, (8 to default value) +[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] loader.rfsimulator: 2/2 parameters successfully set, (1 to default value) +shlib_path librfsimulator.so +[LOADER] library librfsimulator.so successfully loaded +[LIBCONFIG] rfsimulator: 9/9 parameters successfully set, (5 to default value) +Initializing random number generator, seed 171108117403559948 +UE threads created by 92842 +TYPE TO TERMINATE +[LIBCONFIG] uicc0: 10/10 parameters successfully set, (4 to default value) +kgnb : bd ba d8 20 d9 f8 5e 1b 3a 3b 29 9a 0f e5 ed 97 bc 26 12 78 ac c4 a8 15 a6 9f 9f 31 40 23 62 97 +kausf:e7 da 77 2f 97 5f e2 a2 48 2a ed 2c 37 f1 32 c2 30 8 38 da 7a 63 6b d f0 7c 29 2d 6f a3 6c 4e +kseaf:61 e6 6d bb 37 40 e5 5e db bb b4 e9 82 a1 3c cc ce 56 fd cb 5f ce fb 4a 34 3e 4f 43 a6 50 3d 11 +kamf:c3 9e 56 b 37 77 76 ef 79 aa 6b 67 b9 d5 32 c1 5f e 3e 6c a3 2e 1f 7d b6 be fc f 15 8f c6 b3 +knas_int: +30 47 1 85 4a 2c c6 64 90 19 2b d2 d 33 88 6c +mac 3 61 d7 2f +[NR_RRC] driving kRRCenc, kRRCint and kUPenc from KgNB=bd ba d8 20 d9 f8 5e 1b 3a 3b 29 9a 0f e5 ed 97 bc 26 12 78 ac c4 a8 15 a6 9f 9f 31 40 23 62 97  +[NR_RRC] securityModeComplete payload: 2c 00 c9 d9 fa 55 00 00 04 00 00 00 00 00 00 00  + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + +[PHY] [RRC]UE NR Capability encoded, 10 bytes (86 bits) +[NR_RRC] UECapabilityInformation Encoded 106 bits (14 bytes) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NAS] Send NAS_UPLINK_DATA_REQ message(RegistrationComplete) +[NAS] Send NAS_UPLINK_DATA_REQ message(PduSessionEstablishRequest) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_RRC] radio Bearer Configuration is present +[PDCP] added drb 1 to UE ID 0 +[SDAP] Default DRB for the created SDAP entity: 1 +[NR_RRC] State = NR_RRC_CONNECTED +[RLC] Added srb 2 to UE with RNTI 0x0 +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0x0 +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 101 +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.2, mask 255.255.255.0 broadcast address 12.1.1.255 +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 101 +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.2, mask 255.255.255.0 broadcast address 12.1.1.255 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 82232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 82655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 107326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 107815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 107/216. Current DCI threshold: 53 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 132774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243411/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 370167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 370656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 0. Mismatched bits: 62/216. Current DCI threshold: 31 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 674292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 674728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 677284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 677677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 698273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 698655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 719444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 719899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 722170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 722624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 725456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 728464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 730711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 731459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 733706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 734456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 735204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 735950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 736698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 737445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 738195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 738946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 739696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 741192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 741941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 744193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 744943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 745692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 747190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 747943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 748693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 750200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 750956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 751706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 753213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 753968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 754721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 756224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 756972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 759229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 759982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 760729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 761479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 763728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 764481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 766730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 767479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 770478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 775720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 781715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 826735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 827484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 851491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 853739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 856733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 857487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 859731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 874209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 874608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 878306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 878734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 890393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 890793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 899198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 899610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 908380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 908797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 960528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 981564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1002533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1031420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1033682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1036688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1038191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1038940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1039691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1041191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1041942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1042693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1045691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1048695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1051687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1054682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1055429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1057677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1059179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1059926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1060674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1063674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1066677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1067429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1084221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1084640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1094254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1094668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1098379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1098802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1109218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1109642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 105/216. Current DCI threshold: 52 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1201346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1204346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1205090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1205835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1206584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1207335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1208084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1208836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1209587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1210333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1211081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1211829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1212583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1213332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1214083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1214833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1215583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1216333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1217086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1217840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1219296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1219752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1220205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1220660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1223390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1223846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1226386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1228640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1229389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1231646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1232396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1234646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1235395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1237648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1238395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1240642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1241392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1244387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1246634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1247383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1249625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1250374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1252623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1253374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1255616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1256368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1258617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1259368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1261620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1262374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1267644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1270647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1273656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1276652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1279452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1279907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1282328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1282716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1284260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1284659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1290423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1290839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1317348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1317763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1384735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1385483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1388481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1389227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1389977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1391477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1394472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1397469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1399713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1400463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1403465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1406459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1409465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1410222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1410973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1411727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1414732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1415488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1417745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1420747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1423749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1425245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1425998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1426746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1436747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1442752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1444252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1446503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1447250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1448002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1448753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1449501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1450249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1450998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1451747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1452494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1453244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1453995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1454743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1456238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1456988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1457739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1459237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1459986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1460730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1461480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1462228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1462979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1463725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1464475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1465223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1465969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1466719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1467468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1468218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1468969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1469717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1470467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1472712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1478728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1481736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1484749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1511871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1575277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1575732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1584709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1585460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1587708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1589205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1589960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1590707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1593714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1596731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1599737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1600488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1603488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1608737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1611735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1612481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1614727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1615476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1617720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1618470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1620718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1621469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1623714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1626715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1627469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1629722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1630476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1632739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1633487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1641386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1641844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1643469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1645725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1646474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1648725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1649476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1651725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1652474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1654719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1655470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1657714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1658462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1660709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1661459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1663704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1664453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1666706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1667455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1682491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1685489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1687741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1690741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1693736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1695232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1695983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1696730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1697481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1700475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1702724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1703475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1705721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1724517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1775371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1775829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1796184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1796640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1799371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1799826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1803287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1805538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1806286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1808532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1809283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1812276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1815271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1818266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1821267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1832543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1834046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1834801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1835552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1838550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1839299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1841550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1843047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1843797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1844549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1847540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1850533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1851284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1853529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1855029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1855778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1856528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1859525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1862538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1865547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1870139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1870593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1873322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1874050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1874801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 112/216. Current DCI threshold: 56 +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2235910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2254638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2255384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2256134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2256883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2257633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2258389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2259135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2259890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2260637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2261394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2262145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2262898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2263655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2264406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2265159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2265907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2266663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2267415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2269670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2270420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2271169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2271921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2272672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2273424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2274172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2274922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2275670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2276419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2277170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2277919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2278670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2279421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2280167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2280912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2281662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2282412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2283162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2283911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2284662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2285408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2286152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2286902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2287651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2288401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2290651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2291396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2292144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2292896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2293646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2294397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2295146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2295899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2296646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2297401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2298151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2298906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2299663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2300413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2301169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2301915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2302672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2303420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2305678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2306429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2307175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2307931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2308682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2309434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2310186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2310935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2311682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2312429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2314682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2316181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2316930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2317678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2318425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2319175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2319925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2320675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2321423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2322169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2322917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2323663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2324413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2325164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2325914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2326663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2327410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2328159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2328908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2329657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2330411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2331161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2331910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2332657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2333408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2334161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2334911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2335668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2336418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2337173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2337923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2338680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2339430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2341316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2341732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2343377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2343782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2344201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2344632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2346322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2346757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2347191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2347612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2349246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2349672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2351322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2351738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2353416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2353842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2354270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2354680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2355102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2355526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2355947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2356369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2356800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2357225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2357646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2359306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2359724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2361379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2361870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2362309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2362741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2364462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2364887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2365285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2365701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2367355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2367780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2368211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2368626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2370271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2370701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2371138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2371566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2371973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2372383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2372800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2373219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2373648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2375362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2375766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2376175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2376593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2378246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2378665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2379088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2379502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2379912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2380335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2380737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2381165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2381605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2383270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2383691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2386235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2386663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2387067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2387535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2387959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2388356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2388783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2389209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2389635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2390044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2390467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2390878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2391290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2391732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2393431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2393869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2394279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2394700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2396341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2396746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2397234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2397647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2399313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2399800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2400224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2400648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2402313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2402730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2403161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2403588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2404005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2404438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2404848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2405262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2405681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2408180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2408584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2409006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2409414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2409867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2410283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2410689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2411107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2411520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2411940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2412350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2412788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2413174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2413584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2415237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2415652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2416063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2416481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2416893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2417314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2417735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2418151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2418569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2418998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2419402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2419818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2420244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2420676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2421091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2421507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2421929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2422337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2422763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2423187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2423610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2425304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2425724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2426204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2426621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2427041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2427453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2427899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2428346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2428766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2429164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2429567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2429988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2430407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2430811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2431234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2431649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2432072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2432494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2432924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2433343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2433750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2434213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2434630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2436311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2436728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2437145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2437566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2437987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2438394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2438812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2439216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2439618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2440030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2440454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2440869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2441295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2441716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2442123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2442548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2442963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2443393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2443800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2444228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2444649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2445080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2445541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2445964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2446386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2446810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2447239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2447663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2448070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2448485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2448903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2449326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2449737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2450143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2450575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2450996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2451402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2451823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2452255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2452676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2454561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2455311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2457557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2458305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2459053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2459801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2460549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2461300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2462048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2462802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2463549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2464298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2465046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2465795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2466550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2467298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2468054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2468802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2469557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2470308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2471062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2471816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2472570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2473323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2474071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2474825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2475576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2476329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2478586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2479331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2480083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2480833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2481583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2482332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2483085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2483836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2484581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2485331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2486079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2486829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2487581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2488328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2489079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2489824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2490573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2491322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2492070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2492822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2493567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2494318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2495064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2495812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2496561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2497311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2499560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2500308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2501057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2501806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2502556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2503306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2504062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2504809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2505563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2506313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2507069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2507821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2508575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2509331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2510079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2510831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2511581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2512336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2513088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2513840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2514592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2515340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2516091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2516842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2517593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2518344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2519096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2519845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2520592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2521341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2522091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2522842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2523591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2524343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2525095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2525839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2526585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2527334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2528084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2528833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2529582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2530334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2531078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2531824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2532573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2533324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2534073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2534824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2535575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2536321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2537069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2537817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2538571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2539320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2540071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2540821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2541571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2542321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2543074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2543828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2544580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2545338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2546087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2546841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2547592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2548349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2549099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2549851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2550607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2551352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2553607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2554360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2555109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2555862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2556608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2557357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2559611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2560363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2561112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2561858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2562606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2563357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2564104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2564856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2565608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2566357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2567103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2567849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2568600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2569346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2570098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2570849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2571598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2572345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2573092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2573842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2574592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2575342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2576096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2576844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2577592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2578339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2579090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2579843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2580592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2581350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2582098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2582853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2583603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2584359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2585111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2585864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2586618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2587365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2588119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2588869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2589623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2590373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2591126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2591881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2592626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2593378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2594128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2594879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2595628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2596380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2597132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2597877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2598628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2599376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2601626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2602377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2603121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2603870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2604618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2605367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2606118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2606864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2607615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2608360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2609109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2609857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2610607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2611357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2612108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2612857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2613604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2614353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2615101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2615851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2616600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2617357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2619417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2619821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2620258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2620688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2622345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2622756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2625277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2625701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2626123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2626528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2626944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2627349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2627783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2628199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2628603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2630291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2630722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2631152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2631558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2631990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2632398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2632811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2633245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2633661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2635350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2635775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2637415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2637834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2638281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2638722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2639151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2639602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2641270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2641699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2643404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2643816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2644240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2644666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2646337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2646746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2648003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2648412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2648833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2649253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2649665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2650082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2650509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2650921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2651380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2651793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2652220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2652639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2653045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2653498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2653907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2654393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2654812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2655243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2655659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2656072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2656495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2656925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2657363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2657774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2658195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2658608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2659029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2659467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2659872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2660287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2660700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2661114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2661525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2661954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2662387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2662799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2663229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2663627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2664063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2664477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2664926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2665368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2665799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2666208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2666633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2667036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2667461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2667884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2668292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2668711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2669136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2669564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2669971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2670387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2670812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2671254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2671698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2672111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2672527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2672949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2673373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2673814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2674256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2674675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2675108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2675538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2675957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2676370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2676778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2677204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2677625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2678055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2678470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2678885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2679308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2679746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2680176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2680605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2681030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2681441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2681851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2682260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2682681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2683113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2683538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2683958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2684386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2684808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2685220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2685639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2686086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2686493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2686910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2687315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2687742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2688155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2688567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2689014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2689448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2689878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2690300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2690726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2692392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2692829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2693238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2693661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2694078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2694506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2694913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2695394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2695817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2696242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2696676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2697086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2697494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2697927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2698350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2698780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2699193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2699617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2700048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2700470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2700886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2701309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2701724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2702151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2702582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2704354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2704773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2705194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2705606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2707312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2707730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2708162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2708594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2710265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2710743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2712420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2712840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2713269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2713679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2714118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2714543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2716300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2716729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2718415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2718833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2719261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2719665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2720086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2720498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2720923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2721357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2721792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2722204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2722633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2723042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2723474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2723874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2724274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2724692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2726396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2726804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2727215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2727638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2729361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2729778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2730206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2730625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[0m[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +stdbuf: missing operand +Try 'stdbuf --help' for more information. +creating namespace for UE ID 1 name ue1 +opening shell in namespace ue1 +type 'ip netns exec ue1 bash' in additional terminals +Calling sched_setscheduler(79) +[ENB_APP] nfapi (0) running mode: MONOLITHIC +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool2_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool2_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool3_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool3_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool4_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool4_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool5_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool5_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool6_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool6_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool7_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool7_-1, affinity ffffffff, priority 97 +[ITTI] Starting itti queue: TASK_UNKNOWN as task 0 +[ITTI] Starting itti queue: TASK_TIMER as task 1 +[ITTI] Starting itti queue: TASK_L2L1 as task 2 +[ITTI] Starting itti queue: TASK_BM as task 3 +[ITTI] Starting itti queue: TASK_PHY_ENB as task 4 +[ITTI] Starting itti queue: TASK_MAC_GNB as task 5 +[ITTI] Starting itti queue: TASK_RLC_ENB as task 6 +[ITTI] Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7 +[ITTI] Starting itti queue: TASK_PDCP_ENB as task 8 +[ITTI] Starting itti queue: TASK_PDCP_GNB as task 9 +[ITTI] Starting itti queue: TASK_DATA_FORWARDING as task 10 +[ITTI] Starting itti queue: TASK_END_MARKER as task 11 +[ITTI] Starting itti queue: TASK_RRC_ENB as task 12 +[ITTI] Starting itti queue: TASK_RRC_GNB as task 13 +[ITTI] Starting itti queue: TASK_RAL_ENB as task 14 +[ITTI] Starting itti queue: TASK_S1AP as task 15 +[ITTI] Starting itti queue: TASK_NGAP as task 16 +[ITTI] Starting itti queue: TASK_X2AP as task 17 +[ITTI] Starting itti queue: TASK_M2AP_ENB as task 18 +[ITTI] Starting itti queue: TASK_M2AP_MCE as task 19 +[ITTI] Starting itti queue: TASK_M3AP as task 20 +[ITTI] Starting itti queue: TASK_M3AP_MME as task 21 +[ITTI] Starting itti queue: TASK_M3AP_MCE as task 22 +[ITTI] Starting itti queue: TASK_SCTP as task 23 +[ITTI] Starting itti queue: TASK_ENB_APP as task 24 +[ITTI] Starting itti queue: TASK_GNB_APP as task 25 +[ITTI] Starting itti queue: TASK_MCE_APP as task 26 +[ITTI] Starting itti queue: TASK_MME_APP as task 27 +[ITTI] Starting itti queue: TASK_PHY_UE as task 28 +[ITTI] Starting itti queue: TASK_MAC_UE as task 29 +[ITTI] Starting itti queue: TASK_RLC_UE as task 30 +[ITTI] Starting itti queue: TASK_PDCP_UE as task 31 +[ITTI] Starting itti queue: TASK_RRC_UE as task 32 +[ITTI] Starting itti queue: TASK_RRC_NRUE as task 33 +[ITTI] Starting itti queue: TASK_NAS_UE as task 34 +[ITTI] Starting itti queue: TASK_RAL_UE as task 35 +[ITTI] Starting itti queue: TASK_GTPV1_U as task 36 +[ITTI] Starting itti queue: TASK_CU_F1 as task 37 +[ITTI] Starting itti queue: TASK_DU_F1 as task 38 +[ITTI] Starting itti queue: TASK_CUCP_E1 as task 39 +[ITTI] Starting itti queue: TASK_CUUP_E1 as task 40 +[ITTI] Starting itti queue: TASK_RRC_UE_SIM as task 41 +[ITTI] Starting itti queue: TASK_RRC_GNB_SIM as task 42 +[ITTI] Starting itti queue: TASK_RRC_NSA_UE as task 43 +[ITTI] Starting itti queue: TASK_RRC_NSA_NRUE as task 44 +[ITTI] Starting itti queue: TASK_NAS_NRUE as task 45 +[OPT] OPT disabled +[HW] Version: Branch: slicing-spring-of-code Abrev. Hash: 50d33e69f0 Date: Sat Mar 30 19:11:11 2024 +0100 +[PDCP] pdcp init,usegtp usenetlink +[PDCP] TUN: Opened socket oaitun_ue1 with fd nas_sock_fd[0]=97 +[PDCP] UE pdcp will use tun interface +[NR_MAC] [UE0] Initializing MAC +[NR_MAC] Initializing dl and ul config_request. num_slots = 20 +[RLC] activated srb0 for UE with RNTI 0x0 +[PHY] Set UE_fo_compensation 0, UE_scan_carrier 0, UE_no_timing_correction 0 +, chest-freq 0, chest-time 0 +[PHY] Set UE nb_rx_antenna 1, nb_tx_antenna 1, threequarter_fs 1, ssb_start_subcarrier 516 +[PHY] SA init parameters. DL freq 3619200000 UL offset 0 SSB numerology 1 N_RB_DL 106 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] samples_per_subframe 46080/per second 46080000, wCP 43008 +[PHY] Initializing UE vars for gNB TXant 1, UE RXant 1 +[PHY] prs_config configuration NOT found..!! Skipped configuring UE for the PRS reception +[PHY] UE 0 Setting N_TA_offset to 600 samples (factor 1.500000, UL Freq 3619200000, N_RB 106, mu 1) +[PHY] HW: Configuring card 0, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 1, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 2, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 3, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 4, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 5, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 6, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 7, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[HW] # /dev/cpu_dma_latency set to 2 us +sh: 1: cannot create /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu10/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu11/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu12/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu13/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu14/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu15/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu8/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu9/cpufreq/scaling_min_freq: Directory nonexistent +[HW] Can't set cpu frequency +[PHY] Intializing UE Threads for instance 0 (0x56240d307bf0,0x7f4568f04010)... +[UTIL] Creating thread UEthread with affinity -1 and priority 97 +[UTIL] threadCreate for UEthread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_UE_stats with affinity -1 and priority 1 +[HW] sample_rate 46080000.000000 +[HW] Running as client: will connect to a rfsimulator server side +[HW] [RRU] has loaded RFSIMULATOR device. +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_default=134217728" to increase RFsim performance +[UTIL] threadCreate for L1_UE_stats, affinity ffffffff, priority 1 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_max=134217728" to increase RFsim performance +[NR_RRC] create TASK_RRC_NRUE +[UTIL] Creating thread TASK_RRC_NRUE with affinity -1 and priority 50 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_default=134217728" to increase RFsim performance +[UTIL] threadCreate for TASK_RRC_NRUE, affinity ffffffff, priority 50 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_max=134217728" to increase RFsim performance +[ITTI] Created Posix thread TASK_RRC_NRUE +[UTIL] Creating thread TASK_NAS_NRUE with affinity -1 and priority 50 +[HW] Trying to connect to 10.201.1.100:4043 +[HW] Connection to 10.201.1.100:4043 established +[HW] connect() to 10.201.1.100:4043 failed, errno(0) +[UTIL] threadCreate for TASK_NAS_NRUE, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_NAS_NRUE +[SIM] UICC simulation: IMSI=001010000000001, IMEISV=6754567890123413, Ki=fec86ba6eb707ed08905757b1bb44b8f, OPc=C42449363BBAD02B66D16BC975D77CC1, DNN=oai, SST=0x01, SD=0x000001 +[PHY] [SCHED][UE] Check absolute frequency DL 3619200000.000000, UL 3619200000.000000 (RF card 0, oai_exit 0, channel 0, rx_num_channels 1) +[NR_PHY] Starting sync detection +[PHY] [UE thread Synch] Running Initial Synch +[PHY] [UE] nr_synchro_time: Sync source = 0, Peak found at pos 316096, val = 1818308242 (90 dB) avg 51 dB, ffo 0.000000 +[PHY] PSS execution duration 30947 microseconds +[NR_PHY] ffo_pss 0.000000 (0 Hz), ffo_sss 0.000815 (24 Hz), ffo_pss+ffo_sss 0.000815 (24 Hz), nid1: 0, nid2: 0 +[PHY] [UE0] Initial sync: pbch decoded sucessfully, ssb index 0 +[PHY] [UE0] In synch, rx_offset 312676 samples +[PHY] [UE 0] Measured Carrier Frequency 3619200000 Hz (offset 0 Hz) +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] Got synch: hw_slot_offset 27, carrier off 0 Hz, rxgain 0.000000 (DL 3619200000.000000 Hz, UL 3619200000.000000 Hz) +[PHY] UE synchronized! decoded_frame_rx=178 UE->init_sync_frame=1 trashed_frames=6 +[PHY] Resynchronizing RX by 312676 samples +[NR_RRC] SIB1 decoded +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[MAC] Initialization of 4-step contention-based random access procedure +[NR_MAC] PRACH scheduler: Selected RO Frame 327, Slot 19, Symbol 0, Fdm 0 +[PHY] PRACH [UE 0] in frame.slot 327.19, placing PRACH in position 1804, msg1 frequency start 0 (k1 0), preamble_offset 6, first_nonzero_root_idx 0 +[NR_MAC] [UE 0][RAPROC] Got BI RAR subPDU 5 ms +[NR_MAC] [UE 0][RAPROC] Got RAPID RAR subPDU +[NR_MAC] [UE 0][RAPROC][328.7] Found RAR with the intended RAPID 27 +[MAC] received TA command 31 +[PHY] RAR-Msg2 decoded +[NR_MAC] [RAPROC][328.17] RA-Msg3 transmitted +[MAC] [UE 0][RAPROC] Frame 329 : received contention resolution identity: 0x14f8d217bc06 Terminating RA procedure +[MAC] [UE 0][329.10][RAPROC] RA procedure succeeded. CB-RA: Contention Resolution is successful. +[NR_RRC] [UE0][RAPROC] Logical Channel DL-CCCH (SRB0), Received NR_RRCSetup +[RLC] Added srb 1 to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] State = NR_RRC_CONNECTED +[NR_RRC] [UE 0][RAPROC] Logical Channel UL-DCCH (SRB1), Generating RRCSetupComplete (bytes39) +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 42 , buffer 0x7f45280043a0 +[NAS] nr_nas_msg_sim.c:331 derive_kgnb with count= 0 +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 21 , buffer 0x7f45280042a0 +[NR_PHY] RSRP = -41 dBm +[NR_RRC] Received securityModeCommand (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing securityModeCommand +[NR_RRC] Security algorithm is set to nea0 +[NR_RRC] Integrity protection algorithm is set to nia2 +[NR_RRC] rrc_ue_process_securityModeCommand, security mode complete case +[NR_RRC] Receiving from SRB1 (DL-DCCH), encoding securityModeComplete, rrc_TransactionIdentifier: 2 +[NR_RRC] radio Bearer Configuration is present +[NR_RRC] State = NR_RRC_CONNECTED +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] Measurement Configuration is present +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 69 +[NR_RRC] Measurement Object List is present +[NAS] [UE] Received REGISTRATION ACCEPT message +[NR_RRC] Adding measurement object 1 +[NR_RRC] call rrc_mac_config_req +[NAS] This NAS IEI is not handled when extracting list of allowed NSSAI +[NR_RRC] Report Configuration List is present +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[NR_RRC] Received Capability Enquiry (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing UECapabilityEnquiry +CMDLINE: "./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem" "--rfsimulator.serveraddr" "10.201.1.100" "-r" "106" "--numerology" "1" "--band" "78" "-C" "3619200000" "--rfsim" "--sa" "-O" "ran-conf/ue_1.conf" "-E" +[CONFIG] get parameters from libconfig ran-conf/ue_1.conf [LIBCONFIG] Path for include directive set to: ran-conf +[CONFIG] function config_libconfig_init returned 0 +[CONFIG] config module libconfig loaded +[LIBCONFIG] config: 2/2 parameters successfully set, (2 to default value) +[CONFIG] debug flags: 0x00000000 +[LIBCONFIG] log_config: 3/3 parameters successfully set, (2 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (48 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (50 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +log init done +[LIBCONFIG] (root): 31/31 parameters successfully set, (28 to default value) +[LIBCONFIG] (root): 42/42 parameters successfully set, (37 to default value) +[LIBCONFIG] (root): 6/6 parameters successfully set, (5 to default value) +[LIBCONFIG] TTracer: 3/3 parameters successfully set, (3 to default value) +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value) +[LIBCONFIG] loader.ldpc: 2/2 parameters successfully set, (1 to default value) +shlib_path libldpc.so +[LOADER] library libldpc.so successfully loaded +[LIBCONFIG] nas.noS1: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value) +shlib_path libdfts.so +[LOADER] library libdfts.so successfully loaded +[LIBCONFIG] list PRSs not found in config file ran-conf/ue_1.conf +[LIBCONFIG] device.recplay: 8/8 parameters successfully set, (8 to default value) +[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] loader.rfsimulator: 2/2 parameters successfully set, (1 to default value) +shlib_path librfsimulator.so +[LOADER] library librfsimulator.so successfully loaded +[LIBCONFIG] rfsimulator: 9/9 parameters successfully set, (5 to default value) +Initializing random number generator, seed 4281724816858708665 +UE threads created by 116896 +TYPE TO TERMINATE +[LIBCONFIG] uicc0: 10/10 parameters successfully set, (4 to default value) +kgnb : 46 ee a1 ec 97 3e 7b 50 1a 2c 7f 21 ac 11 63 91 79 8b 63 4e 78 49 36 08 2c 7b 46 b1 13 3c 58 44 +kausf:1a a7 b9 a1 84 41 4c 47 c9 55 45 60 e5 13 ab 48 ef 1c 95 c3 4c bb 4b 1e 6d fe 64 89 41 15 29 a5 +kseaf:60 35 b0 63 e1 b0 c9 f1 35 92 ba 40 19 2a 11 9d 13 e2 2e 8c ae ea 2e 91 b5 fc 68 59 a4 a1 50 0 +kamf:57 dd 0 4e d4 24 4b b4 19 3 65 49 c8 ab a5 a4 fd 9d c1 ff b5 29 db 24 ff f7 3d b4 a a 83 77 +knas_int: +64 d8 45 56 69 3e 99 c5 d5 f0 4c d1 d2 ed 83 b2 +mac 57 2b 56 a6 +[NR_RRC] driving kRRCenc, kRRCint and kUPenc from KgNB=46 ee a1 ec 97 3e 7b 50 1a 2c 7f 21 ac 11 63 91 79 8b 63 4e 78 49 36 08 2c 7b 46 b1 13 3c 58 44  +[NR_RRC] securityModeComplete payload: 2c 00 25 0c 24 56 00 00 04 00 00 00 00 00 00 00  + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + +[PHY] [RRC]UE NR Capability encoded, 10 bytes (86 bits) +[NR_RRC] UECapabilityInformation Encoded 106 bits (14 bytes) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NAS] Send NAS_UPLINK_DATA_REQ message(RegistrationComplete) +[NR_PHY] RSRP = -41 dBm +[NAS] Send NAS_UPLINK_DATA_REQ message(PduSessionEstablishRequest) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_RRC] radio Bearer Configuration is present +[PDCP] added drb 1 to UE ID 0 +[SDAP] Default DRB for the created SDAP entity: 1 +[NR_RRC] State = NR_RRC_CONNECTED +[RLC] Added srb 2 to UE with RNTI 0x0 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0x0 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 101 +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.2, mask 255.255.255.0 broadcast address 12.1.1.255 +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 101 +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.2, mask 255.255.255.0 broadcast address 12.1.1.255 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 82381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 82764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 107248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 107735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 353270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 370389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 370878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 674162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 674651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 677098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 677587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 698133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 698621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 719168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 719658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 722103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 722592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 725039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 725527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 728462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 728951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 730420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 730909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 731397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 731886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 733354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 733843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 734333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 734822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 735311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 735800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 736289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 736778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 737267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 737758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 738246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 738736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 739224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 739713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 741341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 741717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 744334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 744709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 745084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 745462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 745849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 747351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 747725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 748092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 748469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 748837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 750345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 750725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 751103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 751486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 751860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 753352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 753716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 754085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 754454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 754821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 756322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 756695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 759351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 759722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 760103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 760478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 760849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 761239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 761613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 763144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 763537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 763910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 764278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 764653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 766159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 766538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 766920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 767311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 767691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 770337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 770712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 775271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 775637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 781301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 781667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 826118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 826496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 826874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 827253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 827644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 851246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 851736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 853203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 853693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 856138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 856627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 857118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 857606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 859074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 859563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 874239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 874728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 878152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 878641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 890381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 890871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 899187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 899676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 908481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 908972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 960336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 960826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 977948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 981371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 981860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1002344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1002706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1031293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1031647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1033140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1033501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1033868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1036100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1036471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1036837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1038335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1038700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1039068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1039430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1039803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1041286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1041653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1042029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1042396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1042759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1045343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1045704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1048267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1048635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1051196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1051568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1051916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1054153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1054532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1054904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1055269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1055652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1057101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1057464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1057826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1059289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1059649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1060014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1060373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1060738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1063316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1063677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1066265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1066636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1066991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1067373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1067738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1084345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1084712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1094403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1094893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1098319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1098808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1109080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1109569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1201046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1201537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1204471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1204960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1205449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1205939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1206428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1206918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1207406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1207896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1208384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1208873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1209363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1209853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1210341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1210831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1211319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1211809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1212299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1212788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1213277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1213766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1214254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1214744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1215234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1215722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1216212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1216700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1217190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1217680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1219147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1219635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1220124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1220616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1223060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1223550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1226485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1226975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1228441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1228931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1229420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1229907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1231169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1231538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 109/216. Current DCI threshold: 54 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1231908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1232274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1232650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1234150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1234533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1234903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1235272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1235634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1237121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1237498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1237861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1238232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1238601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1238971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1240118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1240496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1240868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1241233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1241615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1244284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1244659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1246173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1246554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1246932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1247304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1247681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1249189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1249569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1249938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1250308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1250686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1252176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1252558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1252926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1253302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1253686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1255214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1255598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1255985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1256367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1256747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1258241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1258653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1259021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1259382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1259759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1261260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1261637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1262016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1262393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1262769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1267309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1267682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1270341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1270723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1273345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1273720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1276362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1276730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1279361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1279731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1282350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1282726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1284228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1284606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1290328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1290700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1317358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1317730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1330191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1384302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1384785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1385268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1385750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1388159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1388639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1389120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1389604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1391048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1391529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1394422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1394904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1397314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1397794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1399240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1399721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1400204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1400684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1403093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1403576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1406468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1406949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1409357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1409839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1410319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1410805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1411285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1411767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1414175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1414657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1415140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1415622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1417065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1417548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1420441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1420920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1423330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1423810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1425258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1425739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1426219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1426701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1436338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1436821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1442121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1442600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1444049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1444530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1446456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1446938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1447420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1447900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1448386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1448866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1449347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1449828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1450310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1450793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1451275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1451756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1452237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1452721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1453203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1453685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1454165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1454646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1456093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1456575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1457055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1457538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1459464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1459947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1460429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1460911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1461390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1461874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1462357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1462839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1463320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1463800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1464281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1464766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1465247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1465728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1466210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1466690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1467176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1467657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1468138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1468618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1469100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1469583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1470065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1470547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1472475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1472955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1478306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1478683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1481343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1481711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1484371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1484736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1498268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -59 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -59 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -59 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -60 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1575364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1575736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1584390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1584878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1585369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1585858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1587325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1587813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1589282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1589772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1590260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1590749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1593195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1593684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1596129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1596619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1599065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1599555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1600045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1600534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1603469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1603957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1608360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1608851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1611295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1611784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1612274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1612763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1614231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1614719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1615208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1615698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1617166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1617654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1618144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1618634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1620101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1620589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1621079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1621569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1623035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1623525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1626459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1626951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1627439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1627929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1629395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1629885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1630374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1630863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1632331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1632820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1633310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1633798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1641135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1641625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1643093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1643582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1645049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1645538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1646029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1646517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1648474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1648963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1649452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1649941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1651410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1651898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1652388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1652876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1654345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1654833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1655323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1655811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1657280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1657769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1658258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1658746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1660214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1660704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1661192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1661682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1663150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1663639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1664127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1664616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1666086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1666574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1667063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1667552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1682228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1682717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1685164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1685652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1687120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1687609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1690055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1690545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1693480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1693968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1695437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1695926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1696415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1696903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1697392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1697882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1700328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1700817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1702284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1702773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1703264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1703752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1705220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1705709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -59 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1775348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1775728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1796318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1796707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1799314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1799691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1803029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1803398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1803764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1805260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1805638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1806013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1806388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1806766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1808274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1808644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1809015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1809388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1809763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1812361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1812739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1815336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1815707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1818342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1818722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1821321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1821689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1832304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1832793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1834261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1834749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1835239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1835727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1838174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1838662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1839152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1839643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1841109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1841598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1843066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1843555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1844044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1844533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1847468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1847959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1850404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1850894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1851383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1851872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1853339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1853828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1855296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1855785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1856274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1856764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1859209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1859700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1862144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1862633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1865080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1865568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1870461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1870950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1873396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1873884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1874374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1874864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2041774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2138167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2254008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2254389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2254756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2255133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2255542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2255912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2256271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2256639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2257008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2257389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2257763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2258141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2258499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2258871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2259231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2259590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2259964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2260347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2260725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2261100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2261494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2261861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2262231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2262604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2262977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2263337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2263705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2264061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2264428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2264809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2265175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2265551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2265921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2266326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2266675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2267043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2267422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2267821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2269303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2269675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2270054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2270421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2270794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2271164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2271529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2271901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2272312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2272679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2273055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2273422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2273819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2274184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2274550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2274928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2275304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2275673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2276043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2276420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2276836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2277199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2277569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2277931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2278308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2278685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2279059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2279434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2279806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2280179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2280537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2280890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2281246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2281589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2281946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2282315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2282680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2283046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2283397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2283759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2284124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2284493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2284857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2285203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2285560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2285922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2286288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2286645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2287018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2287390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2287756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2288120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2288476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2288840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2290304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2290676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2291049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2291406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2291762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2292126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2292489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2292860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2293219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2293575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2293945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2294310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2294667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2295033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2295394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2295753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2296114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2296479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2296845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2297200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2297558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2297912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2298277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2298643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2299000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2299359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2299715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2300072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2300422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2300793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2301156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2301513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2301875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2302243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2302618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2302975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2303340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2303691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2305152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2305517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2305883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2306239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2306611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2306993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2307363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2307719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2308095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2308458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2308815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2309184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2309544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2309911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2310262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2310654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2311016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2311378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2311743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2312101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2312468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2312831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2314304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2314664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2316045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2316534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2317022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2317511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2318002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2318491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2318981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2319469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2319958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2320447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2320936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2321426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2321915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2322404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2322893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2323383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2323871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2324362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2324850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2325338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2325828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2326318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2326806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2327296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2327785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2328274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2328764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2329253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2329742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2330231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2330720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2331209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2331699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2332187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2332677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2333165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2333656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2334145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2334634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2335123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2335612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2336100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2336590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2337081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2337569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2338059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2338547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2339036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2339526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2341482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2341971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2343440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2343928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2344416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2344906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2346375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2346863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2347352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2347842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2349310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2349798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2351266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2351756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2353223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2353712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2354202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2354691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2355179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2355668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2356159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2356647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2357138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2357626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2359093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2359582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2361050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2361540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2362028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2362518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2364475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2364963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2365453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2365941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2367410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2367899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2368388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2368876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2370344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2370834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2371322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2371812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2372302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2372791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2373280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2373769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2375238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2375726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2376216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2376704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2378172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2378661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2379150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2379639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2380128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2380618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2381107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2381597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2383063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2383553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2386488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2386978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2387467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2387955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2388444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2388934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2389422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2389912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2390401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2390891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2391380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2391869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2393336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2393825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2394316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2394804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2396272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2396761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2397250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2397739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2399207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2399697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2400185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2400675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2402142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2402632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2403120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2403610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2404098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2404587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2405078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2405567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2408013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2408501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2408991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2409479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2409969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2410458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2410948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2411437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2411926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2412414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2412903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2413394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2413883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2415350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2415839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2416328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2416818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2417307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2417796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2418285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2418775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2419263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2419754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2420242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2420730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2421220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2421710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2422198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2422688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2423177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2423666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2425134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2425623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2426112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2426601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2427091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2427579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2428069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2428557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2429048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2429537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2430026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2430515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2431004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2431492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2431982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2432473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2432961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2433451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2433939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2434428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2434918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2436385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2436874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2437363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2437854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2438342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2438832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2439320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2439808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2440298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2440789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2441277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2441767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2442255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2442744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2443234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2443724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2444213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2444702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2445190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2445679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2446169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2446658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2447148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2447636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2448126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2448615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2449104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2449594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2450083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2450571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2451060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2451551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2452039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2452530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2454483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2454972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2455082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2455296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2455652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2457092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2457451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2457805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2458172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2458528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2458884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2459236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2459597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2459965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2460331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2460688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2461058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2461417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2461771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2462133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2462493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2462863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2463225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2463580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2463933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2464288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2464656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2465045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2465402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2465769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2466139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2466506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2466865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2467234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2467603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2467975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2468334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2468716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2469097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2469445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2469806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2470172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2470544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2470918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2471289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2471649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2472011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2472373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2472743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2473107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2473473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2473829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2474196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2474563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2474911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2475283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2475670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2476019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2476373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2476737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2478205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2478566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2478922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2479286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2479643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2480011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2480366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2480730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2481090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2481439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2481811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2482178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2482546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2482898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2483262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2483615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2483981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2484350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2484703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2485059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2485423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2485794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2486161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2486522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2486882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2487257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2487620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2487984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2488356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2488722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2489083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2489441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2489811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2490177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2490531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2490878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2491233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2491605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2491967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2492329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2492693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2493052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2493416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2493772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2494151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2494518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2494880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2495242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2495612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2495978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2496333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2496702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2497085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2497459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2497808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2499284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2499646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2500002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2500369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2500716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2501079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2501436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2501801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2502160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2502521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2502873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2503237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2503614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2503980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2504351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2504713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2505072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2505436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2505802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2506169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2506536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2506900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2507266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2507626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2508016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2508376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2508743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2509114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2509483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2509842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2510205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2510593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2510973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2511337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2511709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2512068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2512419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2512779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2513129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2513504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2513869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2514226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2514602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2514968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2515339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2515710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2516081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2516440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2516811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2517171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2517537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2517907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2518289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2518645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2519005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2519367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2519732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2520097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2520463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2520831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2521202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2521568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2521933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2522316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2522682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2523046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2523401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2523768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2524127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2524486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2524851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2525217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2525570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2525932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2526303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2526671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2527030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2527391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2527744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2528107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2528459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2528834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2529200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2529557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2529924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2530280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2530641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2531004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2531362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2531718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2532079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2532439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2532804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2533165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2533531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2533913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2534265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2534639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2535003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2535366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2535727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2536090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2536468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2536824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2537190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2537543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2537921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2538280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2538633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2539005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2539380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2539757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2540147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2540513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2540876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2541245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2541608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2541967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2542333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2542695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2543058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2543422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2543778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2544149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2544518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2544891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2545257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2545622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2545991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2546394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2546760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2547127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2547493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2547846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2548211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2548574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2548944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2549312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2549676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2550033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2550396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2550756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2551122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2551478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2551846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2553274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2553633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2553999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2554361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2554715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2555084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2555445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2555806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2556183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2556546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2556946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2557319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2557681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2559000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2559010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2559413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2559901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2560390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2560881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2561369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2561859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2562347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2562837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2563326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2563816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2564305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2564794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2565282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2565771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2566262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2566751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2567241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2567729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2568218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2568707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2569196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2569686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2570175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2570664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2571153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2571643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2572131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2572622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2573110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2573598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2574088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2574578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2575066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2575556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2576045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2576534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2577024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2577513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2578002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2578491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2578980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2579469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2579959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2580447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2580937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2581425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2581916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2582405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2582894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2583383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2583872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2584360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2584850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2585341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2585829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2586319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2586807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2587296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2587786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2588275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2588764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2589253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2589742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2590231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2590722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2591210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2591700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2592188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2592676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2593166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2593657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2594145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2594635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2595123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2595612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2596102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2596592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2597081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2597570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2598058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2598547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2599037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2599526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2601483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2601972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2602462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2602951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2603439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2603928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2604419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2604907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2605398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2605886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2606375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2606864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2607353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2607842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2608331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2608821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2609310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2609800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2610288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2610778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2611266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2611755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2612245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2612735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2613223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2613713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2614201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2614691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2615181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2615670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2616159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2616648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2617136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2617626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2619094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2619582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2620072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2620562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2622029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2622517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2625453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2625942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2626432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2626921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2627410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2627899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2628388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2628878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2630345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2630833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2631323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2631813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2632302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2632792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2633280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2633769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2635238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2635727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2637194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2637682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2638172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2638661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2639151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2639640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2641107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2641596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2643064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2643554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2644042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2644532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2646488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2646977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2648445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2648935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2649423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2649911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2650402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2650892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2651380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2651870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2652358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2652847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2653338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2653827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2654316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2654805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2655293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2655782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2656273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2656761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2657251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2657739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2658229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2658718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2659208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2659697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2660186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2660674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2661163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2661654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2662143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2662633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2663121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2663610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2664099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2664588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2665078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2665567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2666056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2666545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2667035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2667523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2668014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2668502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2668990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2669480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2669970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2670458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2670948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2671437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2671926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2672416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2672905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2673394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2673883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2674372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2674861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2675351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2675839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2676329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2676817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2677308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2677797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2678286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2678775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2679264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2679752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2680242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2680733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2681221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2681711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2682199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2682688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2683178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2683667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2684156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2684645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2685134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2685623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2686114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2686602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2687092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2687580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2688068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2688558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2689049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2689537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2690027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2690515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2692473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2692962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2693450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2693939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2694429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2694918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2695408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2695896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2696386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2696875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2697364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2697853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2698342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2698805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2698824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2699197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2699546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2699912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2700289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2700660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2701027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2701407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2701777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2702151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2702518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2702886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2704361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2704725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2705084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2705453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2705819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2707319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2707693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2708069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2708439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2708818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2710325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2710691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2712179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2712546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2712916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2713283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2713659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2714014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2714382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2714747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2716247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2716626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2718117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2718496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2718861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2719221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2719588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2719956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2720332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2720740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2721099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2721479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2721857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2722223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2722595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2722973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2723328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2723697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2724064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2724427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2724802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2726304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2726674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2727033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2727405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2727787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2729262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2729634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2730002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2730371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2730739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786296/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2787037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2787405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2787772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2788138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2788515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2788886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2789255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2789624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2790001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2790383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2790742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2791117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2791499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2791888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2792248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2792618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2792988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2793367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2793743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2794109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2794474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2794833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2795216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2795587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2795970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2796344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2796714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2797076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2797452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2797831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2798193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2798567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2798932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2799309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2799711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2800084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2800454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2800833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2801204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2801591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2801962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2802328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2802724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2803103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2803481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2803851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2805261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2805752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2806242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2806730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2807220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2807708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2808197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2808688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2809177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2809666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2810155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2810643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2811132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2811623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2812111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2812601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2813089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2813579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2814068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2814558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2815047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2815536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2816024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2816513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2817004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2817493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2817983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2818471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2818960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2819449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2819938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2820428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2820917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2821406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2821895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2822385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2822873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2823364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2823852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2824340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2824830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2825320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2825808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2826298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2826787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2827276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2827766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2828255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2828744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2829233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2829722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2830211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2830701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2831189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2831679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2832167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2832658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2833147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2833636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2834125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2834614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2835102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2835592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2836083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2836571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2837061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2837549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2838038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2838528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2839017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2839506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2839995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2840484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2840973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2841464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2841952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2842442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2842930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2843418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2843908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2844399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2844887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2845377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2845865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2846354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2846844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2847334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2847823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2848312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2848800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2849289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2849779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2850268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2850758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2851246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2851736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2852225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2852714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2853204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2853693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2854181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2854670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2855161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2855649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2856140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2856628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2857117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2857606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2858095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2858584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2859073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2859563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2860052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2860542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2861030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2861520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2862008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2862497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2862987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2863477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2863965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2864455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2864943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2865433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2865923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2866412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2866901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2867390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2867878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2868368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2868858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2869346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2869836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2870324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2870814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2871304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2871793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2872282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2872771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2873259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2873748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2874240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2874728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2875218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2875706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2876195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2876684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2877174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2877663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2878152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2878641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2879130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2879620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2880109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2880599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2881087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2881575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2882065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2882555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2883044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2883534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2884022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2884511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2885001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2885490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2885980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2886469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2886957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2887446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2887936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2888424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2888914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2890382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2890871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2891360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2891849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2892338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2892827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2893318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2893806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2894296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2894784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2895274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2895763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2896252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2896741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2897230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2897719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2898209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2898699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2899187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2899677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2900165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2900653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2901144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2901634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2902122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2902612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2903100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2903589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2904080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2904569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2905058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2905547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2906035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2906524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2907015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2907503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2907993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2908481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2908971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2909460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2909950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2910439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2910928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2911416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2911905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2912396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2912885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2913375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2913863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2914352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2914841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2915330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2915820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2916309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2916798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2917287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2917777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2918265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2918756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2919244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2919732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2920222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2920712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2921200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2921690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2922179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2922668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2923158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2923647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2924136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2924625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2925114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2925603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2926093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2926581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2927071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2927559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2928050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2928539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2929028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2929517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2930006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2930494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2930984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2931475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2931963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2932453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2932941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2933430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2933920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2934409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2934898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2935387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2935876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2936365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2936856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2937344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2937834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2938322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2938810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2939300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2939791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2940279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2940769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2941257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2941746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2942236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2942726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2943213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2943702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2944119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2944150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2944508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2944868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2945247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2945610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2945989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2946364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2946730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2947085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2947447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2947808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2948173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2948535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2948909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2949294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2949656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2950022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2950388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2950751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2951111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2951512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2951867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2952240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2952609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2952989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2953352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2953729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2954103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2954475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2954841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2955200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2955555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2955917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2956284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2956652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2957023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2957396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2957757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2958121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2958509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2958877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2959236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2959598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2959958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2960329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2960696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2961056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2961423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2961798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2962185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2962547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2962920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2963282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2963658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2964027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2964396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2964770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2965148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2965531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2965902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2966271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2966633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2966991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2967354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2967728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2968080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2968442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2968821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2969179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2969541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2969912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2970284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2970652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2971022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2971400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2971764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2972123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2972484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2972858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2973220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2973584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2973946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2974343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2974694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2975052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2975415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2975789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2976160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2976533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2976897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2977271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2977643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2978013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2978377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2978746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2979129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2979493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2979868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2980232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2980599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2980961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2981329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2981703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2982067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2982435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2982806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2983172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2983539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2983903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2984267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2984640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2984999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2985371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2985738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2986103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2986469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2986828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2987206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2987585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2987950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2988315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2988673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2989050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2989415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2989788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2990157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2990554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2990912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2991274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2991644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2992009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2992371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2992737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2993090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2993466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2993832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2994194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2994571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2994948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2995312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2995680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2996051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2996425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2996788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2997186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2997540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2997907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2998269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2998631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2998999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2999367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2999733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3000097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3000484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3000867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3001215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3001585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3001949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3002309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3002680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3003051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3003422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3003785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3004146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3004517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3004875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3005239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3005606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3005978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3006350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3006720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3007090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3007458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3007818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3008187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3008565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3008959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3009314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3009675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3010047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3010413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3010775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3011170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3011542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3011915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3012291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3012655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3013022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3013387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3013755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3014120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3014489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3014865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3015236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3015600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3015955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3016318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3016686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3017056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3017431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3017801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3018198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3018546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3018914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3019291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3019687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3020057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3020431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3020803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3021178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3021548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3021936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3022307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3022669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3023033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3023400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3023772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3024131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3024504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3024861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3069999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3070997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3071995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3072994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3073999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3074997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3075995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3076994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3077993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3078998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3079996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3080995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3081993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3082998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3083996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3084995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3085993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3086998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3087996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3088995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3089993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3090998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3091299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +Press ^C again to trigger immediate shutdown +[NAS] [UE 0] Received NAS_DEREGISTRATION_REQ + \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE1_iperfc.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE1_iperfc.log new file mode 100644 index 000000000..fdabe1e60 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE1_iperfc.log @@ -0,0 +1,5000 @@ +[UE1] [2025-07-19 11:34:39] [ 5] 0.00-1.00 sec 3.77 MBytes 31.7 Mbits/sec 0.228 ms 0/2733 (0%) +[UE1] [2025-07-19 11:34:40] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2593 (0%) +[UE1] [2025-07-19 11:34:41] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2589 (0%) +[UE1] [2025-07-19 11:34:42] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2587 (0%) +[UE1] [2025-07-19 11:34:43] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2591 (0%) +[UE1] [2025-07-19 11:34:44] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2589 (0%) +[UE1] [2025-07-19 11:34:45] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2592 (0%) +[UE1] [2025-07-19 11:34:46] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE1] [2025-07-19 11:34:47] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.309 ms 0/2590 (0%) +[UE1] [2025-07-19 11:34:48] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE1] [2025-07-19 11:34:49] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.125 ms 0/2588 (0%) +[UE1] [2025-07-19 11:34:50] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.118 ms 0/2591 (0%) +[UE1] [2025-07-19 11:34:51] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2591 (0%) +[UE1] [2025-07-19 11:34:52] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2589 (0%) +[UE1] [2025-07-19 11:34:53] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2589 (0%) +[UE1] [2025-07-19 11:34:54] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 11:34:55] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE1] [2025-07-19 11:34:56] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.146 ms 0/2587 (0%) +[UE1] [2025-07-19 11:34:57] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2593 (0%) +[UE1] [2025-07-19 11:34:58] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2589 (0%) +[UE1] [2025-07-19 11:34:59] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2593 (0%) +[UE1] [2025-07-19 11:35:00] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.189 ms 0/2587 (0%) +[UE1] [2025-07-19 11:35:01] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2588 (0%) +[UE1] [2025-07-19 11:35:02] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2592 (0%) +[UE1] [2025-07-19 11:35:03] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:04] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2591 (0%) +[UE1] [2025-07-19 11:35:05] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:06] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.105 ms 0/2592 (0%) +[UE1] [2025-07-19 11:35:07] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:08] [ 5] 29.00-30.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2587 (0%) +[UE1] [2025-07-19 11:35:09] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:10] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.297 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:11] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:12] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.109 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:13] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:14] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:15] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.284 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:16] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:17] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2591 (0%) +[UE1] [2025-07-19 11:35:18] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.126 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:19] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2591 (0%) +[UE1] [2025-07-19 11:35:20] [ 5] 41.00-42.00 sec 3.57 MBytes 30.0 Mbits/sec 0.147 ms 0/2588 (0%) +[UE1] [2025-07-19 11:35:21] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2591 (0%) +[UE1] [2025-07-19 11:35:22] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.395 ms 0/2586 (0%) +[UE1] [2025-07-19 11:35:23] [ 5] 44.00-45.00 sec 3.57 MBytes 29.9 Mbits/sec 0.140 ms 8/2593 (0.31%) +[UE1] [2025-07-19 11:35:24] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.231 ms 0/2587 (0%) +[UE1] [2025-07-19 11:35:25] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2593 (0%) +[UE1] [2025-07-19 11:35:26] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:27] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:28] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:29] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:30] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:31] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.283 ms 0/2591 (0%) +[UE1] [2025-07-19 11:35:32] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.107 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:33] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.264 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:34] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.100 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:35] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:36] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:37] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:38] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2592 (0%) +[UE1] [2025-07-19 11:35:39] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.179 ms 0/2587 (0%) +[UE1] [2025-07-19 11:35:40] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:41] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.200 ms 0/2587 (0%) +[UE1] [2025-07-19 11:35:42] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2591 (0%) +[UE1] [2025-07-19 11:35:43] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:44] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2591 (0%) +[UE1] [2025-07-19 11:35:45] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:46] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:47] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:48] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:49] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2589 (0%) +[UE1] [2025-07-19 11:35:50] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:51] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.187 ms 0/2588 (0%) +[UE1] [2025-07-19 11:35:52] [ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 0.098 ms 0/2587 (0%) +[UE1] [2025-07-19 11:35:53] [ 5] 74.00-75.00 sec 3.58 MBytes 30.1 Mbits/sec 0.126 ms 0/2595 (0%) +[UE1] [2025-07-19 11:35:54] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.111 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:55] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.112 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:56] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2592 (0%) +[UE1] [2025-07-19 11:35:57] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.205 ms 0/2587 (0%) +[UE1] [2025-07-19 11:35:58] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.133 ms 0/2590 (0%) +[UE1] [2025-07-19 11:35:59] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2591 (0%) +[UE1] [2025-07-19 11:36:00] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.068 ms 3/2589 (0.12%) +[UE1] [2025-07-19 11:36:01] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE1] [2025-07-19 11:36:02] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.108 ms 0/2590 (0%) +[UE1] [2025-07-19 11:36:03] [ 5] 84.00-85.00 sec 3.57 MBytes 29.9 Mbits/sec 0.369 ms 0/2584 (0%) +[UE1] [2025-07-19 11:36:04] [ 5] 85.00-86.00 sec 3.56 MBytes 29.9 Mbits/sec 0.646 ms 7/2585 (0.27%) +[UE1] [2025-07-19 11:36:05] [ 5] 86.00-87.00 sec 3.58 MBytes 30.1 Mbits/sec 0.287 ms 0/2596 (0%) +[UE1] [2025-07-19 11:36:06] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2593 (0%) +[UE1] [2025-07-19 11:36:07] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2589 (0%) +[UE1] [2025-07-19 11:36:08] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2591 (0%) +[UE1] [2025-07-19 11:36:09] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.272 ms 0/2588 (0%) +[UE1] [2025-07-19 11:36:10] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2591 (0%) +[UE1] [2025-07-19 11:36:11] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2591 (0%) +[UE1] [2025-07-19 11:36:12] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2589 (0%) +[UE1] [2025-07-19 11:36:13] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2589 (0%) +[UE1] [2025-07-19 11:36:14] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.065 ms 0/2591 (0%) +[UE1] [2025-07-19 11:36:15] [ 5] 96.00-97.00 sec 3.57 MBytes 29.9 Mbits/sec 0.244 ms 0/2584 (0%) +[UE1] [2025-07-19 11:36:16] [ 5] 97.00-98.00 sec 3.58 MBytes 30.1 Mbits/sec 0.192 ms 0/2595 (0%) +[UE1] [2025-07-19 11:36:17] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.106 ms 0/2590 (0%) +[UE1] [2025-07-19 11:36:18] [ 5] 99.00-100.00 sec 3.57 MBytes 30.0 Mbits/sec 0.090 ms 0/2587 (0%) +[UE1] [2025-07-19 11:36:21] [ 5] 0.00-1.00 sec 6.99 MBytes 58.6 Mbits/sec 0.280 ms 0/5062 (0%) +[UE1] [2025-07-19 11:36:22] [ 5] 1.00-2.00 sec 9.05 MBytes 76.0 Mbits/sec 0.097 ms 956/7512 (13%) +[UE1] [2025-07-19 11:36:23] [ 5] 2.00-3.00 sec 9.98 MBytes 83.7 Mbits/sec 0.107 ms 2945/10171 (29%) +[UE1] [2025-07-19 11:36:24] [ 5] 3.00-4.00 sec 10.2 MBytes 85.5 Mbits/sec 0.101 ms 3172/10556 (30%) +[UE1] [2025-07-19 11:36:25] [ 5] 4.00-5.00 sec 10.0 MBytes 83.9 Mbits/sec 0.111 ms 3011/10254 (29%) +[UE1] [2025-07-19 11:36:26] [ 5] 5.00-6.00 sec 10.8 MBytes 90.5 Mbits/sec 0.094 ms 3175/10983 (29%) +[UE1] [2025-07-19 11:36:27] [ 5] 6.00-7.00 sec 9.39 MBytes 78.8 Mbits/sec 0.080 ms 2658/9461 (28%) +[UE1] [2025-07-19 11:36:28] [ 5] 7.00-8.00 sec 10.2 MBytes 85.4 Mbits/sec 0.111 ms 3159/10530 (30%) +[UE1] [2025-07-19 11:36:29] [ 5] 8.00-9.00 sec 10.0 MBytes 84.0 Mbits/sec 0.073 ms 3616/10864 (33%) +[UE1] [2025-07-19 11:36:30] [ 5] 9.00-10.00 sec 10.2 MBytes 85.5 Mbits/sec 0.085 ms 2963/10345 (29%) +[UE1] [2025-07-19 11:36:31] [ 5] 10.00-11.00 sec 10.0 MBytes 83.9 Mbits/sec 0.088 ms 2759/10006 (28%) +[UE1] [2025-07-19 11:36:32] [ 5] 11.00-12.00 sec 10.2 MBytes 85.4 Mbits/sec 0.127 ms 2980/10354 (29%) +[UE1] [2025-07-19 11:36:33] [ 5] 12.00-13.00 sec 10.8 MBytes 90.5 Mbits/sec 0.100 ms 3202/11017 (29%) +[UE1] [2025-07-19 11:36:34] [ 5] 13.00-14.00 sec 9.99 MBytes 83.8 Mbits/sec 0.078 ms 2838/10074 (28%) +[UE1] [2025-07-19 11:36:35] [ 5] 14.00-15.00 sec 10.2 MBytes 85.5 Mbits/sec 0.075 ms 2781/10160 (27%) +[UE1] [2025-07-19 11:36:36] [ 5] 15.00-16.00 sec 9.97 MBytes 83.7 Mbits/sec 0.101 ms 2873/10096 (28%) +[UE1] [2025-07-19 11:36:37] [ 5] 16.00-17.00 sec 10.2 MBytes 85.5 Mbits/sec 0.126 ms 3086/10470 (29%) +[UE1] [2025-07-19 11:36:38] [ 5] 17.00-18.00 sec 9.99 MBytes 83.8 Mbits/sec 0.080 ms 2975/10210 (29%) +[UE1] [2025-07-19 11:36:39] [ 5] 18.00-19.00 sec 10.2 MBytes 85.6 Mbits/sec 0.101 ms 3257/10647 (31%) +[UE1] [2025-07-19 11:36:40] [ 5] 19.00-20.00 sec 9.39 MBytes 78.8 Mbits/sec 0.124 ms 2713/9515 (29%) +[UE1] [2025-07-19 11:36:41] [ 5] 20.00-21.00 sec 9.98 MBytes 83.7 Mbits/sec 0.082 ms 3660/10888 (34%) +[UE1] [2025-07-19 11:36:42] [ 5] 21.00-22.00 sec 10.2 MBytes 85.6 Mbits/sec 0.074 ms 3031/10417 (29%) +[UE1] [2025-07-19 11:36:43] [ 5] 22.00-23.00 sec 10.1 MBytes 84.9 Mbits/sec 0.117 ms 3095/10426 (30%) +[UE1] [2025-07-19 11:36:44] [ 5] 23.00-24.00 sec 9.98 MBytes 83.7 Mbits/sec 0.075 ms 3170/10399 (30%) +[UE1] [2025-07-19 11:36:45] [ 5] 24.00-25.00 sec 10.2 MBytes 85.4 Mbits/sec 0.077 ms 2961/10337 (29%) +[UE1] [2025-07-19 11:36:46] [ 5] 25.00-26.00 sec 9.56 MBytes 80.2 Mbits/sec 0.093 ms 2925/9849 (30%) +[UE1] [2025-07-19 11:36:47] [ 5] 26.00-27.00 sec 10.6 MBytes 89.2 Mbits/sec 0.117 ms 3783/11483 (33%) +[UE1] [2025-07-19 11:36:48] [ 5] 27.00-28.00 sec 9.11 MBytes 76.4 Mbits/sec 0.110 ms 2509/9103 (28%) +[UE1] [2025-07-19 11:36:49] [ 5] 28.00-29.00 sec 9.68 MBytes 81.2 Mbits/sec 0.081 ms 3844/10856 (35%) +[UE1] [2025-07-19 11:36:50] [ 5] 29.00-30.00 sec 10.0 MBytes 83.8 Mbits/sec 0.106 ms 3261/10499 (31%) +[UE1] [2025-07-19 11:36:51] [ 5] 30.00-31.00 sec 10.8 MBytes 90.5 Mbits/sec 0.084 ms 3184/10996 (29%) +[UE1] [2025-07-19 11:36:52] [ 5] 31.00-32.00 sec 10.2 MBytes 85.5 Mbits/sec 0.075 ms 2729/10111 (27%) +[UE1] [2025-07-19 11:36:53] [ 5] 32.00-33.00 sec 10.0 MBytes 83.8 Mbits/sec 0.076 ms 2910/10148 (29%) +[UE1] [2025-07-19 11:36:54] [ 5] 33.00-34.00 sec 10.2 MBytes 85.5 Mbits/sec 0.093 ms 3113/10495 (30%) +[UE1] [2025-07-19 11:36:55] [ 5] 34.00-35.00 sec 9.99 MBytes 83.8 Mbits/sec 0.087 ms 2806/10039 (28%) +[UE1] [2025-07-19 11:36:56] [ 5] 35.00-36.00 sec 10.2 MBytes 85.4 Mbits/sec 0.085 ms 3061/10433 (29%) +[UE1] [2025-07-19 11:36:57] [ 5] 36.00-37.00 sec 10.0 MBytes 83.9 Mbits/sec 0.080 ms 2962/10205 (29%) +[UE1] [2025-07-19 11:36:58] [ 5] 37.00-38.00 sec 10.8 MBytes 90.4 Mbits/sec 0.088 ms 3214/11021 (29%) +[UE1] [2025-07-19 11:36:59] [ 5] 38.00-39.00 sec 10.2 MBytes 85.5 Mbits/sec 0.121 ms 3007/10390 (29%) +[UE1] [2025-07-19 11:37:00] [ 5] 39.00-40.00 sec 8.60 MBytes 72.1 Mbits/sec 0.093 ms 2462/8689 (28%) +[UE1] [2025-07-19 11:37:01] [ 5] 40.00-41.00 sec 10.2 MBytes 85.6 Mbits/sec 0.108 ms 4245/11631 (36%) +[UE1] [2025-07-19 11:37:02] [ 5] 41.00-42.00 sec 10.0 MBytes 83.9 Mbits/sec 0.124 ms 3258/10501 (31%) +[UE1] [2025-07-19 11:37:03] [ 5] 42.00-43.00 sec 10.2 MBytes 85.5 Mbits/sec 0.130 ms 2876/10255 (28%) +[UE1] [2025-07-19 11:37:04] [ 5] 43.00-44.00 sec 10.2 MBytes 85.4 Mbits/sec 0.122 ms 3237/10608 (31%) +[UE1] [2025-07-19 11:37:05] [ 5] 44.00-45.00 sec 9.98 MBytes 83.7 Mbits/sec 0.087 ms 3004/10233 (29%) +[UE1] [2025-07-19 11:37:06] [ 5] 45.00-46.00 sec 10.2 MBytes 85.6 Mbits/sec 0.118 ms 3048/10434 (29%) +[UE1] [2025-07-19 11:37:07] [ 5] 46.00-47.00 sec 10.0 MBytes 83.8 Mbits/sec 0.079 ms 2913/10151 (29%) +[UE1] [2025-07-19 11:37:08] [ 5] 47.00-48.00 sec 10.2 MBytes 85.5 Mbits/sec 0.098 ms 3159/10541 (30%) +[UE1] [2025-07-19 11:37:09] [ 5] 48.00-49.00 sec 9.99 MBytes 83.7 Mbits/sec 0.105 ms 3022/10253 (29%) +[UE1] [2025-07-19 11:37:10] [ 5] 49.00-50.00 sec 10.0 MBytes 83.9 Mbits/sec 0.080 ms 2834/10074 (28%) +[UE1] [2025-07-19 11:37:11] [ 5] 50.00-51.00 sec 10.2 MBytes 85.4 Mbits/sec 0.126 ms 2991/10363 (29%) +[UE1] [2025-07-19 11:37:12] [ 5] 51.00-52.00 sec 9.40 MBytes 78.8 Mbits/sec 0.086 ms 2774/9578 (29%) +[UE1] [2025-07-19 11:37:13] [ 5] 52.00-53.00 sec 10.2 MBytes 85.4 Mbits/sec 0.124 ms 4188/11564 (36%) +[UE1] [2025-07-19 11:37:14] [ 5] 53.00-54.00 sec 10.0 MBytes 83.9 Mbits/sec 0.094 ms 3062/10303 (30%) +[UE1] [2025-07-19 11:37:15] [ 5] 54.00-55.00 sec 10.2 MBytes 85.5 Mbits/sec 0.097 ms 2974/10357 (29%) +[UE1] [2025-07-19 11:37:16] [ 5] 55.00-56.00 sec 10.0 MBytes 83.9 Mbits/sec 0.081 ms 3018/10260 (29%) +[UE1] [2025-07-19 11:37:17] [ 5] 56.00-57.00 sec 10.2 MBytes 85.6 Mbits/sec 0.082 ms 2930/10316 (28%) +[UE1] [2025-07-19 11:37:18] [ 5] 57.00-58.00 sec 9.98 MBytes 83.7 Mbits/sec 0.078 ms 3103/10332 (30%) +[UE1] [2025-07-19 11:37:19] [ 5] 58.00-59.00 sec 10.2 MBytes 85.5 Mbits/sec 0.089 ms 3029/10407 (29%) +[UE1] [2025-07-19 11:37:20] [ 5] 59.00-60.00 sec 9.38 MBytes 78.7 Mbits/sec 0.068 ms 2802/9597 (29%) +[UE1] [2025-07-19 11:37:21] [ 5] 60.00-61.00 sec 10.0 MBytes 83.8 Mbits/sec 0.088 ms 3500/10738 (33%) +[UE1] [2025-07-19 11:37:22] [ 5] 61.00-62.00 sec 10.8 MBytes 90.6 Mbits/sec 0.101 ms 3209/11029 (29%) +[UE1] [2025-07-19 11:37:23] [ 5] 62.00-63.00 sec 9.39 MBytes 78.8 Mbits/sec 0.115 ms 2590/9393 (28%) +[UE1] [2025-07-19 11:37:24] [ 5] 63.00-64.00 sec 10.2 MBytes 85.4 Mbits/sec 0.090 ms 3451/10822 (32%) +[UE1] [2025-07-19 11:37:25] [ 5] 64.00-65.00 sec 10.8 MBytes 90.6 Mbits/sec 0.091 ms 3365/11186 (30%) +[UE1] [2025-07-19 11:37:26] [ 5] 65.00-66.00 sec 9.39 MBytes 78.7 Mbits/sec 0.109 ms 2585/9382 (28%) +[UE1] [2025-07-19 11:37:27] [ 5] 66.00-67.00 sec 10.8 MBytes 90.5 Mbits/sec 0.100 ms 3384/11199 (30%) +[UE1] [2025-07-19 11:37:28] [ 5] 67.00-68.00 sec 10.0 MBytes 83.9 Mbits/sec 0.102 ms 2850/10093 (28%) +[UE1] [2025-07-19 11:37:29] [ 5] 68.00-69.00 sec 10.2 MBytes 85.5 Mbits/sec 0.111 ms 2863/10242 (28%) +[UE1] [2025-07-19 11:37:30] [ 5] 69.00-70.00 sec 9.98 MBytes 83.7 Mbits/sec 0.079 ms 2899/10125 (29%) +[UE1] [2025-07-19 11:37:31] [ 5] 70.00-71.00 sec 9.41 MBytes 79.0 Mbits/sec 0.094 ms 2701/9517 (28%) +[UE1] [2025-07-19 11:37:32] [ 5] 71.00-72.00 sec 10.2 MBytes 85.6 Mbits/sec 0.079 ms 3867/11253 (34%) +[UE1] [2025-07-19 11:37:33] [ 5] 72.00-73.00 sec 9.98 MBytes 83.8 Mbits/sec 0.075 ms 3123/10352 (30%) +[UE1] [2025-07-19 11:37:34] [ 5] 73.00-74.00 sec 10.2 MBytes 85.5 Mbits/sec 0.125 ms 3042/10420 (29%) +[UE1] [2025-07-19 11:37:35] [ 5] 74.00-75.00 sec 9.98 MBytes 83.7 Mbits/sec 0.098 ms 3218/10447 (31%) +[UE1] [2025-07-19 11:37:36] [ 5] 75.00-76.00 sec 10.2 MBytes 85.6 Mbits/sec 0.088 ms 3205/10591 (30%) +[UE1] [2025-07-19 11:37:37] [ 5] 76.00-77.00 sec 10.0 MBytes 83.8 Mbits/sec 0.084 ms 2851/10089 (28%) +[UE1] [2025-07-19 11:37:38] [ 5] 77.00-78.00 sec 10.2 MBytes 85.5 Mbits/sec 0.085 ms 3040/10422 (29%) +[UE1] [2025-07-19 11:37:39] [ 5] 78.00-79.00 sec 10.0 MBytes 83.8 Mbits/sec 0.083 ms 3079/10317 (30%) +[UE1] [2025-07-19 11:37:40] [ 5] 79.00-80.00 sec 10.2 MBytes 85.4 Mbits/sec 0.113 ms 3043/10418 (29%) +[UE1] [2025-07-19 11:37:41] [ 5] 80.00-81.00 sec 9.97 MBytes 83.7 Mbits/sec 0.116 ms 2998/10221 (29%) +[UE1] [2025-07-19 11:37:42] [ 5] 81.00-82.00 sec 10.2 MBytes 85.6 Mbits/sec 0.088 ms 2954/10343 (29%) +[UE1] [2025-07-19 11:37:43] [ 5] 82.00-83.00 sec 10.0 MBytes 83.9 Mbits/sec 0.112 ms 2957/10200 (29%) +[UE1] [2025-07-19 11:37:44] [ 5] 83.00-84.00 sec 10.2 MBytes 85.4 Mbits/sec 0.096 ms 3075/10446 (29%) +[UE1] [2025-07-19 11:37:45] [ 5] 84.00-85.00 sec 9.99 MBytes 83.8 Mbits/sec 0.070 ms 2871/10105 (28%) +[UE1] [2025-07-19 11:37:46] [ 5] 85.00-86.00 sec 10.2 MBytes 85.5 Mbits/sec 0.099 ms 3302/10684 (31%) +[UE1] [2025-07-19 11:37:47] [ 5] 86.00-87.00 sec 10.7 MBytes 89.6 Mbits/sec 0.121 ms 3165/10902 (29%) +[UE1] [2025-07-19 11:37:48] [ 5] 87.00-88.00 sec 8.73 MBytes 73.2 Mbits/sec 0.082 ms 2341/8660 (27%) +[UE1] [2025-07-19 11:37:49] [ 5] 88.00-89.00 sec 10.2 MBytes 85.4 Mbits/sec 0.077 ms 4079/11450 (36%) +[UE1] [2025-07-19 11:37:50] [ 5] 89.00-90.00 sec 9.98 MBytes 83.7 Mbits/sec 0.084 ms 2918/10147 (29%) +[UE1] [2025-07-19 11:37:51] [ 5] 90.00-91.00 sec 10.8 MBytes 90.6 Mbits/sec 0.077 ms 3140/10962 (29%) +[UE1] [2025-07-19 11:37:52] [ 5] 91.00-92.00 sec 9.39 MBytes 78.8 Mbits/sec 0.070 ms 2772/9574 (29%) +[UE1] [2025-07-19 11:37:53] [ 5] 92.00-93.00 sec 10.8 MBytes 90.5 Mbits/sec 0.083 ms 3321/11133 (30%) +[UE1] [2025-07-19 11:37:54] [ 5] 93.00-94.00 sec 9.39 MBytes 78.8 Mbits/sec 0.117 ms 2754/9555 (29%) +[UE1] [2025-07-19 11:37:55] [ 5] 94.00-95.00 sec 10.7 MBytes 89.6 Mbits/sec 0.091 ms 3437/11175 (31%) +[UE1] [2025-07-19 11:37:56] [ 5] 95.00-96.00 sec 9.49 MBytes 79.6 Mbits/sec 0.080 ms 2711/9585 (28%) +[UE1] [2025-07-19 11:37:57] [ 5] 96.00-97.00 sec 10.2 MBytes 85.5 Mbits/sec 0.092 ms 3147/10529 (30%) +[UE1] [2025-07-19 11:37:58] [ 5] 97.00-98.00 sec 9.39 MBytes 78.7 Mbits/sec 0.072 ms 2968/9766 (30%) +[UE1] [2025-07-19 11:37:59] [ 5] 98.00-99.00 sec 10.2 MBytes 85.6 Mbits/sec 0.068 ms 3475/10863 (32%) +[UE1] [2025-07-19 11:38:01] [ 5] 99.00-100.00 sec 9.99 MBytes 83.8 Mbits/sec 0.075 ms 3765/11001 (34%) +[UE1] [2025-07-19 11:38:02] [ 5] 0.00-1.00 sec 3.74 MBytes 31.4 Mbits/sec 0.191 ms 0/2707 (0%) +[UE1] [2025-07-19 11:38:03] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.126 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:04] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:05] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:06] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:07] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2591 (0%) +[UE1] [2025-07-19 11:38:08] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.211 ms 0/2588 (0%) +[UE1] [2025-07-19 11:38:09] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:10] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:11] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.095 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:12] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.104 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:13] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:14] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.157 ms 0/2586 (0%) +[UE1] [2025-07-19 11:38:15] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2593 (0%) +[UE1] [2025-07-19 11:38:16] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2591 (0%) +[UE1] [2025-07-19 11:38:17] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.093 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:18] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.126 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:19] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.355 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:20] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.154 ms 0/2587 (0%) +[UE1] [2025-07-19 11:38:21] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:22] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.118 ms 0/2592 (0%) +[UE1] [2025-07-19 11:38:23] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.289 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:24] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:25] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:26] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2591 (0%) +[UE1] [2025-07-19 11:38:27] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:28] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.553 ms 0/2586 (0%) +[UE1] [2025-07-19 11:38:29] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2593 (0%) +[UE1] [2025-07-19 11:38:30] [ 5] 28.00-29.00 sec 3.57 MBytes 30.0 Mbits/sec 0.213 ms 0/2587 (0%) +[UE1] [2025-07-19 11:38:31] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2593 (0%) +[UE1] [2025-07-19 11:38:32] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:33] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:34] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.116 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:35] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:36] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:37] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:38] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2592 (0%) +[UE1] [2025-07-19 11:38:39] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.176 ms 0/2588 (0%) +[UE1] [2025-07-19 11:38:40] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.236 ms 0/2588 (0%) +[UE1] [2025-07-19 11:38:41] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2591 (0%) +[UE1] [2025-07-19 11:38:42] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:43] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.138 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:44] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:45] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:46] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.116 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:47] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:48] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:49] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2591 (0%) +[UE1] [2025-07-19 11:38:50] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:51] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:52] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:53] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:54] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:55] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:56] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2589 (0%) +[UE1] [2025-07-19 11:38:57] [ 5] 55.00-56.00 sec 3.57 MBytes 30.0 Mbits/sec 0.316 ms 0/2587 (0%) +[UE1] [2025-07-19 11:38:58] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 11:38:59] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2592 (0%) +[UE1] [2025-07-19 11:39:00] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:01] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2591 (0%) +[UE1] [2025-07-19 11:39:02] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2589 (0%) +[UE1] [2025-07-19 11:39:03] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:04] [ 5] 62.00-63.00 sec 3.57 MBytes 29.9 Mbits/sec 0.307 ms 0/2582 (0%) +[UE1] [2025-07-19 11:39:05] [ 5] 63.00-64.00 sec 3.59 MBytes 30.1 Mbits/sec 0.207 ms 0/2597 (0%) +[UE1] [2025-07-19 11:39:06] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2592 (0%) +[UE1] [2025-07-19 11:39:07] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.232 ms 0/2588 (0%) +[UE1] [2025-07-19 11:39:08] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE1] [2025-07-19 11:39:09] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.345 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:10] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.202 ms 0/2588 (0%) +[UE1] [2025-07-19 11:39:11] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2592 (0%) +[UE1] [2025-07-19 11:39:12] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:13] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:14] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE1] [2025-07-19 11:39:15] [ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 0.218 ms 0/2588 (0%) +[UE1] [2025-07-19 11:39:16] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2592 (0%) +[UE1] [2025-07-19 11:39:17] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.409 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:18] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.286 ms 0/2589 (0%) +[UE1] [2025-07-19 11:39:19] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:20] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2591 (0%) +[UE1] [2025-07-19 11:39:21] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2591 (0%) +[UE1] [2025-07-19 11:39:22] [ 5] 80.00-81.00 sec 3.57 MBytes 29.9 Mbits/sec 0.135 ms 0/2582 (0%) +[UE1] [2025-07-19 11:39:23] [ 5] 81.00-82.00 sec 3.58 MBytes 30.1 Mbits/sec 0.134 ms 0/2595 (0%) +[UE1] [2025-07-19 11:39:24] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.203 ms 0/2587 (0%) +[UE1] [2025-07-19 11:39:25] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2593 (0%) +[UE1] [2025-07-19 11:39:26] [ 5] 84.00-85.00 sec 3.57 MBytes 30.0 Mbits/sec 0.159 ms 0/2588 (0%) +[UE1] [2025-07-19 11:39:27] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:28] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2591 (0%) +[UE1] [2025-07-19 11:39:29] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.296 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:30] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:31] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2589 (0%) +[UE1] [2025-07-19 11:39:32] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:33] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.311 ms 0/2587 (0%) +[UE1] [2025-07-19 11:39:34] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2594 (0%) +[UE1] [2025-07-19 11:39:35] [ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2588 (0%) +[UE1] [2025-07-19 11:39:36] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.113 ms 0/2588 (0%) +[UE1] [2025-07-19 11:39:37] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2592 (0%) +[UE1] [2025-07-19 11:39:38] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 11:39:39] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.130 ms 0/2587 (0%) +[UE1] [2025-07-19 11:39:40] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2592 (0%) +[UE1] [2025-07-19 11:39:41] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.363 ms 0/2591 (0%) +[UE1] [2025-07-19 11:39:44] [ 5] 0.00-1.00 sec 6.62 MBytes 55.6 Mbits/sec 0.113 ms 0/4797 (0%) +[UE1] [2025-07-19 11:39:44] [ 5] 1.00-2.00 sec 9.35 MBytes 78.4 Mbits/sec 0.073 ms 1182/7952 (15%) +[UE1] [2025-07-19 11:39:45] [ 5] 2.00-3.00 sec 10.0 MBytes 83.9 Mbits/sec 0.110 ms 3159/10399 (30%) +[UE1] [2025-07-19 11:39:46] [ 5] 3.00-4.00 sec 10.2 MBytes 85.5 Mbits/sec 0.080 ms 2929/10313 (28%) +[UE1] [2025-07-19 11:39:47] [ 5] 4.00-5.00 sec 9.99 MBytes 83.8 Mbits/sec 0.106 ms 2957/10188 (29%) +[UE1] [2025-07-19 11:39:48] [ 5] 5.00-6.00 sec 9.39 MBytes 78.7 Mbits/sec 0.074 ms 2958/9756 (30%) +[UE1] [2025-07-19 11:39:49] [ 5] 6.00-7.00 sec 10.6 MBytes 89.3 Mbits/sec 0.171 ms 3442/11148 (31%) +[UE1] [2025-07-19 11:39:50] [ 5] 7.00-8.00 sec 10.3 MBytes 86.8 Mbits/sec 0.084 ms 3037/10530 (29%) +[UE1] [2025-07-19 11:39:51] [ 5] 8.00-9.00 sec 9.99 MBytes 83.8 Mbits/sec 0.106 ms 2925/10158 (29%) +[UE1] [2025-07-19 11:39:52] [ 5] 9.00-10.00 sec 10.2 MBytes 85.6 Mbits/sec 0.093 ms 2841/10227 (28%) +[UE1] [2025-07-19 11:39:53] [ 5] 10.00-11.00 sec 8.00 MBytes 67.1 Mbits/sec 0.100 ms 2585/8379 (31%) +[UE1] [2025-07-19 11:39:54] [ 5] 11.00-12.00 sec 10.2 MBytes 85.4 Mbits/sec 0.100 ms 5101/12472 (41%) +[UE1] [2025-07-19 11:39:55] [ 5] 12.00-13.00 sec 9.40 MBytes 78.9 Mbits/sec 0.104 ms 2911/9718 (30%) +[UE1] [2025-07-19 11:39:56] [ 5] 13.00-14.00 sec 10.0 MBytes 83.9 Mbits/sec 0.096 ms 3172/10411 (30%) +[UE1] [2025-07-19 11:39:57] [ 5] 14.00-15.00 sec 10.2 MBytes 85.5 Mbits/sec 0.088 ms 3260/10641 (31%) +[UE1] [2025-07-19 11:39:58] [ 5] 15.00-16.00 sec 9.98 MBytes 83.7 Mbits/sec 0.079 ms 3183/10412 (31%) +[UE1] [2025-07-19 11:39:59] [ 5] 16.00-17.00 sec 9.59 MBytes 80.5 Mbits/sec 0.122 ms 3084/10030 (31%) +[UE1] [2025-07-19 11:40:00] [ 5] 17.00-18.00 sec 9.39 MBytes 78.8 Mbits/sec 0.082 ms 3545/10346 (34%) +[UE1] [2025-07-19 11:40:01] [ 5] 18.00-19.00 sec 10.0 MBytes 83.9 Mbits/sec 0.097 ms 3541/10780 (33%) +[UE1] [2025-07-19 11:40:02] [ 5] 19.00-20.00 sec 10.2 MBytes 85.6 Mbits/sec 0.070 ms 3076/10468 (29%) +[UE1] [2025-07-19 11:40:03] [ 5] 20.00-21.00 sec 9.99 MBytes 83.8 Mbits/sec 0.122 ms 2984/10216 (29%) +[UE1] [2025-07-19 11:40:04] [ 5] 21.00-22.00 sec 8.78 MBytes 73.6 Mbits/sec 0.104 ms 2729/9087 (30%) +[UE1] [2025-07-19 11:40:05] [ 5] 22.00-23.00 sec 10.8 MBytes 90.6 Mbits/sec 0.097 ms 4281/12101 (35%) +[UE1] [2025-07-19 11:40:06] [ 5] 23.00-24.00 sec 9.41 MBytes 78.9 Mbits/sec 1.656 ms 2822/9635 (29%) +[UE1] [2025-07-19 11:40:07] [ 5] 24.00-25.00 sec 9.96 MBytes 83.6 Mbits/sec 0.087 ms 2990/10205 (29%) +[UE1] [2025-07-19 11:40:08] [ 5] 25.00-26.00 sec 10.2 MBytes 85.5 Mbits/sec 0.097 ms 3296/10678 (31%) +[UE1] [2025-07-19 11:40:09] [ 5] 26.00-27.00 sec 9.39 MBytes 78.7 Mbits/sec 0.092 ms 2912/9709 (30%) +[UE1] [2025-07-19 11:40:10] [ 5] 27.00-28.00 sec 10.2 MBytes 85.5 Mbits/sec 0.084 ms 3900/11281 (35%) +[UE1] [2025-07-19 11:40:11] [ 5] 28.00-29.00 sec 10.0 MBytes 83.9 Mbits/sec 0.075 ms 2953/10196 (29%) +[UE1] [2025-07-19 11:40:12] [ 5] 29.00-30.00 sec 10.0 MBytes 83.9 Mbits/sec 0.122 ms 3128/10371 (30%) +[UE1] [2025-07-19 11:40:13] [ 5] 30.00-31.00 sec 10.2 MBytes 85.6 Mbits/sec 0.094 ms 2998/10384 (29%) +[UE1] [2025-07-19 11:40:14] [ 5] 31.00-32.00 sec 9.99 MBytes 83.8 Mbits/sec 0.082 ms 2996/10227 (29%) +[UE1] [2025-07-19 11:40:15] [ 5] 32.00-33.00 sec 10.2 MBytes 85.4 Mbits/sec 0.111 ms 2941/10312 (29%) +[UE1] [2025-07-19 11:40:16] [ 5] 33.00-34.00 sec 10.8 MBytes 90.8 Mbits/sec 0.080 ms 3144/10977 (29%) +[UE1] [2025-07-19 11:40:17] [ 5] 34.00-35.00 sec 9.37 MBytes 78.6 Mbits/sec 0.093 ms 2750/9537 (29%) +[UE1] [2025-07-19 11:40:18] [ 5] 35.00-36.00 sec 10.2 MBytes 85.5 Mbits/sec 0.104 ms 3167/10544 (30%) +[UE1] [2025-07-19 11:40:19] [ 5] 36.00-37.00 sec 10.0 MBytes 83.8 Mbits/sec 0.082 ms 3045/10283 (30%) +[UE1] [2025-07-19 11:40:20] [ 5] 37.00-38.00 sec 10.2 MBytes 85.6 Mbits/sec 0.097 ms 3143/10530 (30%) +[UE1] [2025-07-19 11:40:21] [ 5] 38.00-39.00 sec 9.39 MBytes 78.8 Mbits/sec 0.121 ms 2883/9682 (30%) +[UE1] [2025-07-19 11:40:22] [ 5] 39.00-40.00 sec 10.0 MBytes 83.9 Mbits/sec 0.075 ms 4106/11344 (36%) +[UE1] [2025-07-19 11:40:23] [ 5] 40.00-41.00 sec 10.2 MBytes 85.4 Mbits/sec 0.075 ms 2999/10368 (29%) +[UE1] [2025-07-19 11:40:24] [ 5] 41.00-42.00 sec 9.99 MBytes 83.8 Mbits/sec 0.084 ms 2913/10147 (29%) +[UE1] [2025-07-19 11:40:25] [ 5] 42.00-43.00 sec 10.2 MBytes 85.5 Mbits/sec 0.075 ms 2818/10200 (28%) +[UE1] [2025-07-19 11:40:26] [ 5] 43.00-44.00 sec 10.0 MBytes 84.0 Mbits/sec 0.099 ms 3164/10413 (30%) +[UE1] [2025-07-19 11:40:27] [ 5] 44.00-45.00 sec 10.2 MBytes 85.4 Mbits/sec 0.085 ms 3258/10633 (31%) +[UE1] [2025-07-19 11:40:28] [ 5] 45.00-46.00 sec 9.39 MBytes 78.8 Mbits/sec 0.084 ms 2858/9657 (30%) +[UE1] [2025-07-19 11:40:29] [ 5] 46.00-47.00 sec 10.0 MBytes 83.8 Mbits/sec 0.093 ms 3329/10569 (31%) +[UE1] [2025-07-19 11:40:30] [ 5] 47.00-48.00 sec 9.40 MBytes 78.8 Mbits/sec 0.150 ms 2868/9673 (30%) +[UE1] [2025-07-19 11:40:31] [ 5] 48.00-49.00 sec 10.2 MBytes 85.4 Mbits/sec 0.081 ms 3804/11179 (34%) +[UE1] [2025-07-19 11:40:32] [ 5] 49.00-50.00 sec 9.99 MBytes 83.8 Mbits/sec 0.107 ms 3197/10432 (31%) +[UE1] [2025-07-19 11:40:33] [ 5] 50.00-51.00 sec 10.2 MBytes 85.5 Mbits/sec 0.088 ms 3006/10383 (29%) +[UE1] [2025-07-19 11:40:34] [ 5] 51.00-52.00 sec 8.80 MBytes 73.8 Mbits/sec 0.107 ms 2866/9237 (31%) +[UE1] [2025-07-19 11:40:35] [ 5] 52.00-53.00 sec 10.0 MBytes 83.8 Mbits/sec 0.102 ms 4158/11396 (36%) +[UE1] [2025-07-19 11:40:36] [ 5] 53.00-54.00 sec 10.2 MBytes 85.6 Mbits/sec 0.102 ms 3067/10453 (29%) +[UE1] [2025-07-19 11:40:37] [ 5] 54.00-55.00 sec 10.0 MBytes 83.8 Mbits/sec 0.109 ms 3016/10254 (29%) +[UE1] [2025-07-19 11:40:38] [ 5] 55.00-56.00 sec 10.2 MBytes 85.5 Mbits/sec 0.073 ms 3070/10449 (29%) +[UE1] [2025-07-19 11:40:39] [ 5] 56.00-57.00 sec 9.97 MBytes 83.7 Mbits/sec 0.102 ms 3234/10457 (31%) +[UE1] [2025-07-19 11:40:40] [ 5] 57.00-58.00 sec 9.40 MBytes 78.9 Mbits/sec 0.102 ms 2911/9718 (30%) +[UE1] [2025-07-19 11:40:41] [ 5] 58.00-59.00 sec 10.2 MBytes 85.6 Mbits/sec 0.089 ms 3656/11043 (33%) +[UE1] [2025-07-19 11:40:42] [ 5] 59.00-60.00 sec 10.0 MBytes 83.8 Mbits/sec 0.091 ms 3133/10371 (30%) +[UE1] [2025-07-19 11:40:43] [ 5] 60.00-61.00 sec 10.2 MBytes 85.4 Mbits/sec 0.084 ms 3018/10390 (29%) +[UE1] [2025-07-19 11:40:44] [ 5] 61.00-62.00 sec 10.0 MBytes 83.9 Mbits/sec 0.119 ms 3083/10323 (30%) +[UE1] [2025-07-19 11:40:45] [ 5] 62.00-63.00 sec 10.2 MBytes 85.5 Mbits/sec 0.099 ms 3064/10444 (29%) +[UE1] [2025-07-19 11:40:46] [ 5] 63.00-64.00 sec 9.98 MBytes 83.7 Mbits/sec 0.074 ms 3219/10446 (31%) +[UE1] [2025-07-19 11:40:47] [ 5] 64.00-65.00 sec 9.40 MBytes 78.9 Mbits/sec 0.074 ms 2827/9635 (29%) +[UE1] [2025-07-19 11:40:48] [ 5] 65.00-66.00 sec 10.2 MBytes 85.5 Mbits/sec 0.085 ms 3162/10544 (30%) +[UE1] [2025-07-19 11:40:49] [ 5] 66.00-67.00 sec 10.0 MBytes 83.9 Mbits/sec 0.080 ms 3216/10463 (31%) +[UE1] [2025-07-19 11:40:50] [ 5] 67.00-68.00 sec 10.2 MBytes 85.5 Mbits/sec 0.117 ms 3340/10717 (31%) +[UE1] [2025-07-19 11:40:51] [ 5] 68.00-69.00 sec 10.2 MBytes 85.5 Mbits/sec 0.091 ms 3212/10590 (30%) +[UE1] [2025-07-19 11:40:52] [ 5] 69.00-70.00 sec 9.98 MBytes 83.7 Mbits/sec 0.107 ms 2916/10140 (29%) +[UE1] [2025-07-19 11:40:53] [ 5] 70.00-71.00 sec 9.40 MBytes 78.9 Mbits/sec 0.097 ms 2962/9769 (30%) +[UE1] [2025-07-19 11:40:54] [ 5] 71.00-72.00 sec 10.2 MBytes 85.6 Mbits/sec 0.078 ms 3273/10659 (31%) +[UE1] [2025-07-19 11:40:55] [ 5] 72.00-73.00 sec 10.0 MBytes 83.9 Mbits/sec 0.105 ms 3016/10255 (29%) +[UE1] [2025-07-19 11:40:56] [ 5] 73.00-74.00 sec 10.2 MBytes 85.4 Mbits/sec 0.119 ms 3030/10401 (29%) +[UE1] [2025-07-19 11:40:57] [ 5] 74.00-75.00 sec 9.40 MBytes 78.8 Mbits/sec 0.075 ms 3395/10199 (33%) +[UE1] [2025-07-19 11:40:58] [ 5] 75.00-76.00 sec 9.98 MBytes 83.7 Mbits/sec 0.082 ms 3099/10326 (30%) +[UE1] [2025-07-19 11:40:59] [ 5] 76.00-77.00 sec 10.2 MBytes 85.5 Mbits/sec 0.085 ms 3132/10513 (30%) +[UE1] [2025-07-19 11:41:00] [ 5] 77.00-78.00 sec 9.42 MBytes 79.0 Mbits/sec 0.031 ms 2779/9600 (29%) +[UE1] [2025-07-19 11:41:01] [ 5] 78.00-79.00 sec 9.99 MBytes 83.8 Mbits/sec 0.084 ms 3475/10706 (32%) +[UE1] [2025-07-19 11:41:02] [ 5] 79.00-80.00 sec 10.2 MBytes 85.4 Mbits/sec 0.134 ms 3510/10881 (32%) +[UE1] [2025-07-19 11:41:03] [ 5] 80.00-81.00 sec 9.40 MBytes 78.9 Mbits/sec 0.111 ms 2899/9707 (30%) +[UE1] [2025-07-19 11:41:04] [ 5] 81.00-82.00 sec 10.0 MBytes 83.8 Mbits/sec 0.095 ms 4005/11243 (36%) +[UE1] [2025-07-19 11:41:05] [ 5] 82.00-83.00 sec 9.58 MBytes 80.3 Mbits/sec 0.107 ms 2945/9881 (30%) +[UE1] [2025-07-19 11:41:06] [ 5] 83.00-84.00 sec 9.39 MBytes 78.7 Mbits/sec 0.116 ms 3144/9943 (32%) +[UE1] [2025-07-19 11:41:07] [ 5] 84.00-85.00 sec 9.40 MBytes 78.9 Mbits/sec 0.068 ms 3609/10419 (35%) +[UE1] [2025-07-19 11:41:08] [ 5] 85.00-86.00 sec 10.0 MBytes 84.0 Mbits/sec 0.087 ms 3398/10645 (32%) +[UE1] [2025-07-19 11:41:09] [ 5] 86.00-87.00 sec 10.2 MBytes 85.5 Mbits/sec 0.080 ms 3101/10485 (30%) +[UE1] [2025-07-19 11:41:10] [ 5] 87.00-88.00 sec 9.97 MBytes 83.6 Mbits/sec 0.114 ms 3333/10551 (32%) +[UE1] [2025-07-19 11:41:11] [ 5] 88.00-89.00 sec 9.59 MBytes 80.5 Mbits/sec 0.092 ms 3024/9970 (30%) +[UE1] [2025-07-19 11:41:12] [ 5] 89.00-90.00 sec 10.0 MBytes 83.8 Mbits/sec 0.108 ms 3614/10852 (33%) +[UE1] [2025-07-19 11:41:13] [ 5] 90.00-91.00 sec 10.2 MBytes 85.6 Mbits/sec 0.082 ms 2975/10362 (29%) +[UE1] [2025-07-19 11:41:14] [ 5] 91.00-92.00 sec 10.0 MBytes 83.9 Mbits/sec 0.080 ms 3185/10423 (31%) +[UE1] [2025-07-19 11:41:15] [ 5] 92.00-93.00 sec 10.2 MBytes 85.4 Mbits/sec 0.103 ms 3055/10427 (29%) +[UE1] [2025-07-19 11:41:16] [ 5] 93.00-94.00 sec 9.39 MBytes 78.7 Mbits/sec 0.073 ms 2832/9629 (29%) +[UE1] [2025-07-19 11:41:17] [ 5] 94.00-95.00 sec 9.99 MBytes 83.8 Mbits/sec 0.105 ms 3888/11121 (35%) +[UE1] [2025-07-19 11:41:18] [ 5] 95.00-96.00 sec 9.41 MBytes 79.0 Mbits/sec 0.114 ms 2920/9736 (30%) +[UE1] [2025-07-19 11:41:19] [ 5] 96.00-97.00 sec 10.2 MBytes 85.6 Mbits/sec 0.103 ms 3419/10806 (32%) +[UE1] [2025-07-19 11:41:20] [ 5] 97.00-98.00 sec 9.98 MBytes 83.8 Mbits/sec 0.070 ms 3280/10510 (31%) +[UE1] [2025-07-19 11:41:21] [ 5] 98.00-99.00 sec 10.2 MBytes 85.4 Mbits/sec 0.071 ms 3042/10414 (29%) +[UE1] [2025-07-19 11:41:23] [ 5] 99.00-100.00 sec 9.99 MBytes 83.8 Mbits/sec 0.079 ms 3080/10313 (30%) +[UE1] [2025-07-19 11:41:25] [ 5] 0.00-1.00 sec 3.74 MBytes 31.3 Mbits/sec 0.189 ms 0/2705 (0%) +[UE1] [2025-07-19 11:41:26] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2589 (0%) +[UE1] [2025-07-19 11:41:27] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.133 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:28] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2592 (0%) +[UE1] [2025-07-19 11:41:29] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:30] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.243 ms 0/2587 (0%) +[UE1] [2025-07-19 11:41:31] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:32] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2592 (0%) +[UE1] [2025-07-19 11:41:33] [ 5] 8.00-9.00 sec 3.57 MBytes 30.0 Mbits/sec 0.163 ms 0/2588 (0%) +[UE1] [2025-07-19 11:41:34] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.105 ms 0/2589 (0%) +[UE1] [2025-07-19 11:41:35] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:36] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:37] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:38] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2592 (0%) +[UE1] [2025-07-19 11:41:39] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE1] [2025-07-19 11:41:40] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.122 ms 0/2588 (0%) +[UE1] [2025-07-19 11:41:41] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.119 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:42] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:43] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2592 (0%) +[UE1] [2025-07-19 11:41:44] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.191 ms 0/2587 (0%) +[UE1] [2025-07-19 11:41:45] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:46] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.116 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:47] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:48] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2589 (0%) +[UE1] [2025-07-19 11:41:49] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2592 (0%) +[UE1] [2025-07-19 11:41:50] [ 5] 25.00-26.00 sec 3.57 MBytes 30.0 Mbits/sec 0.145 ms 0/2588 (0%) +[UE1] [2025-07-19 11:41:51] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2591 (0%) +[UE1] [2025-07-19 11:41:52] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2589 (0%) +[UE1] [2025-07-19 11:41:53] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE1] [2025-07-19 11:41:54] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2589 (0%) +[UE1] [2025-07-19 11:41:55] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2591 (0%) +[UE1] [2025-07-19 11:41:56] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2592 (0%) +[UE1] [2025-07-19 11:41:57] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 11:41:58] [ 5] 33.00-34.00 sec 3.57 MBytes 30.0 Mbits/sec 0.231 ms 0/2587 (0%) +[UE1] [2025-07-19 11:41:59] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:00] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.162 ms 0/2587 (0%) +[UE1] [2025-07-19 11:42:01] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2593 (0%) +[UE1] [2025-07-19 11:42:02] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2591 (0%) +[UE1] [2025-07-19 11:42:03] [ 5] 38.00-39.00 sec 3.56 MBytes 29.9 Mbits/sec 0.251 ms 0/2580 (0%) +[UE1] [2025-07-19 11:42:04] [ 5] 39.00-40.00 sec 3.59 MBytes 30.1 Mbits/sec 0.117 ms 0/2598 (0%) +[UE1] [2025-07-19 11:42:05] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:06] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:07] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.275 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:08] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:09] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:10] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.124 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:11] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:12] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2591 (0%) +[UE1] [2025-07-19 11:42:13] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.333 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:14] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.089 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:15] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.318 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:16] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:17] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2593 (0%) +[UE1] [2025-07-19 11:42:18] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:19] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2588 (0%) +[UE1] [2025-07-19 11:42:20] [ 5] 55.00-56.00 sec 3.57 MBytes 30.0 Mbits/sec 0.217 ms 0/2588 (0%) +[UE1] [2025-07-19 11:42:21] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.142 ms 0/2586 (0%) +[UE1] [2025-07-19 11:42:22] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2592 (0%) +[UE1] [2025-07-19 11:42:23] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2593 (0%) +[UE1] [2025-07-19 11:42:24] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:25] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:26] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.216 ms 0/2587 (0%) +[UE1] [2025-07-19 11:42:27] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2593 (0%) +[UE1] [2025-07-19 11:42:28] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:29] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.114 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:30] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:31] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:32] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2591 (0%) +[UE1] [2025-07-19 11:42:33] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2592 (0%) +[UE1] [2025-07-19 11:42:34] [ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2587 (0%) +[UE1] [2025-07-19 11:42:35] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.392 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:36] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:37] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2592 (0%) +[UE1] [2025-07-19 11:42:38] [ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 0.193 ms 0/2588 (0%) +[UE1] [2025-07-19 11:42:39] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.325 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:40] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2592 (0%) +[UE1] [2025-07-19 11:42:41] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.123 ms 0/2586 (0%) +[UE1] [2025-07-19 11:42:42] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.281 ms 0/2594 (0%) +[UE1] [2025-07-19 11:42:43] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.253 ms 0/2588 (0%) +[UE1] [2025-07-19 11:42:44] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.121 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:45] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:46] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:47] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:48] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.112 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:49] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:50] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2592 (0%) +[UE1] [2025-07-19 11:42:51] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:52] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:53] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.115 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:54] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:55] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:56] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2589 (0%) +[UE1] [2025-07-19 11:42:57] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:58] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.314 ms 0/2590 (0%) +[UE1] [2025-07-19 11:42:59] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 11:43:00] [ 5] 95.00-96.00 sec 3.57 MBytes 30.0 Mbits/sec 0.128 ms 0/2588 (0%) +[UE1] [2025-07-19 11:43:01] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.300 ms 0/2591 (0%) +[UE1] [2025-07-19 11:43:02] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.260 ms 0/2592 (0%) +[UE1] [2025-07-19 11:43:03] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.261 ms 0/2588 (0%) +[UE1] [2025-07-19 11:43:04] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE1] [2025-07-19 11:43:06] [ 5] 0.00-1.00 sec 7.06 MBytes 59.2 Mbits/sec 0.209 ms 0/5112 (0%) +[UE1] [2025-07-19 11:43:07] [ 5] 1.00-2.00 sec 9.15 MBytes 76.8 Mbits/sec 0.077 ms 922/7549 (12%) +[UE1] [2025-07-19 11:43:08] [ 5] 2.00-3.00 sec 9.98 MBytes 83.7 Mbits/sec 0.102 ms 3146/10374 (30%) +[UE1] [2025-07-19 11:43:09] [ 5] 3.00-4.00 sec 10.2 MBytes 85.6 Mbits/sec 0.101 ms 3055/10443 (29%) +[UE1] [2025-07-19 11:43:10] [ 5] 4.00-5.00 sec 9.40 MBytes 78.9 Mbits/sec 0.108 ms 2834/9642 (29%) +[UE1] [2025-07-19 11:43:11] [ 5] 5.00-6.00 sec 9.38 MBytes 78.7 Mbits/sec 0.117 ms 3164/9954 (32%) +[UE1] [2025-07-19 11:43:12] [ 5] 6.00-7.00 sec 10.2 MBytes 85.5 Mbits/sec 0.118 ms 3964/11345 (35%) +[UE1] [2025-07-19 11:43:13] [ 5] 7.00-8.00 sec 10.0 MBytes 83.9 Mbits/sec 0.092 ms 3278/10517 (31%) +[UE1] [2025-07-19 11:43:14] [ 5] 8.00-9.00 sec 10.0 MBytes 83.8 Mbits/sec 0.109 ms 3118/10356 (30%) +[UE1] [2025-07-19 11:43:15] [ 5] 9.00-10.00 sec 9.59 MBytes 80.5 Mbits/sec 0.092 ms 2991/9937 (30%) +[UE1] [2025-07-19 11:43:16] [ 5] 10.00-11.00 sec 10.6 MBytes 89.0 Mbits/sec 0.069 ms 3339/11018 (30%) +[UE1] [2025-07-19 11:43:17] [ 5] 11.00-12.00 sec 9.58 MBytes 80.4 Mbits/sec 0.105 ms 2780/9720 (29%) +[UE1] [2025-07-19 11:43:18] [ 5] 12.00-13.00 sec 9.98 MBytes 83.7 Mbits/sec 0.097 ms 3265/10493 (31%) +[UE1] [2025-07-19 11:43:19] [ 5] 13.00-14.00 sec 10.2 MBytes 85.5 Mbits/sec 0.095 ms 3005/10384 (29%) +[UE1] [2025-07-19 11:43:20] [ 5] 14.00-15.00 sec 10.1 MBytes 85.0 Mbits/sec 0.097 ms 3114/10449 (30%) +[UE1] [2025-07-19 11:43:21] [ 5] 15.00-16.00 sec 9.21 MBytes 77.3 Mbits/sec 0.091 ms 2582/9252 (28%) +[UE1] [2025-07-19 11:43:22] [ 5] 16.00-17.00 sec 9.57 MBytes 80.3 Mbits/sec 0.100 ms 3987/10920 (37%) +[UE1] [2025-07-19 11:43:23] [ 5] 17.00-18.00 sec 10.0 MBytes 83.8 Mbits/sec 0.106 ms 3557/10795 (33%) +[UE1] [2025-07-19 11:43:24] [ 5] 18.00-19.00 sec 10.2 MBytes 85.5 Mbits/sec 0.081 ms 3259/10641 (31%) +[UE1] [2025-07-19 11:43:25] [ 5] 19.00-20.00 sec 9.39 MBytes 78.8 Mbits/sec 0.116 ms 2833/9636 (29%) +[UE1] [2025-07-19 11:43:26] [ 5] 20.00-21.00 sec 10.0 MBytes 83.9 Mbits/sec 0.095 ms 3702/10942 (34%) +[UE1] [2025-07-19 11:43:27] [ 5] 21.00-22.00 sec 10.2 MBytes 85.4 Mbits/sec 0.091 ms 2999/10374 (29%) +[UE1] [2025-07-19 11:43:28] [ 5] 22.00-23.00 sec 9.99 MBytes 83.8 Mbits/sec 0.080 ms 2824/10061 (28%) +[UE1] [2025-07-19 11:43:29] [ 5] 23.00-24.00 sec 10.2 MBytes 85.5 Mbits/sec 0.088 ms 3182/10561 (30%) +[UE1] [2025-07-19 11:43:30] [ 5] 24.00-25.00 sec 9.99 MBytes 83.8 Mbits/sec 0.097 ms 3175/10409 (31%) +[UE1] [2025-07-19 11:43:31] [ 5] 25.00-26.00 sec 8.80 MBytes 73.8 Mbits/sec 0.128 ms 2981/9351 (32%) +[UE1] [2025-07-19 11:43:32] [ 5] 26.00-27.00 sec 10.2 MBytes 85.5 Mbits/sec 0.093 ms 3815/11192 (34%) +[UE1] [2025-07-19 11:43:33] [ 5] 27.00-28.00 sec 10.0 MBytes 83.8 Mbits/sec 0.105 ms 3174/10412 (30%) +[UE1] [2025-07-19 11:43:34] [ 5] 28.00-29.00 sec 9.50 MBytes 79.7 Mbits/sec 0.110 ms 3121/9999 (31%) +[UE1] [2025-07-19 11:43:35] [ 5] 29.00-30.00 sec 9.29 MBytes 77.9 Mbits/sec 0.071 ms 2993/9719 (31%) +[UE1] [2025-07-19 11:43:36] [ 5] 30.00-31.00 sec 10.2 MBytes 85.6 Mbits/sec 0.134 ms 3991/11380 (35%) +[UE1] [2025-07-19 11:43:37] [ 5] 31.00-32.00 sec 9.98 MBytes 83.7 Mbits/sec 0.081 ms 3237/10465 (31%) +[UE1] [2025-07-19 11:43:38] [ 5] 32.00-33.00 sec 9.41 MBytes 78.9 Mbits/sec 0.090 ms 3089/9901 (31%) +[UE1] [2025-07-19 11:43:39] [ 5] 33.00-34.00 sec 10.2 MBytes 85.5 Mbits/sec 0.094 ms 3215/10596 (30%) +[UE1] [2025-07-19 11:43:40] [ 5] 34.00-35.00 sec 10.0 MBytes 83.9 Mbits/sec 0.118 ms 3020/10263 (29%) +[UE1] [2025-07-19 11:43:41] [ 5] 35.00-36.00 sec 10.2 MBytes 85.5 Mbits/sec 0.068 ms 3223/10600 (30%) +[UE1] [2025-07-19 11:43:42] [ 5] 36.00-37.00 sec 9.31 MBytes 78.1 Mbits/sec 0.082 ms 2815/9555 (29%) +[UE1] [2025-07-19 11:43:43] [ 5] 37.00-38.00 sec 9.47 MBytes 79.4 Mbits/sec 0.108 ms 4058/10913 (37%) +[UE1] [2025-07-19 11:43:44] [ 5] 38.00-39.00 sec 10.2 MBytes 85.5 Mbits/sec 0.110 ms 3117/10494 (30%) +[UE1] [2025-07-19 11:43:45] [ 5] 39.00-40.00 sec 10.0 MBytes 83.9 Mbits/sec 0.098 ms 3184/10423 (31%) +[UE1] [2025-07-19 11:43:46] [ 5] 40.00-41.00 sec 9.58 MBytes 80.4 Mbits/sec 0.086 ms 3026/9967 (30%) +[UE1] [2025-07-19 11:43:47] [ 5] 41.00-42.00 sec 9.99 MBytes 83.8 Mbits/sec 0.116 ms 3732/10966 (34%) +[UE1] [2025-07-19 11:43:48] [ 5] 42.00-43.00 sec 9.41 MBytes 78.9 Mbits/sec 0.076 ms 3075/9889 (31%) +[UE1] [2025-07-19 11:43:49] [ 5] 43.00-44.00 sec 10.0 MBytes 83.9 Mbits/sec 0.111 ms 3237/10477 (31%) +[UE1] [2025-07-19 11:43:50] [ 5] 44.00-45.00 sec 10.2 MBytes 85.3 Mbits/sec 0.075 ms 3264/10631 (31%) +[UE1] [2025-07-19 11:43:51] [ 5] 45.00-46.00 sec 10.2 MBytes 85.4 Mbits/sec 0.095 ms 3101/10477 (30%) +[UE1] [2025-07-19 11:43:52] [ 5] 46.00-47.00 sec 10.0 MBytes 83.8 Mbits/sec 0.073 ms 3184/10422 (31%) +[UE1] [2025-07-19 11:43:53] [ 5] 47.00-48.00 sec 10.1 MBytes 84.3 Mbits/sec 0.122 ms 3090/10370 (30%) +[UE1] [2025-07-19 11:43:54] [ 5] 48.00-49.00 sec 9.54 MBytes 80.0 Mbits/sec 0.018 ms 3008/9918 (30%) +[UE1] [2025-07-19 11:43:55] [ 5] 49.00-50.00 sec 9.99 MBytes 83.8 Mbits/sec 0.048 ms 3304/10539 (31%) +[UE1] [2025-07-19 11:43:56] [ 5] 50.00-51.00 sec 9.38 MBytes 78.7 Mbits/sec 0.113 ms 3051/9847 (31%) +[UE1] [2025-07-19 11:43:57] [ 5] 51.00-52.00 sec 9.41 MBytes 78.9 Mbits/sec 0.099 ms 3703/10516 (35%) +[UE1] [2025-07-19 11:43:58] [ 5] 52.00-53.00 sec 10.2 MBytes 85.5 Mbits/sec 0.079 ms 3150/10531 (30%) +[UE1] [2025-07-19 11:43:59] [ 5] 53.00-54.00 sec 10.0 MBytes 83.9 Mbits/sec 0.105 ms 3326/10569 (31%) +[UE1] [2025-07-19 11:44:00] [ 5] 54.00-55.00 sec 10.2 MBytes 85.5 Mbits/sec 0.115 ms 3095/10472 (30%) +[UE1] [2025-07-19 11:44:01] [ 5] 55.00-56.00 sec 9.98 MBytes 83.7 Mbits/sec 0.074 ms 3286/10511 (31%) +[UE1] [2025-07-19 11:44:02] [ 5] 56.00-57.00 sec 8.80 MBytes 73.8 Mbits/sec 0.110 ms 2533/8903 (28%) +[UE1] [2025-07-19 11:44:03] [ 5] 57.00-58.00 sec 10.2 MBytes 85.5 Mbits/sec 0.108 ms 4102/11479 (36%) +[UE1] [2025-07-19 11:44:04] [ 5] 58.00-59.00 sec 9.99 MBytes 83.8 Mbits/sec 0.075 ms 2987/10219 (29%) +[UE1] [2025-07-19 11:44:05] [ 5] 59.00-60.00 sec 10.8 MBytes 90.6 Mbits/sec 0.103 ms 3265/11083 (29%) +[UE1] [2025-07-19 11:44:06] [ 5] 60.00-61.00 sec 9.40 MBytes 78.9 Mbits/sec 0.075 ms 2755/9563 (29%) +[UE1] [2025-07-19 11:44:07] [ 5] 61.00-62.00 sec 9.38 MBytes 78.7 Mbits/sec 0.120 ms 3380/10175 (33%) +[UE1] [2025-07-19 11:44:08] [ 5] 62.00-63.00 sec 10.8 MBytes 90.5 Mbits/sec 0.074 ms 3520/11331 (31%) +[UE1] [2025-07-19 11:44:09] [ 5] 63.00-64.00 sec 9.41 MBytes 78.9 Mbits/sec 0.098 ms 2703/9517 (28%) +[UE1] [2025-07-19 11:44:10] [ 5] 64.00-65.00 sec 10.2 MBytes 85.5 Mbits/sec 0.100 ms 3215/10596 (30%) +[UE1] [2025-07-19 11:44:11] [ 5] 65.00-66.00 sec 9.98 MBytes 83.7 Mbits/sec 0.053 ms 2993/10219 (29%) +[UE1] [2025-07-19 11:44:12] [ 5] 66.00-67.00 sec 9.60 MBytes 80.5 Mbits/sec 0.098 ms 3049/10001 (30%) +[UE1] [2025-07-19 11:44:13] [ 5] 67.00-68.00 sec 9.90 MBytes 83.1 Mbits/sec 0.095 ms 3262/10433 (31%) +[UE1] [2025-07-19 11:44:14] [ 5] 68.00-69.00 sec 10.1 MBytes 84.5 Mbits/sec 0.104 ms 3912/11207 (35%) +[UE1] [2025-07-19 11:44:15] [ 5] 69.00-70.00 sec 10.2 MBytes 85.6 Mbits/sec 0.118 ms 2825/10211 (28%) +[UE1] [2025-07-19 11:44:16] [ 5] 70.00-71.00 sec 8.79 MBytes 73.7 Mbits/sec 0.092 ms 2633/8997 (29%) +[UE1] [2025-07-19 11:44:17] [ 5] 71.00-72.00 sec 9.99 MBytes 83.8 Mbits/sec 0.117 ms 4112/11349 (36%) +[UE1] [2025-07-19 11:44:18] [ 5] 72.00-73.00 sec 10.2 MBytes 85.5 Mbits/sec 0.127 ms 3186/10565 (30%) +[UE1] [2025-07-19 11:44:19] [ 5] 73.00-74.00 sec 10.0 MBytes 83.9 Mbits/sec 0.075 ms 3021/10266 (29%) +[UE1] [2025-07-19 11:44:20] [ 5] 74.00-75.00 sec 10.2 MBytes 85.6 Mbits/sec 0.077 ms 3291/10678 (31%) +[UE1] [2025-07-19 11:44:21] [ 5] 75.00-76.00 sec 9.99 MBytes 83.8 Mbits/sec 0.093 ms 2916/10149 (29%) +[UE1] [2025-07-19 11:44:22] [ 5] 76.00-77.00 sec 10.2 MBytes 85.3 Mbits/sec 0.117 ms 3228/10595 (30%) +[UE1] [2025-07-19 11:44:23] [ 5] 77.00-78.00 sec 9.39 MBytes 78.8 Mbits/sec 0.106 ms 2521/9323 (27%) +[UE1] [2025-07-19 11:44:24] [ 5] 78.00-79.00 sec 10.0 MBytes 83.9 Mbits/sec 0.104 ms 4076/11314 (36%) +[UE1] [2025-07-19 11:44:25] [ 5] 79.00-80.00 sec 10.2 MBytes 85.5 Mbits/sec 0.086 ms 3244/10621 (31%) +[UE1] [2025-07-19 11:44:26] [ 5] 80.00-81.00 sec 10.0 MBytes 83.8 Mbits/sec 0.077 ms 2796/10034 (28%) +[UE1] [2025-07-19 11:44:27] [ 5] 81.00-82.00 sec 10.2 MBytes 85.5 Mbits/sec 0.070 ms 2930/10307 (28%) +[UE1] [2025-07-19 11:44:28] [ 5] 82.00-83.00 sec 10.0 MBytes 83.9 Mbits/sec 0.079 ms 2975/10220 (29%) +[UE1] [2025-07-19 11:44:29] [ 5] 83.00-84.00 sec 10.8 MBytes 90.5 Mbits/sec 0.074 ms 3189/11001 (29%) +[UE1] [2025-07-19 11:44:30] [ 5] 84.00-85.00 sec 9.39 MBytes 78.7 Mbits/sec 0.111 ms 2613/9410 (28%) +[UE1] [2025-07-19 11:44:31] [ 5] 85.00-86.00 sec 10.2 MBytes 85.4 Mbits/sec 0.071 ms 3280/10656 (31%) +[UE1] [2025-07-19 11:44:32] [ 5] 86.00-87.00 sec 10.0 MBytes 83.9 Mbits/sec 0.049 ms 3091/10335 (30%) +[UE1] [2025-07-19 11:44:33] [ 5] 87.00-88.00 sec 8.79 MBytes 73.8 Mbits/sec 0.090 ms 2903/9271 (31%) +[UE1] [2025-07-19 11:44:34] [ 5] 88.00-89.00 sec 10.2 MBytes 85.4 Mbits/sec 0.113 ms 4039/11413 (35%) +[UE1] [2025-07-19 11:44:35] [ 5] 89.00-90.00 sec 10.0 MBytes 83.8 Mbits/sec 0.078 ms 3033/10271 (30%) +[UE1] [2025-07-19 11:44:36] [ 5] 90.00-91.00 sec 10.2 MBytes 85.5 Mbits/sec 0.112 ms 3085/10467 (29%) +[UE1] [2025-07-19 11:44:37] [ 5] 91.00-92.00 sec 9.39 MBytes 78.8 Mbits/sec 0.102 ms 2864/9667 (30%) +[UE1] [2025-07-19 11:44:38] [ 5] 92.00-93.00 sec 10.5 MBytes 88.0 Mbits/sec 0.092 ms 3908/11501 (34%) +[UE1] [2025-07-19 11:44:39] [ 5] 93.00-94.00 sec 9.70 MBytes 81.3 Mbits/sec 0.078 ms 2811/9833 (29%) +[UE1] [2025-07-19 11:44:40] [ 5] 94.00-95.00 sec 9.39 MBytes 78.8 Mbits/sec 0.101 ms 2820/9619 (29%) +[UE1] [2025-07-19 11:44:41] [ 5] 95.00-96.00 sec 10.0 MBytes 83.9 Mbits/sec 0.119 ms 3811/11051 (34%) +[UE1] [2025-07-19 11:44:42] [ 5] 96.00-97.00 sec 10.2 MBytes 85.6 Mbits/sec 0.108 ms 3482/10871 (32%) +[UE1] [2025-07-19 11:44:43] [ 5] 97.00-98.00 sec 9.99 MBytes 83.8 Mbits/sec 0.071 ms 2847/10083 (28%) +[UE1] [2025-07-19 11:44:44] [ 5] 98.00-99.00 sec 10.2 MBytes 85.5 Mbits/sec 0.074 ms 2999/10380 (29%) +[UE1] [2025-07-19 11:44:46] [ 5] 99.00-100.00 sec 10.8 MBytes 90.4 Mbits/sec 0.098 ms 3250/11058 (29%) +[UE1] [2025-07-19 11:44:47] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.249 ms 0/2696 (0%) +[UE1] [2025-07-19 11:44:48] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2591 (0%) +[UE1] [2025-07-19 11:44:49] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2589 (0%) +[UE1] [2025-07-19 11:44:50] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.281 ms 0/2590 (0%) +[UE1] [2025-07-19 11:44:51] [ 5] 4.00-5.00 sec 3.57 MBytes 30.0 Mbits/sec 0.158 ms 0/2588 (0%) +[UE1] [2025-07-19 11:44:52] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2592 (0%) +[UE1] [2025-07-19 11:44:53] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2589 (0%) +[UE1] [2025-07-19 11:44:54] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 11:44:55] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 11:44:56] [ 5] 9.00-10.00 sec 3.57 MBytes 30.0 Mbits/sec 0.138 ms 0/2587 (0%) +[UE1] [2025-07-19 11:44:57] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE1] [2025-07-19 11:44:58] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2591 (0%) +[UE1] [2025-07-19 11:44:59] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.179 ms 0/2588 (0%) +[UE1] [2025-07-19 11:45:00] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:01] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.314 ms 0/2589 (0%) +[UE1] [2025-07-19 11:45:02] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.114 ms 0/2593 (0%) +[UE1] [2025-07-19 11:45:03] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.311 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:04] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE1] [2025-07-19 11:45:05] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2588 (0%) +[UE1] [2025-07-19 11:45:06] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2592 (0%) +[UE1] [2025-07-19 11:45:07] [ 5] 20.00-21.00 sec 3.57 MBytes 29.9 Mbits/sec 0.363 ms 0/2583 (0%) +[UE1] [2025-07-19 11:45:08] [ 5] 21.00-22.00 sec 3.59 MBytes 30.1 Mbits/sec 0.131 ms 0/2597 (0%) +[UE1] [2025-07-19 11:45:09] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.201 ms 0/2587 (0%) +[UE1] [2025-07-19 11:45:10] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2593 (0%) +[UE1] [2025-07-19 11:45:11] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.128 ms 0/2587 (0%) +[UE1] [2025-07-19 11:45:12] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:13] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2589 (0%) +[UE1] [2025-07-19 11:45:14] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.292 ms 0/2592 (0%) +[UE1] [2025-07-19 11:45:15] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2591 (0%) +[UE1] [2025-07-19 11:45:16] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2589 (0%) +[UE1] [2025-07-19 11:45:17] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:18] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:19] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:20] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.343 ms 0/2589 (0%) +[UE1] [2025-07-19 11:45:21] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.271 ms 0/2587 (0%) +[UE1] [2025-07-19 11:45:22] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2591 (0%) +[UE1] [2025-07-19 11:45:23] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2591 (0%) +[UE1] [2025-07-19 11:45:24] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.265 ms 0/2588 (0%) +[UE1] [2025-07-19 11:45:25] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2592 (0%) +[UE1] [2025-07-19 11:45:26] [ 5] 39.00-40.00 sec 3.56 MBytes 29.8 Mbits/sec 0.757 ms 0/2576 (0%) +[UE1] [2025-07-19 11:45:27] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.521 ms 0/2589 (0%) +[UE1] [2025-07-19 11:45:28] [ 5] 41.00-42.00 sec 3.19 MBytes 26.7 Mbits/sec 0.620 ms 0/2308 (0%) +[UE1] [2025-07-19 11:45:29] [ 5] 42.00-43.00 sec 3.72 MBytes 31.2 Mbits/sec 0.492 ms 0/2694 (0%) +[UE1] [2025-07-19 11:45:30] [ 5] 43.00-44.00 sec 3.61 MBytes 30.3 Mbits/sec 0.485 ms 0/2616 (0%) +[UE1] [2025-07-19 11:45:31] [ 5] 44.00-45.00 sec 3.77 MBytes 31.6 Mbits/sec 0.630 ms 0/2730 (0%) +[UE1] [2025-07-19 11:45:32] [ 5] 45.00-46.00 sec 3.59 MBytes 30.1 Mbits/sec 0.549 ms 0/2598 (0%) +[UE1] [2025-07-19 11:45:33] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.646 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:34] [ 5] 47.00-48.00 sec 3.58 MBytes 30.1 Mbits/sec 0.645 ms 0/2595 (0%) +[UE1] [2025-07-19 11:45:35] [ 5] 48.00-49.00 sec 3.57 MBytes 29.9 Mbits/sec 0.550 ms 0/2584 (0%) +[UE1] [2025-07-19 11:45:36] [ 5] 49.00-50.00 sec 3.59 MBytes 30.1 Mbits/sec 0.572 ms 0/2602 (0%) +[UE1] [2025-07-19 11:45:37] [ 5] 50.00-51.00 sec 3.54 MBytes 29.7 Mbits/sec 0.589 ms 0/2564 (0%) +[UE1] [2025-07-19 11:45:38] [ 5] 51.00-52.00 sec 3.61 MBytes 30.3 Mbits/sec 0.573 ms 0/2617 (0%) +[UE1] [2025-07-19 11:45:39] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.618 ms 0/2587 (0%) +[UE1] [2025-07-19 11:45:40] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.538 ms 0/2594 (0%) +[UE1] [2025-07-19 11:45:41] [ 5] 54.00-55.00 sec 3.55 MBytes 29.8 Mbits/sec 0.631 ms 0/2573 (0%) +[UE1] [2025-07-19 11:45:42] [ 5] 55.00-56.00 sec 3.60 MBytes 30.2 Mbits/sec 0.537 ms 0/2604 (0%) +[UE1] [2025-07-19 11:45:43] [ 5] 56.00-57.00 sec 3.57 MBytes 29.9 Mbits/sec 0.584 ms 0/2585 (0%) +[UE1] [2025-07-19 11:45:44] [ 5] 57.00-58.00 sec 3.56 MBytes 29.8 Mbits/sec 0.600 ms 0/2576 (0%) +[UE1] [2025-07-19 11:45:45] [ 5] 58.00-59.00 sec 3.60 MBytes 30.2 Mbits/sec 0.566 ms 0/2606 (0%) +[UE1] [2025-07-19 11:45:46] [ 5] 59.00-60.00 sec 3.57 MBytes 29.9 Mbits/sec 0.577 ms 0/2582 (0%) +[UE1] [2025-07-19 11:45:47] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.664 ms 0/2590 (0%) +[UE1] [2025-07-19 11:45:48] [ 5] 61.00-62.00 sec 3.25 MBytes 27.3 Mbits/sec 0.762 ms 0/2353 (0%) +[UE1] [2025-07-19 11:45:49] [ 5] 62.00-63.00 sec 3.70 MBytes 31.0 Mbits/sec 0.580 ms 0/2679 (0%) +[UE1] [2025-07-19 11:45:50] [ 5] 63.00-64.00 sec 3.66 MBytes 30.7 Mbits/sec 0.541 ms 0/2651 (0%) +[UE1] [2025-07-19 11:45:51] [ 5] 64.00-65.00 sec 3.65 MBytes 30.6 Mbits/sec 0.542 ms 0/2642 (0%) +[UE1] [2025-07-19 11:45:52] [ 5] 65.00-66.00 sec 3.60 MBytes 30.2 Mbits/sec 0.699 ms 0/2610 (0%) +[UE1] [2025-07-19 11:45:53] [ 5] 66.00-67.00 sec 3.61 MBytes 30.3 Mbits/sec 0.586 ms 0/2614 (0%) +[UE1] [2025-07-19 11:45:54] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.615 ms 0/2592 (0%) +[UE1] [2025-07-19 11:45:55] [ 5] 68.00-69.00 sec 3.56 MBytes 29.9 Mbits/sec 0.557 ms 0/2580 (0%) +[UE1] [2025-07-19 11:45:56] [ 5] 69.00-70.00 sec 3.56 MBytes 29.8 Mbits/sec 0.648 ms 0/2575 (0%) +[UE1] [2025-07-19 11:45:57] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.485 ms 0/2594 (0%) +[UE1] [2025-07-19 11:45:58] [ 5] 71.00-72.00 sec 3.32 MBytes 27.8 Mbits/sec 0.798 ms 0/2403 (0%) +[UE1] [2025-07-19 11:45:59] [ 5] 72.00-73.00 sec 3.86 MBytes 32.4 Mbits/sec 0.207 ms 0/2798 (0%) +[UE1] [2025-07-19 11:46:00] [ 5] 73.00-74.00 sec 3.54 MBytes 29.7 Mbits/sec 0.585 ms 0/2564 (0%) +[UE1] [2025-07-19 11:46:01] [ 5] 74.00-75.00 sec 3.61 MBytes 30.3 Mbits/sec 0.269 ms 0/2616 (0%) +[UE1] [2025-07-19 11:46:02] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE1] [2025-07-19 11:46:03] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2589 (0%) +[UE1] [2025-07-19 11:46:04] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2591 (0%) +[UE1] [2025-07-19 11:46:05] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2589 (0%) +[UE1] [2025-07-19 11:46:06] [ 5] 79.00-80.00 sec 3.57 MBytes 29.9 Mbits/sec 0.612 ms 0/2585 (0%) +[UE1] [2025-07-19 11:46:07] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.613 ms 0/2591 (0%) +[UE1] [2025-07-19 11:46:08] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.436 ms 0/2588 (0%) +[UE1] [2025-07-19 11:46:09] [ 5] 82.00-83.00 sec 3.58 MBytes 30.1 Mbits/sec 0.539 ms 0/2595 (0%) +[UE1] [2025-07-19 11:46:10] [ 5] 83.00-84.00 sec 3.57 MBytes 30.0 Mbits/sec 0.459 ms 0/2587 (0%) +[UE1] [2025-07-19 11:46:11] [ 5] 84.00-85.00 sec 3.50 MBytes 29.4 Mbits/sec 0.523 ms 0/2534 (0%) +[UE1] [2025-07-19 11:46:12] [ 5] 85.00-86.00 sec 3.65 MBytes 30.6 Mbits/sec 0.478 ms 0/2642 (0%) +[UE1] [2025-07-19 11:46:13] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.566 ms 0/2586 (0%) +[UE1] [2025-07-19 11:46:14] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.603 ms 0/2590 (0%) +[UE1] [2025-07-19 11:46:15] [ 5] 88.00-89.00 sec 3.57 MBytes 29.9 Mbits/sec 0.596 ms 0/2582 (0%) +[UE1] [2025-07-19 11:46:16] [ 5] 89.00-90.00 sec 3.59 MBytes 30.1 Mbits/sec 0.579 ms 0/2600 (0%) +[UE1] [2025-07-19 11:46:17] [ 5] 90.00-91.00 sec 3.57 MBytes 29.9 Mbits/sec 0.700 ms 0/2584 (0%) +[UE1] [2025-07-19 11:46:18] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.582 ms 0/2592 (0%) +[UE1] [2025-07-19 11:46:19] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.659 ms 0/2590 (0%) +[UE1] [2025-07-19 11:46:20] [ 5] 93.00-94.00 sec 3.59 MBytes 30.1 Mbits/sec 0.513 ms 0/2601 (0%) +[UE1] [2025-07-19 11:46:21] [ 5] 94.00-95.00 sec 3.56 MBytes 29.9 Mbits/sec 0.535 ms 0/2580 (0%) +[UE1] [2025-07-19 11:46:22] [ 5] 95.00-96.00 sec 3.36 MBytes 28.2 Mbits/sec 0.653 ms 0/2432 (0%) +[UE1] [2025-07-19 11:46:23] [ 5] 96.00-97.00 sec 3.65 MBytes 30.6 Mbits/sec 0.536 ms 0/2640 (0%) +[UE1] [2025-07-19 11:46:24] [ 5] 97.00-98.00 sec 3.60 MBytes 30.2 Mbits/sec 0.559 ms 0/2608 (0%) +[UE1] [2025-07-19 11:46:25] [ 5] 98.00-99.00 sec 3.69 MBytes 31.0 Mbits/sec 0.636 ms 0/2674 (0%) +[UE1] [2025-07-19 11:46:27] [ 5] 99.00-100.00 sec 3.57 MBytes 29.9 Mbits/sec 0.624 ms 0/2584 (0%) +[UE1] [2025-07-19 11:46:29] [ 5] 0.00-1.00 sec 4.83 MBytes 40.6 Mbits/sec 0.339 ms 0/3501 (0%) +[UE1] [2025-07-19 11:46:30] [ 5] 1.00-2.00 sec 4.66 MBytes 39.1 Mbits/sec 0.283 ms 0/3375 (0%) +[UE1] [2025-07-19 11:46:31] [ 5] 2.00-3.00 sec 4.01 MBytes 33.6 Mbits/sec 0.096 ms 2366/5268 (45%) +[UE1] [2025-07-19 11:46:32] [ 5] 3.00-4.00 sec 4.57 MBytes 38.3 Mbits/sec 0.134 ms 7094/10403 (68%) +[UE1] [2025-07-19 11:46:33] [ 5] 4.00-5.00 sec 4.54 MBytes 38.1 Mbits/sec 0.175 ms 7318/10605 (69%) +[UE1] [2025-07-19 11:46:34] [ 5] 5.00-6.00 sec 4.88 MBytes 40.9 Mbits/sec 0.137 ms 7438/10971 (68%) +[UE1] [2025-07-19 11:46:35] [ 5] 6.00-7.00 sec 3.97 MBytes 33.3 Mbits/sec 0.132 ms 6074/8952 (68%) +[UE1] [2025-07-19 11:46:36] [ 5] 7.00-8.00 sec 4.66 MBytes 39.1 Mbits/sec 0.106 ms 6863/10238 (67%) +[UE1] [2025-07-19 11:46:37] [ 5] 8.00-9.00 sec 4.60 MBytes 38.6 Mbits/sec 0.144 ms 7666/10999 (70%) +[UE1] [2025-07-19 11:46:38] [ 5] 9.00-10.00 sec 4.52 MBytes 37.9 Mbits/sec 0.141 ms 7384/10659 (69%) +[UE1] [2025-07-19 11:46:39] [ 5] 10.00-11.00 sec 5.65 MBytes 47.4 Mbits/sec 0.105 ms 8824/12912 (68%) +[UE1] [2025-07-19 11:46:40] [ 5] 11.00-12.00 sec 9.48 MBytes 79.5 Mbits/sec 0.089 ms 12102/18969 (64%) +[UE1] [2025-07-19 11:46:41] [ 5] 12.00-13.00 sec 8.81 MBytes 73.9 Mbits/sec 0.123 ms 3177/9554 (33%) +[UE1] [2025-07-19 11:46:42] [ 5] 13.00-14.00 sec 10.0 MBytes 84.3 Mbits/sec 0.112 ms 4029/11303 (36%) +[UE1] [2025-07-19 11:46:43] [ 5] 14.00-15.00 sec 9.48 MBytes 79.5 Mbits/sec 0.094 ms 3292/10155 (32%) +[UE1] [2025-07-19 11:46:44] [ 5] 15.00-16.00 sec 8.78 MBytes 73.7 Mbits/sec 0.105 ms 2836/9197 (31%) +[UE1] [2025-07-19 11:46:45] [ 5] 16.00-17.00 sec 9.88 MBytes 82.9 Mbits/sec 0.087 ms 4378/11534 (38%) +[UE1] [2025-07-19 11:46:46] [ 5] 17.00-18.00 sec 9.48 MBytes 79.5 Mbits/sec 0.119 ms 3485/10352 (34%) +[UE1] [2025-07-19 11:46:47] [ 5] 18.00-19.00 sec 15.9 MBytes 133 Mbits/sec 0.206 ms 3232/14731 (22%) +[UE1] [2025-07-19 11:46:48] [ 5] 19.00-20.00 sec 14.4 MBytes 120 Mbits/sec 0.172 ms 0/10393 (0%) +[UE1] [2025-07-19 11:46:49] [ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 0.163 ms 0/10354 (0%) +[UE1] [2025-07-19 11:46:50] [ 5] 21.00-22.00 sec 14.4 MBytes 120 Mbits/sec 0.141 ms 0/10395 (0%) +[UE1] [2025-07-19 11:46:51] [ 5] 22.00-23.00 sec 13.7 MBytes 115 Mbits/sec 0.160 ms 0/9893 (0%) +[UE1] [2025-07-19 11:46:52] [ 5] 23.00-24.00 sec 14.4 MBytes 121 Mbits/sec 0.147 ms 326/10733 (3%) +[UE1] [2025-07-19 11:46:53] [ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 0.143 ms 17/10397 (0.16%) +[UE1] [2025-07-19 11:46:54] [ 5] 25.00-26.00 sec 12.0 MBytes 101 Mbits/sec 0.096 ms 620/9337 (6.6%) +[UE1] [2025-07-19 11:46:55] [ 5] 26.00-27.00 sec 15.3 MBytes 129 Mbits/sec 0.145 ms 302/11400 (2.6%) +[UE1] [2025-07-19 11:46:56] [ 5] 27.00-28.00 sec 14.5 MBytes 122 Mbits/sec 0.144 ms 0/10514 (0%) +[UE1] [2025-07-19 11:46:57] [ 5] 28.00-29.00 sec 13.9 MBytes 117 Mbits/sec 0.114 ms 0/10097 (0%) +[UE1] [2025-07-19 11:46:58] [ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 0.150 ms 43/10430 (0.41%) +[UE1] [2025-07-19 11:46:59] [ 5] 30.00-31.00 sec 14.1 MBytes 119 Mbits/sec 0.184 ms 0/10234 (0%) +[UE1] [2025-07-19 11:47:00] [ 5] 31.00-32.00 sec 11.3 MBytes 95.2 Mbits/sec 0.103 ms 598/8816 (6.8%) +[UE1] [2025-07-19 11:47:01] [ 5] 32.00-33.00 sec 15.0 MBytes 126 Mbits/sec 0.087 ms 401/11294 (3.6%) +[UE1] [2025-07-19 11:47:02] [ 5] 33.00-34.00 sec 15.2 MBytes 128 Mbits/sec 0.121 ms 145/11171 (1.3%) +[UE1] [2025-07-19 11:47:03] [ 5] 34.00-35.00 sec 14.4 MBytes 121 Mbits/sec 0.163 ms 0/10448 (0%) +[UE1] [2025-07-19 11:47:04] [ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 0.110 ms 0/10327 (0%) +[UE1] [2025-07-19 11:47:05] [ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 0.124 ms 0/10361 (0%) +[UE1] [2025-07-19 11:47:06] [ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 0.171 ms 0/10335 (0%) +[UE1] [2025-07-19 11:47:07] [ 5] 38.00-39.00 sec 14.4 MBytes 121 Mbits/sec 0.164 ms 0/10410 (0%) +[UE1] [2025-07-19 11:47:08] [ 5] 39.00-40.00 sec 13.9 MBytes 117 Mbits/sec 0.139 ms 0/10074 (0%) +[UE1] [2025-07-19 11:47:09] [ 5] 40.00-41.00 sec 12.9 MBytes 108 Mbits/sec 0.099 ms 134/9466 (1.4%) +[UE1] [2025-07-19 11:47:10] [ 5] 41.00-42.00 sec 15.5 MBytes 130 Mbits/sec 0.145 ms 142/11336 (1.3%) +[UE1] [2025-07-19 11:47:11] [ 5] 42.00-43.00 sec 14.7 MBytes 123 Mbits/sec 0.151 ms 16/10626 (0.15%) +[UE1] [2025-07-19 11:47:12] [ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 0.131 ms 0/10383 (0%) +[UE1] [2025-07-19 11:47:13] [ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 0.188 ms 0/10351 (0%) +[UE1] [2025-07-19 11:47:14] [ 5] 45.00-46.00 sec 14.2 MBytes 119 Mbits/sec 0.125 ms 0/10271 (0%) +[UE1] [2025-07-19 11:47:15] [ 5] 46.00-47.00 sec 14.2 MBytes 119 Mbits/sec 0.167 ms 0/10266 (0%) +[UE1] [2025-07-19 11:47:16] [ 5] 47.00-48.00 sec 14.4 MBytes 120 Mbits/sec 0.166 ms 0/10400 (0%) +[UE1] [2025-07-19 11:47:17] [ 5] 48.00-49.00 sec 14.1 MBytes 118 Mbits/sec 0.166 ms 0/10182 (0%) +[UE1] [2025-07-19 11:47:18] [ 5] 49.00-50.00 sec 14.1 MBytes 118 Mbits/sec 0.176 ms 56/10236 (0.55%) +[UE1] [2025-07-19 11:47:19] [ 5] 50.00-51.00 sec 14.1 MBytes 118 Mbits/sec 0.196 ms 125/10347 (1.2%) +[UE1] [2025-07-19 11:47:20] [ 5] 51.00-52.00 sec 14.1 MBytes 118 Mbits/sec 0.111 ms 237/10421 (2.3%) +[UE1] [2025-07-19 11:47:21] [ 5] 52.00-53.00 sec 14.4 MBytes 121 Mbits/sec 0.137 ms 101/10542 (0.96%) +[UE1] [2025-07-19 11:47:22] [ 5] 53.00-54.00 sec 14.2 MBytes 119 Mbits/sec 0.151 ms 0/10283 (0%) +[UE1] [2025-07-19 11:47:23] [ 5] 54.00-55.00 sec 14.5 MBytes 121 Mbits/sec 0.129 ms 0/10474 (0%) +[UE1] [2025-07-19 11:47:24] [ 5] 55.00-56.00 sec 14.2 MBytes 119 Mbits/sec 0.179 ms 0/10315 (0%) +[UE1] [2025-07-19 11:47:25] [ 5] 56.00-57.00 sec 14.4 MBytes 121 Mbits/sec 0.191 ms 0/10431 (0%) +[UE1] [2025-07-19 11:47:26] [ 5] 57.00-58.00 sec 13.1 MBytes 110 Mbits/sec 0.162 ms 0/9510 (0%) +[UE1] [2025-07-19 11:47:27] [ 5] 58.00-59.00 sec 14.4 MBytes 121 Mbits/sec 0.166 ms 723/11135 (6.5%) +[UE1] [2025-07-19 11:47:28] [ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 0.133 ms 0/10324 (0%) +[UE1] [2025-07-19 11:47:29] [ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 0.182 ms 47/10412 (0.45%) +[UE1] [2025-07-19 11:47:30] [ 5] 61.00-62.00 sec 12.8 MBytes 108 Mbits/sec 0.075 ms 54/9353 (0.58%) +[UE1] [2025-07-19 11:47:31] [ 5] 62.00-63.00 sec 13.6 MBytes 114 Mbits/sec 0.106 ms 48/9865 (0.49%) +[UE1] [2025-07-19 11:47:32] [ 5] 63.00-64.00 sec 14.1 MBytes 118 Mbits/sec 0.117 ms 420/10648 (3.9%) +[UE1] [2025-07-19 11:47:33] [ 5] 64.00-65.00 sec 15.8 MBytes 133 Mbits/sec 0.254 ms 110/11574 (0.95%) +[UE1] [2025-07-19 11:47:34] [ 5] 65.00-66.00 sec 14.6 MBytes 122 Mbits/sec 0.119 ms 0/10538 (0%) +[UE1] [2025-07-19 11:47:35] [ 5] 66.00-67.00 sec 14.5 MBytes 122 Mbits/sec 0.145 ms 0/10493 (0%) +[UE1] [2025-07-19 11:47:36] [ 5] 67.00-68.00 sec 14.4 MBytes 121 Mbits/sec 0.150 ms 0/10413 (0%) +[UE1] [2025-07-19 11:47:37] [ 5] 68.00-69.00 sec 12.5 MBytes 105 Mbits/sec 0.189 ms 0/9064 (0%) +[UE1] [2025-07-19 11:47:38] [ 5] 69.00-70.00 sec 14.9 MBytes 125 Mbits/sec 0.090 ms 192/10990 (1.7%) +[UE1] [2025-07-19 11:47:39] [ 5] 70.00-71.00 sec 13.5 MBytes 114 Mbits/sec 0.151 ms 187/9992 (1.9%) +[UE1] [2025-07-19 11:47:40] [ 5] 71.00-72.00 sec 14.2 MBytes 119 Mbits/sec 0.181 ms 569/10827 (5.3%) +[UE1] [2025-07-19 11:47:41] [ 5] 72.00-73.00 sec 14.2 MBytes 119 Mbits/sec 0.195 ms 151/10428 (1.4%) +[UE1] [2025-07-19 11:47:42] [ 5] 73.00-74.00 sec 13.9 MBytes 117 Mbits/sec 0.118 ms 1/10097 (0.0099%) +[UE1] [2025-07-19 11:47:43] [ 5] 74.00-75.00 sec 14.7 MBytes 124 Mbits/sec 0.120 ms 288/10957 (2.6%) +[UE1] [2025-07-19 11:47:44] [ 5] 75.00-76.00 sec 14.4 MBytes 121 Mbits/sec 0.181 ms 0/10451 (0%) +[UE1] [2025-07-19 11:47:45] [ 5] 76.00-77.00 sec 12.3 MBytes 103 Mbits/sec 0.214 ms 0/8919 (0%) +[UE1] [2025-07-19 11:47:46] [ 5] 77.00-78.00 sec 14.0 MBytes 117 Mbits/sec 0.125 ms 496/10602 (4.7%) +[UE1] [2025-07-19 11:47:47] [ 5] 78.00-79.00 sec 14.4 MBytes 121 Mbits/sec 0.162 ms 785/11189 (7%) +[UE1] [2025-07-19 11:47:48] [ 5] 79.00-80.00 sec 12.6 MBytes 106 Mbits/sec 0.083 ms 23/9160 (0.25%) +[UE1] [2025-07-19 11:47:49] [ 5] 80.00-81.00 sec 15.4 MBytes 129 Mbits/sec 0.112 ms 31/11163 (0.28%) +[UE1] [2025-07-19 11:47:50] [ 5] 81.00-82.00 sec 13.6 MBytes 114 Mbits/sec 0.088 ms 52/9881 (0.53%) +[UE1] [2025-07-19 11:47:51] [ 5] 82.00-83.00 sec 15.7 MBytes 132 Mbits/sec 0.155 ms 99/11460 (0.86%) +[UE1] [2025-07-19 11:47:52] [ 5] 83.00-84.00 sec 14.2 MBytes 119 Mbits/sec 0.207 ms 0/10267 (0%) +[UE1] [2025-07-19 11:47:53] [ 5] 84.00-85.00 sec 13.9 MBytes 117 Mbits/sec 0.161 ms 0/10079 (0%) +[UE1] [2025-07-19 11:47:54] [ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 0.173 ms 100/10429 (0.96%) +[UE1] [2025-07-19 11:47:55] [ 5] 86.00-87.00 sec 14.7 MBytes 124 Mbits/sec 0.180 ms 3/10684 (0.028%) +[UE1] [2025-07-19 11:47:56] [ 5] 87.00-88.00 sec 14.5 MBytes 122 Mbits/sec 0.114 ms 0/10522 (0%) +[UE1] [2025-07-19 11:47:57] [ 5] 88.00-89.00 sec 14.4 MBytes 121 Mbits/sec 0.235 ms 0/10416 (0%) +[UE1] [2025-07-19 11:47:58] [ 5] 89.00-90.00 sec 14.0 MBytes 117 Mbits/sec 0.206 ms 0/10128 (0%) +[UE1] [2025-07-19 11:47:59] [ 5] 90.00-91.00 sec 14.4 MBytes 120 Mbits/sec 0.139 ms 0/10397 (0%) +[UE1] [2025-07-19 11:48:00] [ 5] 91.00-92.00 sec 14.2 MBytes 119 Mbits/sec 0.148 ms 0/10289 (0%) +[UE1] [2025-07-19 11:48:01] [ 5] 92.00-93.00 sec 13.4 MBytes 113 Mbits/sec 0.132 ms 349/10077 (3.5%) +[UE1] [2025-07-19 11:48:02] [ 5] 93.00-94.00 sec 14.2 MBytes 119 Mbits/sec 0.145 ms 53/10360 (0.51%) +[UE1] [2025-07-19 11:48:03] [ 5] 94.00-95.00 sec 12.8 MBytes 108 Mbits/sec 0.080 ms 98/9387 (1%) +[UE1] [2025-07-19 11:48:04] [ 5] 95.00-96.00 sec 15.5 MBytes 130 Mbits/sec 0.162 ms 29/11233 (0.26%) +[UE1] [2025-07-19 11:48:05] [ 5] 96.00-97.00 sec 14.1 MBytes 118 Mbits/sec 0.177 ms 221/10406 (2.1%) +[UE1] [2025-07-19 11:48:06] [ 5] 97.00-98.00 sec 13.8 MBytes 116 Mbits/sec 0.148 ms 69/10068 (0.69%) +[UE1] [2025-07-19 11:48:07] [ 5] 98.00-99.00 sec 14.7 MBytes 124 Mbits/sec 0.191 ms 63/10727 (0.59%) +[UE1] [2025-07-19 11:48:08] [ 5] 99.00-100.00 sec 12.7 MBytes 107 Mbits/sec 0.109 ms 477/9677 (4.9%) +[UE1] [2025-07-19 11:48:10] [ 5] 0.00-1.00 sec 3.70 MBytes 31.0 Mbits/sec 0.171 ms 0/2677 (0%) +[UE1] [2025-07-19 11:48:11] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:12] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:13] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.253 ms 0/2588 (0%) +[UE1] [2025-07-19 11:48:14] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2592 (0%) +[UE1] [2025-07-19 11:48:15] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:16] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2591 (0%) +[UE1] [2025-07-19 11:48:17] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.340 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:18] [ 5] 8.00-9.00 sec 3.57 MBytes 29.9 Mbits/sec 0.293 ms 0/2584 (0%) +[UE1] [2025-07-19 11:48:19] [ 5] 9.00-10.00 sec 3.58 MBytes 30.1 Mbits/sec 0.299 ms 0/2595 (0%) +[UE1] [2025-07-19 11:48:20] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:21] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:22] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.249 ms 0/2588 (0%) +[UE1] [2025-07-19 11:48:23] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2592 (0%) +[UE1] [2025-07-19 11:48:24] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.290 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:25] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2592 (0%) +[UE1] [2025-07-19 11:48:26] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:27] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.126 ms 0/2588 (0%) +[UE1] [2025-07-19 11:48:28] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2593 (0%) +[UE1] [2025-07-19 11:48:29] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:30] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:31] [ 5] 21.00-22.00 sec 3.53 MBytes 29.6 Mbits/sec 0.160 ms 33/2589 (1.3%) +[UE1] [2025-07-19 11:48:32] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.138 ms 0/2588 (0%) +[UE1] [2025-07-19 11:48:33] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.223 ms 0/2588 (0%) +[UE1] [2025-07-19 11:48:34] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2594 (0%) +[UE1] [2025-07-19 11:48:35] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.369 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:36] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:37] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2587 (0%) +[UE1] [2025-07-19 11:48:38] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.106 ms 0/2592 (0%) +[UE1] [2025-07-19 11:48:39] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.305 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:40] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.200 ms 0/2587 (0%) +[UE1] [2025-07-19 11:48:41] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2593 (0%) +[UE1] [2025-07-19 11:48:42] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.142 ms 0/2587 (0%) +[UE1] [2025-07-19 11:48:43] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:44] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2592 (0%) +[UE1] [2025-07-19 11:48:45] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.257 ms 0/2586 (0%) +[UE1] [2025-07-19 11:48:46] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2594 (0%) +[UE1] [2025-07-19 11:48:47] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:48] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:49] [ 5] 39.00-40.00 sec 3.57 MBytes 30.0 Mbits/sec 0.232 ms 0/2587 (0%) +[UE1] [2025-07-19 11:48:50] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:51] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:52] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:53] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE1] [2025-07-19 11:48:54] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.367 ms 0/2593 (0%) +[UE1] [2025-07-19 11:48:55] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.181 ms 0/2587 (0%) +[UE1] [2025-07-19 11:48:56] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.275 ms 0/2590 (0%) +[UE1] [2025-07-19 11:48:57] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.368 ms 0/2588 (0%) +[UE1] [2025-07-19 11:48:58] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2591 (0%) +[UE1] [2025-07-19 11:48:59] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE1] [2025-07-19 11:49:00] [ 5] 50.00-51.00 sec 3.57 MBytes 30.0 Mbits/sec 0.167 ms 0/2587 (0%) +[UE1] [2025-07-19 11:49:01] [ 5] 51.00-52.00 sec 3.58 MBytes 30.1 Mbits/sec 0.306 ms 0/2594 (0%) +[UE1] [2025-07-19 11:49:02] [ 5] 52.00-53.00 sec 3.57 MBytes 29.9 Mbits/sec 0.529 ms 0/2583 (0%) +[UE1] [2025-07-19 11:49:03] [ 5] 53.00-54.00 sec 3.57 MBytes 29.9 Mbits/sec 0.598 ms 0/2583 (0%) +[UE1] [2025-07-19 11:49:04] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.595 ms 0/2593 (0%) +[UE1] [2025-07-19 11:49:05] [ 5] 55.00-56.00 sec 3.56 MBytes 29.8 Mbits/sec 0.732 ms 0/2575 (0%) +[UE1] [2025-07-19 11:49:06] [ 5] 56.00-57.00 sec 3.59 MBytes 30.1 Mbits/sec 0.582 ms 0/2598 (0%) +[UE1] [2025-07-19 11:49:07] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.723 ms 0/2593 (0%) +[UE1] [2025-07-19 11:49:08] [ 5] 58.00-59.00 sec 3.59 MBytes 30.1 Mbits/sec 0.516 ms 0/2601 (0%) +[UE1] [2025-07-19 11:49:09] [ 5] 59.00-60.00 sec 3.57 MBytes 29.9 Mbits/sec 0.654 ms 0/2583 (0%) +[UE1] [2025-07-19 11:49:10] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.544 ms 0/2592 (0%) +[UE1] [2025-07-19 11:49:11] [ 5] 61.00-62.00 sec 3.58 MBytes 30.1 Mbits/sec 0.484 ms 0/2595 (0%) +[UE1] [2025-07-19 11:49:12] [ 5] 62.00-63.00 sec 3.51 MBytes 29.5 Mbits/sec 0.567 ms 0/2543 (0%) +[UE1] [2025-07-19 11:49:13] [ 5] 63.00-64.00 sec 3.64 MBytes 30.5 Mbits/sec 0.455 ms 0/2634 (0%) +[UE1] [2025-07-19 11:49:14] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.614 ms 0/2590 (0%) +[UE1] [2025-07-19 11:49:15] [ 5] 65.00-66.00 sec 3.55 MBytes 29.8 Mbits/sec 0.611 ms 0/2573 (0%) +[UE1] [2025-07-19 11:49:16] [ 5] 66.00-67.00 sec 3.60 MBytes 30.2 Mbits/sec 0.575 ms 0/2604 (0%) +[UE1] [2025-07-19 11:49:17] [ 5] 67.00-68.00 sec 3.55 MBytes 29.7 Mbits/sec 0.726 ms 0/2568 (0%) +[UE1] [2025-07-19 11:49:18] [ 5] 68.00-69.00 sec 3.31 MBytes 27.7 Mbits/sec 0.647 ms 0/2395 (0%) +[UE1] [2025-07-19 11:49:19] [ 5] 69.00-70.00 sec 3.72 MBytes 31.2 Mbits/sec 0.584 ms 0/2692 (0%) +[UE1] [2025-07-19 11:49:20] [ 5] 70.00-71.00 sec 3.71 MBytes 31.1 Mbits/sec 0.518 ms 0/2686 (0%) +[UE1] [2025-07-19 11:49:21] [ 5] 71.00-72.00 sec 3.60 MBytes 30.2 Mbits/sec 0.625 ms 0/2606 (0%) +[UE1] [2025-07-19 11:49:22] [ 5] 72.00-73.00 sec 3.49 MBytes 29.3 Mbits/sec 0.704 ms 0/2527 (0%) +[UE1] [2025-07-19 11:49:23] [ 5] 73.00-74.00 sec 3.46 MBytes 29.0 Mbits/sec 0.558 ms 0/2504 (0%) +[UE1] [2025-07-19 11:49:24] [ 5] 74.00-75.00 sec 3.77 MBytes 31.6 Mbits/sec 0.473 ms 0/2730 (0%) +[UE1] [2025-07-19 11:49:25] [ 5] 75.00-76.00 sec 3.60 MBytes 30.2 Mbits/sec 0.595 ms 0/2604 (0%) +[UE1] [2025-07-19 11:49:26] [ 5] 76.00-77.00 sec 3.56 MBytes 29.9 Mbits/sec 0.604 ms 0/2578 (0%) +[UE1] [2025-07-19 11:49:27] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.549 ms 0/2589 (0%) +[UE1] [2025-07-19 11:49:28] [ 5] 78.00-79.00 sec 3.59 MBytes 30.1 Mbits/sec 0.546 ms 0/2600 (0%) +[UE1] [2025-07-19 11:49:29] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.641 ms 0/2592 (0%) +[UE1] [2025-07-19 11:49:30] [ 5] 80.00-81.00 sec 3.57 MBytes 29.9 Mbits/sec 0.477 ms 0/2585 (0%) +[UE1] [2025-07-19 11:49:31] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.475 ms 0/2593 (0%) +[UE1] [2025-07-19 11:49:32] [ 5] 82.00-83.00 sec 3.56 MBytes 29.9 Mbits/sec 0.558 ms 0/2579 (0%) +[UE1] [2025-07-19 11:49:33] [ 5] 83.00-84.00 sec 3.59 MBytes 30.1 Mbits/sec 0.588 ms 0/2599 (0%) +[UE1] [2025-07-19 11:49:34] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.514 ms 0/2592 (0%) +[UE1] [2025-07-19 11:49:35] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2592 (0%) +[UE1] [2025-07-19 11:49:36] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2590 (0%) +[UE1] [2025-07-19 11:49:37] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 11:49:38] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2591 (0%) +[UE1] [2025-07-19 11:49:39] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE1] [2025-07-19 11:49:40] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.321 ms 0/2589 (0%) +[UE1] [2025-07-19 11:49:41] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2591 (0%) +[UE1] [2025-07-19 11:49:42] [ 5] 92.00-93.00 sec 3.56 MBytes 29.9 Mbits/sec 0.671 ms 0/2579 (0%) +[UE1] [2025-07-19 11:49:43] [ 5] 93.00-94.00 sec 3.59 MBytes 30.1 Mbits/sec 0.548 ms 0/2597 (0%) +[UE1] [2025-07-19 11:49:44] [ 5] 94.00-95.00 sec 3.55 MBytes 29.8 Mbits/sec 0.577 ms 0/2574 (0%) +[UE1] [2025-07-19 11:49:45] [ 5] 95.00-96.00 sec 3.58 MBytes 30.1 Mbits/sec 0.605 ms 0/2595 (0%) +[UE1] [2025-07-19 11:49:46] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.679 ms 0/2593 (0%) +[UE1] [2025-07-19 11:49:47] [ 5] 97.00-98.00 sec 3.59 MBytes 30.1 Mbits/sec 0.407 ms 0/2600 (0%) +[UE1] [2025-07-19 11:49:48] [ 5] 98.00-99.00 sec 3.56 MBytes 29.9 Mbits/sec 0.600 ms 0/2580 (0%) +[UE1] [2025-07-19 11:49:49] [ 5] 99.00-100.00 sec 3.29 MBytes 27.6 Mbits/sec 0.620 ms 0/2382 (0%) +[UE1] [2025-07-19 11:49:51] [ 5] 0.00-1.00 sec 4.97 MBytes 41.7 Mbits/sec 0.308 ms 0/3597 (0%) +[UE1] [2025-07-19 11:49:52] [ 5] 1.00-2.00 sec 4.57 MBytes 38.3 Mbits/sec 0.313 ms 0/3310 (0%) +[UE1] [2025-07-19 11:49:53] [ 5] 2.00-3.00 sec 4.23 MBytes 35.5 Mbits/sec 0.128 ms 3240/6305 (51%) +[UE1] [2025-07-19 11:49:54] [ 5] 3.00-4.00 sec 4.67 MBytes 39.1 Mbits/sec 0.130 ms 7138/10517 (68%) +[UE1] [2025-07-19 11:49:55] [ 5] 4.00-5.00 sec 4.83 MBytes 40.5 Mbits/sec 0.119 ms 7294/10795 (68%) +[UE1] [2025-07-19 11:49:56] [ 5] 5.00-6.00 sec 4.61 MBytes 38.7 Mbits/sec 0.095 ms 6846/10186 (67%) +[UE1] [2025-07-19 11:49:57] [ 5] 6.00-7.00 sec 4.65 MBytes 39.0 Mbits/sec 0.136 ms 6854/10219 (67%) +[UE1] [2025-07-19 11:49:58] [ 5] 7.00-8.00 sec 4.06 MBytes 34.0 Mbits/sec 0.086 ms 5939/8876 (67%) +[UE1] [2025-07-19 11:49:59] [ 5] 8.00-9.00 sec 4.04 MBytes 33.9 Mbits/sec 0.139 ms 6439/9365 (69%) +[UE1] [2025-07-19 11:50:00] [ 5] 9.00-10.00 sec 4.58 MBytes 38.4 Mbits/sec 0.102 ms 8042/11360 (71%) +[UE1] [2025-07-19 11:50:01] [ 5] 10.00-11.00 sec 4.61 MBytes 38.7 Mbits/sec 0.108 ms 7997/11334 (71%) +[UE1] [2025-07-19 11:50:02] [ 5] 11.00-12.00 sec 4.82 MBytes 40.5 Mbits/sec 0.123 ms 7338/10830 (68%) +[UE1] [2025-07-19 11:50:03] [ 5] 12.00-13.00 sec 4.58 MBytes 38.4 Mbits/sec 0.126 ms 6992/10309 (68%) +[UE1] [2025-07-19 11:50:04] [ 5] 13.00-14.00 sec 4.60 MBytes 38.6 Mbits/sec 0.120 ms 6940/10268 (68%) +[UE1] [2025-07-19 11:50:05] [ 5] 14.00-15.00 sec 4.51 MBytes 37.8 Mbits/sec 0.129 ms 6913/10178 (68%) +[UE1] [2025-07-19 11:50:06] [ 5] 15.00-16.00 sec 4.66 MBytes 39.1 Mbits/sec 0.081 ms 7079/10452 (68%) +[UE1] [2025-07-19 11:50:07] [ 5] 16.00-17.00 sec 4.57 MBytes 38.4 Mbits/sec 0.089 ms 6911/10223 (68%) +[UE1] [2025-07-19 11:50:08] [ 5] 17.00-18.00 sec 4.86 MBytes 40.8 Mbits/sec 0.096 ms 7384/10907 (68%) +[UE1] [2025-07-19 11:50:09] [ 5] 18.00-19.00 sec 4.55 MBytes 38.1 Mbits/sec 0.131 ms 6813/10106 (67%) +[UE1] [2025-07-19 11:50:10] [ 5] 19.00-20.00 sec 4.60 MBytes 38.6 Mbits/sec 0.103 ms 6893/10223 (67%) +[UE1] [2025-07-19 11:50:11] [ 5] 20.00-21.00 sec 4.61 MBytes 38.7 Mbits/sec 2.884 ms 7267/10607 (69%) +[UE1] [2025-07-19 11:50:12] [ 5] 21.00-22.00 sec 4.49 MBytes 37.7 Mbits/sec 0.104 ms 6832/10084 (68%) +[UE1] [2025-07-19 11:50:13] [ 5] 22.00-23.00 sec 4.66 MBytes 39.0 Mbits/sec 0.122 ms 6665/10036 (66%) +[UE1] [2025-07-19 11:50:14] [ 5] 23.00-24.00 sec 5.36 MBytes 44.9 Mbits/sec 0.136 ms 8465/12345 (69%) +[UE1] [2025-07-19 11:50:15] [ 5] 24.00-25.00 sec 9.50 MBytes 79.7 Mbits/sec 0.093 ms 12760/19636 (65%) +[UE1] [2025-07-19 11:50:16] [ 5] 25.00-26.00 sec 9.36 MBytes 78.5 Mbits/sec 0.120 ms 3069/9848 (31%) +[UE1] [2025-07-19 11:50:17] [ 5] 26.00-27.00 sec 10.0 MBytes 84.2 Mbits/sec 0.080 ms 3724/10996 (34%) +[UE1] [2025-07-19 11:50:18] [ 5] 27.00-28.00 sec 9.49 MBytes 79.6 Mbits/sec 0.111 ms 3306/10177 (32%) +[UE1] [2025-07-19 11:50:19] [ 5] 28.00-29.00 sec 9.29 MBytes 77.9 Mbits/sec 0.107 ms 3344/10070 (33%) +[UE1] [2025-07-19 11:50:20] [ 5] 29.00-30.00 sec 10.1 MBytes 84.4 Mbits/sec 0.125 ms 3689/10977 (34%) +[UE1] [2025-07-19 11:50:21] [ 5] 30.00-31.00 sec 8.16 MBytes 68.4 Mbits/sec 0.078 ms 2741/8650 (32%) +[UE1] [2025-07-19 11:50:22] [ 5] 31.00-32.00 sec 15.6 MBytes 131 Mbits/sec 0.187 ms 4408/15727 (28%) +[UE1] [2025-07-19 11:50:23] [ 5] 32.00-33.00 sec 12.7 MBytes 107 Mbits/sec 0.078 ms 834/10057 (8.3%) +[UE1] [2025-07-19 11:50:24] [ 5] 33.00-34.00 sec 15.4 MBytes 129 Mbits/sec 0.137 ms 27/11165 (0.24%) +[UE1] [2025-07-19 11:50:25] [ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 0.120 ms 0/10358 (0%) +[UE1] [2025-07-19 11:50:26] [ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 0.140 ms 0/10332 (0%) +[UE1] [2025-07-19 11:50:27] [ 5] 36.00-37.00 sec 14.4 MBytes 120 Mbits/sec 0.165 ms 0/10395 (0%) +[UE1] [2025-07-19 11:50:28] [ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 0.207 ms 0/10354 (0%) +[UE1] [2025-07-19 11:50:29] [ 5] 38.00-39.00 sec 14.2 MBytes 120 Mbits/sec 0.178 ms 0/10317 (0%) +[UE1] [2025-07-19 11:50:30] [ 5] 39.00-40.00 sec 13.9 MBytes 117 Mbits/sec 0.172 ms 0/10061 (0%) +[UE1] [2025-07-19 11:50:31] [ 5] 40.00-41.00 sec 11.7 MBytes 97.8 Mbits/sec 0.136 ms 315/8757 (3.6%) +[UE1] [2025-07-19 11:50:32] [ 5] 41.00-42.00 sec 15.1 MBytes 127 Mbits/sec 0.141 ms 1205/12173 (9.9%) +[UE1] [2025-07-19 11:50:33] [ 5] 42.00-43.00 sec 11.7 MBytes 98.2 Mbits/sec 0.099 ms 19/8497 (0.22%) +[UE1] [2025-07-19 11:50:34] [ 5] 43.00-44.00 sec 16.0 MBytes 134 Mbits/sec 0.153 ms 705/12267 (5.7%) +[UE1] [2025-07-19 11:50:35] [ 5] 44.00-45.00 sec 13.3 MBytes 112 Mbits/sec 0.091 ms 16/9671 (0.17%) +[UE1] [2025-07-19 11:50:36] [ 5] 45.00-46.00 sec 15.3 MBytes 128 Mbits/sec 0.164 ms 14/11086 (0.13%) +[UE1] [2025-07-19 11:50:37] [ 5] 46.00-47.00 sec 11.3 MBytes 94.9 Mbits/sec 0.071 ms 572/8765 (6.5%) +[UE1] [2025-07-19 11:50:38] [ 5] 47.00-48.00 sec 15.9 MBytes 133 Mbits/sec 0.237 ms 408/11895 (3.4%) +[UE1] [2025-07-19 11:50:39] [ 5] 48.00-49.00 sec 14.5 MBytes 121 Mbits/sec 0.158 ms 32/10499 (0.3%) +[UE1] [2025-07-19 11:50:40] [ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 0.132 ms 0/10369 (0%) +[UE1] [2025-07-19 11:50:41] [ 5] 50.00-51.00 sec 13.7 MBytes 115 Mbits/sec 0.165 ms 0/9955 (0%) +[UE1] [2025-07-19 11:50:42] [ 5] 51.00-52.00 sec 12.8 MBytes 107 Mbits/sec 0.109 ms 260/9495 (2.7%) +[UE1] [2025-07-19 11:50:43] [ 5] 52.00-53.00 sec 15.2 MBytes 127 Mbits/sec 0.155 ms 71/11044 (0.64%) +[UE1] [2025-07-19 11:50:44] [ 5] 53.00-54.00 sec 14.1 MBytes 118 Mbits/sec 0.118 ms 470/10694 (4.4%) +[UE1] [2025-07-19 11:50:45] [ 5] 54.00-55.00 sec 14.2 MBytes 119 Mbits/sec 0.211 ms 91/10368 (0.88%) +[UE1] [2025-07-19 11:50:46] [ 5] 55.00-56.00 sec 14.5 MBytes 121 Mbits/sec 0.146 ms 58/10530 (0.55%) +[UE1] [2025-07-19 11:50:47] [ 5] 56.00-57.00 sec 14.2 MBytes 119 Mbits/sec 0.141 ms 0/10298 (0%) +[UE1] [2025-07-19 11:50:48] [ 5] 57.00-58.00 sec 14.5 MBytes 121 Mbits/sec 0.154 ms 0/10468 (0%) +[UE1] [2025-07-19 11:50:49] [ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 0.143 ms 0/10349 (0%) +[UE1] [2025-07-19 11:50:50] [ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 0.203 ms 0/10356 (0%) +[UE1] [2025-07-19 11:50:51] [ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 0.187 ms 0/10387 (0%) +[UE1] [2025-07-19 11:50:52] [ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 0.179 ms 0/10376 (0%) +[UE1] [2025-07-19 11:50:53] [ 5] 62.00-63.00 sec 11.8 MBytes 98.8 Mbits/sec 0.102 ms 5/8531 (0.059%) +[UE1] [2025-07-19 11:50:54] [ 5] 63.00-64.00 sec 15.2 MBytes 127 Mbits/sec 0.193 ms 522/11510 (4.5%) +[UE1] [2025-07-19 11:50:55] [ 5] 64.00-65.00 sec 8.95 MBytes 75.1 Mbits/sec 0.084 ms 280/6761 (4.1%) +[UE1] [2025-07-19 11:50:56] [ 5] 65.00-66.00 sec 8.77 MBytes 73.6 Mbits/sec 0.096 ms 3164/9515 (33%) +[UE1] [2025-07-19 11:50:57] [ 5] 66.00-67.00 sec 10.0 MBytes 84.1 Mbits/sec 0.107 ms 4069/11331 (36%) +[UE1] [2025-07-19 11:50:58] [ 5] 67.00-68.00 sec 8.76 MBytes 73.5 Mbits/sec 0.071 ms 2983/9330 (32%) +[UE1] [2025-07-19 11:50:59] [ 5] 68.00-69.00 sec 9.33 MBytes 78.3 Mbits/sec 0.100 ms 3711/10467 (35%) +[UE1] [2025-07-19 11:51:00] [ 5] 69.00-70.00 sec 9.50 MBytes 79.7 Mbits/sec 0.107 ms 3806/10688 (36%) +[UE1] [2025-07-19 11:51:01] [ 5] 70.00-71.00 sec 9.50 MBytes 79.7 Mbits/sec 0.089 ms 3402/10281 (33%) +[UE1] [2025-07-19 11:51:02] [ 5] 71.00-72.00 sec 16.1 MBytes 135 Mbits/sec 0.190 ms 3539/15202 (23%) +[UE1] [2025-07-19 11:51:03] [ 5] 72.00-73.00 sec 13.5 MBytes 114 Mbits/sec 0.146 ms 0/9804 (0%) +[UE1] [2025-07-19 11:51:04] [ 5] 73.00-74.00 sec 12.9 MBytes 108 Mbits/sec 0.080 ms 363/9721 (3.7%) +[UE1] [2025-07-19 11:51:05] [ 5] 74.00-75.00 sec 15.2 MBytes 128 Mbits/sec 0.144 ms 259/11294 (2.3%) +[UE1] [2025-07-19 11:51:06] [ 5] 75.00-76.00 sec 13.8 MBytes 116 Mbits/sec 0.182 ms 22/10030 (0.22%) +[UE1] [2025-07-19 11:51:07] [ 5] 76.00-77.00 sec 13.3 MBytes 112 Mbits/sec 0.119 ms 424/10055 (4.2%) +[UE1] [2025-07-19 11:51:08] [ 5] 77.00-78.00 sec 15.2 MBytes 128 Mbits/sec 0.162 ms 0/11028 (0%) +[UE1] [2025-07-19 11:51:09] [ 5] 78.00-79.00 sec 11.7 MBytes 98.0 Mbits/sec 0.106 ms 897/9353 (9.6%) +[UE1] [2025-07-19 11:51:10] [ 5] 79.00-80.00 sec 15.9 MBytes 134 Mbits/sec 0.146 ms 22/11547 (0.19%) +[UE1] [2025-07-19 11:51:11] [ 5] 80.00-81.00 sec 14.4 MBytes 121 Mbits/sec 0.150 ms 0/10412 (0%) +[UE1] [2025-07-19 11:51:12] [ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 0.082 ms 0/10382 (0%) +[UE1] [2025-07-19 11:51:13] [ 5] 82.00-83.00 sec 14.2 MBytes 119 Mbits/sec 0.207 ms 0/10309 (0%) +[UE1] [2025-07-19 11:51:14] [ 5] 83.00-84.00 sec 14.1 MBytes 118 Mbits/sec 0.159 ms 0/10202 (0%) +[UE1] [2025-07-19 11:51:15] [ 5] 84.00-85.00 sec 13.7 MBytes 115 Mbits/sec 0.151 ms 0/9943 (0%) +[UE1] [2025-07-19 11:51:16] [ 5] 85.00-86.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 399/9370 (4.3%) +[UE1] [2025-07-19 11:51:17] [ 5] 86.00-87.00 sec 15.5 MBytes 130 Mbits/sec 0.143 ms 606/11810 (5.1%) +[UE1] [2025-07-19 11:51:18] [ 5] 87.00-88.00 sec 14.1 MBytes 119 Mbits/sec 0.145 ms 0/10245 (0%) +[UE1] [2025-07-19 11:51:19] [ 5] 88.00-89.00 sec 14.4 MBytes 121 Mbits/sec 0.212 ms 41/10466 (0.39%) +[UE1] [2025-07-19 11:51:20] [ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 0.167 ms 0/10374 (0%) +[UE1] [2025-07-19 11:51:21] [ 5] 90.00-91.00 sec 14.5 MBytes 121 Mbits/sec 0.174 ms 0/10468 (0%) +[UE1] [2025-07-19 11:51:22] [ 5] 91.00-92.00 sec 14.4 MBytes 121 Mbits/sec 0.139 ms 0/10427 (0%) +[UE1] [2025-07-19 11:51:23] [ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 0.191 ms 0/10335 (0%) +[UE1] [2025-07-19 11:51:24] [ 5] 93.00-94.00 sec 13.4 MBytes 113 Mbits/sec 0.125 ms 0/9720 (0%) +[UE1] [2025-07-19 11:51:25] [ 5] 94.00-95.00 sec 14.1 MBytes 118 Mbits/sec 0.252 ms 432/10655 (4.1%) +[UE1] [2025-07-19 11:51:26] [ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 0.163 ms 101/10450 (0.97%) +[UE1] [2025-07-19 11:51:27] [ 5] 96.00-97.00 sec 14.1 MBytes 118 Mbits/sec 0.169 ms 27/10241 (0.26%) +[UE1] [2025-07-19 11:51:28] [ 5] 97.00-98.00 sec 14.5 MBytes 122 Mbits/sec 0.158 ms 244/10779 (2.3%) +[UE1] [2025-07-19 11:51:29] [ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 0.095 ms 0/10357 (0%) +[UE1] [2025-07-19 11:51:31] [ 5] 99.00-100.00 sec 14.8 MBytes 124 Mbits/sec 0.120 ms 0/10747 (0%) +[UE1] [2025-07-19 11:51:32] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.216 ms 0/2694 (0%) +[UE1] [2025-07-19 11:51:33] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:34] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2592 (0%) +[UE1] [2025-07-19 11:51:35] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.315 ms 0/2587 (0%) +[UE1] [2025-07-19 11:51:36] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2589 (0%) +[UE1] [2025-07-19 11:51:37] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.279 ms 0/2591 (0%) +[UE1] [2025-07-19 11:51:38] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.272 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:39] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.211 ms 0/2587 (0%) +[UE1] [2025-07-19 11:51:40] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:41] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.285 ms 0/2589 (0%) +[UE1] [2025-07-19 11:51:42] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2593 (0%) +[UE1] [2025-07-19 11:51:43] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2592 (0%) +[UE1] [2025-07-19 11:51:44] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.312 ms 0/2589 (0%) +[UE1] [2025-07-19 11:51:45] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.186 ms 0/2588 (0%) +[UE1] [2025-07-19 11:51:46] [ 5] 14.00-15.00 sec 3.57 MBytes 30.0 Mbits/sec 0.286 ms 0/2587 (0%) +[UE1] [2025-07-19 11:51:47] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2592 (0%) +[UE1] [2025-07-19 11:51:48] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.317 ms 0/2588 (0%) +[UE1] [2025-07-19 11:51:49] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2592 (0%) +[UE1] [2025-07-19 11:51:50] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:51] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:52] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.118 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:53] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2589 (0%) +[UE1] [2025-07-19 11:51:54] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:55] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2590 (0%) +[UE1] [2025-07-19 11:51:56] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE1] [2025-07-19 11:51:57] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2591 (0%) +[UE1] [2025-07-19 11:51:58] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2589 (0%) +[UE1] [2025-07-19 11:51:59] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:00] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:01] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2592 (0%) +[UE1] [2025-07-19 11:52:02] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2588 (0%) +[UE1] [2025-07-19 11:52:03] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE1] [2025-07-19 11:52:04] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:05] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:06] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:07] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2589 (0%) +[UE1] [2025-07-19 11:52:08] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:09] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:10] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:11] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2589 (0%) +[UE1] [2025-07-19 11:52:12] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:13] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:14] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.304 ms 0/2587 (0%) +[UE1] [2025-07-19 11:52:15] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2593 (0%) +[UE1] [2025-07-19 11:52:16] [ 5] 44.00-45.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2587 (0%) +[UE1] [2025-07-19 11:52:17] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:18] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2591 (0%) +[UE1] [2025-07-19 11:52:19] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.270 ms 0/2588 (0%) +[UE1] [2025-07-19 11:52:20] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.297 ms 0/2593 (0%) +[UE1] [2025-07-19 11:52:21] [ 5] 49.00-50.00 sec 3.56 MBytes 29.9 Mbits/sec 0.594 ms 0/2581 (0%) +[UE1] [2025-07-19 11:52:22] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.592 ms 0/2593 (0%) +[UE1] [2025-07-19 11:52:23] [ 5] 51.00-52.00 sec 3.54 MBytes 29.7 Mbits/sec 0.549 ms 0/2563 (0%) +[UE1] [2025-07-19 11:52:24] [ 5] 52.00-53.00 sec 3.61 MBytes 30.3 Mbits/sec 0.612 ms 0/2614 (0%) +[UE1] [2025-07-19 11:52:25] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.540 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:26] [ 5] 54.00-55.00 sec 3.58 MBytes 30.1 Mbits/sec 0.429 ms 0/2595 (0%) +[UE1] [2025-07-19 11:52:27] [ 5] 55.00-56.00 sec 3.56 MBytes 29.9 Mbits/sec 0.594 ms 0/2577 (0%) +[UE1] [2025-07-19 11:52:28] [ 5] 56.00-57.00 sec 3.59 MBytes 30.1 Mbits/sec 0.546 ms 0/2602 (0%) +[UE1] [2025-07-19 11:52:29] [ 5] 57.00-58.00 sec 3.57 MBytes 30.0 Mbits/sec 0.657 ms 0/2588 (0%) +[UE1] [2025-07-19 11:52:30] [ 5] 58.00-59.00 sec 3.32 MBytes 27.9 Mbits/sec 0.760 ms 0/2407 (0%) +[UE1] [2025-07-19 11:52:31] [ 5] 59.00-60.00 sec 3.59 MBytes 30.1 Mbits/sec 0.633 ms 0/2600 (0%) +[UE1] [2025-07-19 11:52:32] [ 5] 60.00-61.00 sec 3.73 MBytes 31.3 Mbits/sec 0.635 ms 0/2703 (0%) +[UE1] [2025-07-19 11:52:33] [ 5] 61.00-62.00 sec 3.65 MBytes 30.6 Mbits/sec 0.607 ms 0/2643 (0%) +[UE1] [2025-07-19 11:52:34] [ 5] 62.00-63.00 sec 3.55 MBytes 29.8 Mbits/sec 0.694 ms 0/2569 (0%) +[UE1] [2025-07-19 11:52:35] [ 5] 63.00-64.00 sec 3.62 MBytes 30.3 Mbits/sec 0.448 ms 0/2619 (0%) +[UE1] [2025-07-19 11:52:36] [ 5] 64.00-65.00 sec 3.40 MBytes 28.6 Mbits/sec 0.607 ms 0/2465 (0%) +[UE1] [2025-07-19 11:52:37] [ 5] 65.00-66.00 sec 3.69 MBytes 31.0 Mbits/sec 0.606 ms 0/2674 (0%) +[UE1] [2025-07-19 11:52:38] [ 5] 66.00-67.00 sec 3.62 MBytes 30.4 Mbits/sec 0.660 ms 0/2623 (0%) +[UE1] [2025-07-19 11:52:39] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.681 ms 0/2591 (0%) +[UE1] [2025-07-19 11:52:40] [ 5] 68.00-69.00 sec 3.56 MBytes 29.9 Mbits/sec 0.537 ms 0/2580 (0%) +[UE1] [2025-07-19 11:52:41] [ 5] 69.00-70.00 sec 3.57 MBytes 29.9 Mbits/sec 0.563 ms 0/2584 (0%) +[UE1] [2025-07-19 11:52:42] [ 5] 70.00-71.00 sec 3.60 MBytes 30.2 Mbits/sec 0.673 ms 0/2609 (0%) +[UE1] [2025-07-19 11:52:43] [ 5] 71.00-72.00 sec 3.57 MBytes 30.0 Mbits/sec 0.483 ms 0/2588 (0%) +[UE1] [2025-07-19 11:52:44] [ 5] 72.00-73.00 sec 3.56 MBytes 29.9 Mbits/sec 0.617 ms 0/2579 (0%) +[UE1] [2025-07-19 11:52:45] [ 5] 73.00-74.00 sec 3.40 MBytes 28.5 Mbits/sec 0.578 ms 0/2464 (0%) +[UE1] [2025-07-19 11:52:46] [ 5] 74.00-75.00 sec 3.55 MBytes 29.8 Mbits/sec 0.580 ms 0/2569 (0%) +[UE1] [2025-07-19 11:52:47] [ 5] 75.00-76.00 sec 3.71 MBytes 31.2 Mbits/sec 0.602 ms 0/2689 (0%) +[UE1] [2025-07-19 11:52:48] [ 5] 76.00-77.00 sec 3.64 MBytes 30.5 Mbits/sec 0.543 ms 0/2633 (0%) +[UE1] [2025-07-19 11:52:49] [ 5] 77.00-78.00 sec 3.57 MBytes 29.9 Mbits/sec 0.708 ms 0/2584 (0%) +[UE1] [2025-07-19 11:52:50] [ 5] 78.00-79.00 sec 3.59 MBytes 30.1 Mbits/sec 0.651 ms 0/2602 (0%) +[UE1] [2025-07-19 11:52:51] [ 5] 79.00-80.00 sec 3.59 MBytes 30.1 Mbits/sec 0.445 ms 0/2599 (0%) +[UE1] [2025-07-19 11:52:52] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.615 ms 0/2594 (0%) +[UE1] [2025-07-19 11:52:53] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.659 ms 0/2586 (0%) +[UE1] [2025-07-19 11:52:54] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2593 (0%) +[UE1] [2025-07-19 11:52:55] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.359 ms 0/2592 (0%) +[UE1] [2025-07-19 11:52:56] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:57] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2589 (0%) +[UE1] [2025-07-19 11:52:58] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE1] [2025-07-19 11:52:59] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.310 ms 0/2590 (0%) +[UE1] [2025-07-19 11:53:00] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2589 (0%) +[UE1] [2025-07-19 11:53:01] [ 5] 89.00-90.00 sec 3.57 MBytes 29.9 Mbits/sec 0.538 ms 0/2582 (0%) +[UE1] [2025-07-19 11:53:02] [ 5] 90.00-91.00 sec 3.57 MBytes 29.9 Mbits/sec 0.520 ms 0/2585 (0%) +[UE1] [2025-07-19 11:53:03] [ 5] 91.00-92.00 sec 3.59 MBytes 30.1 Mbits/sec 0.532 ms 0/2602 (0%) +[UE1] [2025-07-19 11:53:04] [ 5] 92.00-93.00 sec 3.56 MBytes 29.9 Mbits/sec 0.534 ms 0/2578 (0%) +[UE1] [2025-07-19 11:53:05] [ 5] 93.00-94.00 sec 3.58 MBytes 30.1 Mbits/sec 0.631 ms 0/2596 (0%) +[UE1] [2025-07-19 11:53:06] [ 5] 94.00-95.00 sec 3.42 MBytes 28.7 Mbits/sec 0.492 ms 0/2478 (0%) +[UE1] [2025-07-19 11:53:07] [ 5] 95.00-96.00 sec 3.70 MBytes 31.1 Mbits/sec 0.659 ms 0/2682 (0%) +[UE1] [2025-07-19 11:53:08] [ 5] 96.00-97.00 sec 3.54 MBytes 29.7 Mbits/sec 0.681 ms 0/2564 (0%) +[UE1] [2025-07-19 11:53:09] [ 5] 97.00-98.00 sec 3.64 MBytes 30.6 Mbits/sec 0.575 ms 0/2639 (0%) +[UE1] [2025-07-19 11:53:10] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.568 ms 0/2590 (0%) +[UE1] [2025-07-19 11:53:11] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.532 ms 0/2589 (0%) +[UE1] [2025-07-19 11:53:13] [ 5] 0.00-1.00 sec 4.71 MBytes 39.5 Mbits/sec 0.311 ms 0/3412 (0%) +[UE1] [2025-07-19 11:53:14] [ 5] 1.00-2.00 sec 4.73 MBytes 39.6 Mbits/sec 0.301 ms 0/3423 (0%) +[UE1] [2025-07-19 11:53:15] [ 5] 2.00-3.00 sec 3.91 MBytes 32.8 Mbits/sec 0.292 ms 2259/5093 (44%) +[UE1] [2025-07-19 11:53:16] [ 5] 3.00-4.00 sec 4.26 MBytes 35.7 Mbits/sec 0.122 ms 6063/9147 (66%) +[UE1] [2025-07-19 11:53:17] [ 5] 4.00-5.00 sec 4.27 MBytes 35.9 Mbits/sec 0.141 ms 6517/9612 (68%) +[UE1] [2025-07-19 11:53:18] [ 5] 5.00-6.00 sec 4.54 MBytes 38.1 Mbits/sec 0.103 ms 8765/12052 (73%) +[UE1] [2025-07-19 11:53:19] [ 5] 6.00-7.00 sec 4.56 MBytes 38.3 Mbits/sec 0.138 ms 7456/10761 (69%) +[UE1] [2025-07-19 11:53:20] [ 5] 7.00-8.00 sec 4.66 MBytes 39.1 Mbits/sec 0.127 ms 7061/10433 (68%) +[UE1] [2025-07-19 11:53:21] [ 5] 8.00-9.00 sec 4.54 MBytes 38.1 Mbits/sec 0.059 ms 7128/10419 (68%) +[UE1] [2025-07-19 11:53:22] [ 5] 9.00-10.00 sec 4.87 MBytes 40.8 Mbits/sec 0.125 ms 7146/10672 (67%) +[UE1] [2025-07-19 11:53:23] [ 5] 10.00-11.00 sec 4.78 MBytes 40.1 Mbits/sec 0.097 ms 7286/10746 (68%) +[UE1] [2025-07-19 11:53:24] [ 5] 11.00-12.00 sec 4.63 MBytes 38.9 Mbits/sec 0.108 ms 6687/10042 (67%) +[UE1] [2025-07-19 11:53:25] [ 5] 12.00-13.00 sec 4.60 MBytes 38.6 Mbits/sec 0.142 ms 6893/10225 (67%) +[UE1] [2025-07-19 11:53:26] [ 5] 13.00-14.00 sec 4.33 MBytes 36.3 Mbits/sec 0.082 ms 6523/9656 (68%) +[UE1] [2025-07-19 11:53:27] [ 5] 14.00-15.00 sec 4.30 MBytes 36.1 Mbits/sec 0.129 ms 6414/9530 (67%) +[UE1] [2025-07-19 11:53:28] [ 5] 15.00-16.00 sec 4.53 MBytes 38.0 Mbits/sec 0.101 ms 7892/11171 (71%) +[UE1] [2025-07-19 11:53:29] [ 5] 16.00-17.00 sec 4.65 MBytes 39.0 Mbits/sec 0.110 ms 7647/11011 (69%) +[UE1] [2025-07-19 11:53:30] [ 5] 17.00-18.00 sec 4.60 MBytes 38.6 Mbits/sec 0.119 ms 7006/10337 (68%) +[UE1] [2025-07-19 11:53:31] [ 5] 18.00-19.00 sec 4.52 MBytes 37.9 Mbits/sec 0.139 ms 6670/9945 (67%) +[UE1] [2025-07-19 11:53:32] [ 5] 19.00-20.00 sec 4.61 MBytes 38.7 Mbits/sec 0.105 ms 7096/10434 (68%) +[UE1] [2025-07-19 11:53:33] [ 5] 20.00-21.00 sec 6.93 MBytes 58.2 Mbits/sec 0.100 ms 10863/15885 (68%) +[UE1] [2025-07-19 11:53:34] [ 5] 21.00-22.00 sec 10.1 MBytes 84.9 Mbits/sec 0.102 ms 8944/16277 (55%) +[UE1] [2025-07-19 11:53:35] [ 5] 22.00-23.00 sec 9.36 MBytes 78.5 Mbits/sec 0.113 ms 3236/10015 (32%) +[UE1] [2025-07-19 11:53:36] [ 5] 23.00-24.00 sec 8.89 MBytes 74.5 Mbits/sec 0.114 ms 3181/9616 (33%) +[UE1] [2025-07-19 11:53:37] [ 5] 24.00-25.00 sec 9.37 MBytes 78.6 Mbits/sec 0.101 ms 3886/10669 (36%) +[UE1] [2025-07-19 11:53:38] [ 5] 25.00-26.00 sec 9.32 MBytes 78.2 Mbits/sec 0.075 ms 3156/9905 (32%) +[UE1] [2025-07-19 11:53:39] [ 5] 26.00-27.00 sec 9.49 MBytes 79.6 Mbits/sec 0.089 ms 4092/10961 (37%) +[UE1] [2025-07-19 11:53:40] [ 5] 27.00-28.00 sec 11.9 MBytes 99.9 Mbits/sec 0.087 ms 4333/12959 (33%) +[UE1] [2025-07-19 11:53:41] [ 5] 28.00-29.00 sec 14.1 MBytes 118 Mbits/sec 0.174 ms 1168/11361 (10%) +[UE1] [2025-07-19 11:53:42] [ 5] 29.00-30.00 sec 12.3 MBytes 103 Mbits/sec 0.076 ms 1188/10084 (12%) +[UE1] [2025-07-19 11:53:43] [ 5] 30.00-31.00 sec 15.9 MBytes 133 Mbits/sec 0.149 ms 48/11548 (0.42%) +[UE1] [2025-07-19 11:53:44] [ 5] 31.00-32.00 sec 14.4 MBytes 121 Mbits/sec 0.115 ms 121/10530 (1.1%) +[UE1] [2025-07-19 11:53:45] [ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 0.105 ms 0/10325 (0%) +[UE1] [2025-07-19 11:53:46] [ 5] 33.00-34.00 sec 12.4 MBytes 104 Mbits/sec 0.154 ms 21/9012 (0.23%) +[UE1] [2025-07-19 11:53:47] [ 5] 34.00-35.00 sec 14.4 MBytes 120 Mbits/sec 0.162 ms 1398/11791 (12%) +[UE1] [2025-07-19 11:53:48] [ 5] 35.00-36.00 sec 13.8 MBytes 116 Mbits/sec 0.146 ms 397/10425 (3.8%) +[UE1] [2025-07-19 11:53:49] [ 5] 36.00-37.00 sec 14.2 MBytes 119 Mbits/sec 0.132 ms 0/10279 (0%) +[UE1] [2025-07-19 11:53:50] [ 5] 37.00-38.00 sec 14.4 MBytes 121 Mbits/sec 0.185 ms 19/10454 (0.18%) +[UE1] [2025-07-19 11:53:51] [ 5] 38.00-39.00 sec 14.5 MBytes 122 Mbits/sec 0.140 ms 0/10517 (0%) +[UE1] [2025-07-19 11:53:52] [ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 0.170 ms 0/10359 (0%) +[UE1] [2025-07-19 11:53:53] [ 5] 40.00-41.00 sec 13.4 MBytes 113 Mbits/sec 0.156 ms 0/9716 (0%) +[UE1] [2025-07-19 11:53:54] [ 5] 41.00-42.00 sec 14.6 MBytes 122 Mbits/sec 0.119 ms 85/10639 (0.8%) +[UE1] [2025-07-19 11:53:55] [ 5] 42.00-43.00 sec 14.5 MBytes 121 Mbits/sec 0.152 ms 38/10514 (0.36%) +[UE1] [2025-07-19 11:53:56] [ 5] 43.00-44.00 sec 14.1 MBytes 118 Mbits/sec 0.168 ms 0/10228 (0%) +[UE1] [2025-07-19 11:53:57] [ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 0.145 ms 11/10387 (0.11%) +[UE1] [2025-07-19 11:53:58] [ 5] 45.00-46.00 sec 14.4 MBytes 121 Mbits/sec 0.123 ms 44/10457 (0.42%) +[UE1] [2025-07-19 11:53:59] [ 5] 46.00-47.00 sec 14.5 MBytes 122 Mbits/sec 0.177 ms 0/10518 (0%) +[UE1] [2025-07-19 11:54:00] [ 5] 47.00-48.00 sec 14.5 MBytes 121 Mbits/sec 0.177 ms 0/10486 (0%) +[UE1] [2025-07-19 11:54:01] [ 5] 48.00-49.00 sec 14.1 MBytes 118 Mbits/sec 0.113 ms 0/10217 (0%) +[UE1] [2025-07-19 11:54:02] [ 5] 49.00-50.00 sec 12.1 MBytes 101 Mbits/sec 0.099 ms 602/9347 (6.4%) +[UE1] [2025-07-19 11:54:03] [ 5] 50.00-51.00 sec 15.0 MBytes 126 Mbits/sec 0.197 ms 126/11016 (1.1%) +[UE1] [2025-07-19 11:54:04] [ 5] 51.00-52.00 sec 14.0 MBytes 117 Mbits/sec 0.201 ms 89/10191 (0.87%) +[UE1] [2025-07-19 11:54:05] [ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 0.181 ms 300/10665 (2.8%) +[UE1] [2025-07-19 11:54:06] [ 5] 53.00-54.00 sec 13.1 MBytes 110 Mbits/sec 0.144 ms 32/9529 (0.34%) +[UE1] [2025-07-19 11:54:07] [ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 0.247 ms 809/11142 (7.3%) +[UE1] [2025-07-19 11:54:08] [ 5] 55.00-56.00 sec 14.6 MBytes 122 Mbits/sec 0.188 ms 0/10551 (0%) +[UE1] [2025-07-19 11:54:09] [ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 0.163 ms 0/10326 (0%) +[UE1] [2025-07-19 11:54:10] [ 5] 57.00-58.00 sec 14.2 MBytes 119 Mbits/sec 0.155 ms 0/10292 (0%) +[UE1] [2025-07-19 11:54:11] [ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 0.111 ms 0/10382 (0%) +[UE1] [2025-07-19 11:54:12] [ 5] 59.00-60.00 sec 13.5 MBytes 113 Mbits/sec 0.197 ms 0/9753 (0%) +[UE1] [2025-07-19 11:54:13] [ 5] 60.00-61.00 sec 8.74 MBytes 73.3 Mbits/sec 0.077 ms 201/6533 (3.1%) +[UE1] [2025-07-19 11:54:14] [ 5] 61.00-62.00 sec 9.40 MBytes 78.9 Mbits/sec 0.088 ms 3279/10088 (33%) +[UE1] [2025-07-19 11:54:15] [ 5] 62.00-63.00 sec 9.32 MBytes 78.2 Mbits/sec 0.079 ms 3270/10018 (33%) +[UE1] [2025-07-19 11:54:16] [ 5] 63.00-64.00 sec 10.0 MBytes 84.2 Mbits/sec 0.102 ms 3931/11196 (35%) +[UE1] [2025-07-19 11:54:17] [ 5] 64.00-65.00 sec 8.75 MBytes 73.4 Mbits/sec 0.093 ms 2933/9272 (32%) +[UE1] [2025-07-19 11:54:18] [ 5] 65.00-66.00 sec 10.1 MBytes 84.4 Mbits/sec 0.080 ms 4073/11357 (36%) +[UE1] [2025-07-19 11:54:19] [ 5] 66.00-67.00 sec 9.48 MBytes 79.5 Mbits/sec 0.109 ms 3354/10218 (33%) +[UE1] [2025-07-19 11:54:20] [ 5] 67.00-68.00 sec 15.9 MBytes 133 Mbits/sec 0.159 ms 3239/14727 (22%) +[UE1] [2025-07-19 11:54:21] [ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 0.136 ms 0/10347 (0%) +[UE1] [2025-07-19 11:54:22] [ 5] 69.00-70.00 sec 14.5 MBytes 122 Mbits/sec 0.155 ms 13/10525 (0.12%) +[UE1] [2025-07-19 11:54:23] [ 5] 70.00-71.00 sec 14.1 MBytes 119 Mbits/sec 0.165 ms 0/10242 (0%) +[UE1] [2025-07-19 11:54:24] [ 5] 71.00-72.00 sec 13.7 MBytes 115 Mbits/sec 0.181 ms 0/9937 (0%) +[UE1] [2025-07-19 11:54:25] [ 5] 72.00-73.00 sec 13.8 MBytes 116 Mbits/sec 0.157 ms 728/10742 (6.8%) +[UE1] [2025-07-19 11:54:26] [ 5] 73.00-74.00 sec 14.4 MBytes 121 Mbits/sec 0.136 ms 0/10416 (0%) +[UE1] [2025-07-19 11:54:27] [ 5] 74.00-75.00 sec 11.2 MBytes 93.6 Mbits/sec 0.077 ms 24/8108 (0.3%) +[UE1] [2025-07-19 11:54:28] [ 5] 75.00-76.00 sec 15.8 MBytes 132 Mbits/sec 0.184 ms 1140/12565 (9.1%) +[UE1] [2025-07-19 11:54:29] [ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 0.148 ms 0/10344 (0%) +[UE1] [2025-07-19 11:54:30] [ 5] 77.00-78.00 sec 14.2 MBytes 119 Mbits/sec 0.136 ms 0/10302 (0%) +[UE1] [2025-07-19 11:54:31] [ 5] 78.00-79.00 sec 13.6 MBytes 114 Mbits/sec 0.077 ms 118/9946 (1.2%) +[UE1] [2025-07-19 11:54:32] [ 5] 79.00-80.00 sec 15.3 MBytes 128 Mbits/sec 0.185 ms 0/11058 (0%) +[UE1] [2025-07-19 11:54:33] [ 5] 80.00-81.00 sec 14.1 MBytes 118 Mbits/sec 0.190 ms 0/10223 (0%) +[UE1] [2025-07-19 11:54:34] [ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 0.193 ms 0/10337 (0%) +[UE1] [2025-07-19 11:54:35] [ 5] 82.00-83.00 sec 12.0 MBytes 101 Mbits/sec 0.119 ms 561/9272 (6.1%) +[UE1] [2025-07-19 11:54:36] [ 5] 83.00-84.00 sec 15.4 MBytes 129 Mbits/sec 0.166 ms 218/11349 (1.9%) +[UE1] [2025-07-19 11:54:37] [ 5] 84.00-85.00 sec 14.2 MBytes 119 Mbits/sec 0.135 ms 56/10366 (0.54%) +[UE1] [2025-07-19 11:54:38] [ 5] 85.00-86.00 sec 13.3 MBytes 112 Mbits/sec 0.098 ms 0/9643 (0%) +[UE1] [2025-07-19 11:54:39] [ 5] 86.00-87.00 sec 15.3 MBytes 128 Mbits/sec 0.081 ms 260/11312 (2.3%) +[UE1] [2025-07-19 11:54:40] [ 5] 87.00-88.00 sec 14.2 MBytes 119 Mbits/sec 0.138 ms 0/10273 (0%) +[UE1] [2025-07-19 11:54:41] [ 5] 88.00-89.00 sec 14.5 MBytes 122 Mbits/sec 0.179 ms 0/10489 (0%) +[UE1] [2025-07-19 11:54:42] [ 5] 89.00-90.00 sec 14.4 MBytes 121 Mbits/sec 0.139 ms 0/10446 (0%) +[UE1] [2025-07-19 11:54:43] [ 5] 90.00-91.00 sec 14.4 MBytes 121 Mbits/sec 0.179 ms 0/10404 (0%) +[UE1] [2025-07-19 11:54:44] [ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 0.164 ms 0/10330 (0%) +[UE1] [2025-07-19 11:54:45] [ 5] 92.00-93.00 sec 14.2 MBytes 119 Mbits/sec 0.158 ms 0/10298 (0%) +[UE1] [2025-07-19 11:54:46] [ 5] 93.00-94.00 sec 14.5 MBytes 122 Mbits/sec 0.148 ms 0/10503 (0%) +[UE1] [2025-07-19 11:54:47] [ 5] 94.00-95.00 sec 14.5 MBytes 122 Mbits/sec 0.116 ms 0/10505 (0%) +[UE1] [2025-07-19 11:54:48] [ 5] 95.00-96.00 sec 14.4 MBytes 121 Mbits/sec 0.202 ms 0/10439 (0%) +[UE1] [2025-07-19 11:54:49] [ 5] 96.00-97.00 sec 14.1 MBytes 118 Mbits/sec 0.168 ms 0/10225 (0%) +[UE1] [2025-07-19 11:54:50] [ 5] 97.00-98.00 sec 14.1 MBytes 118 Mbits/sec 0.187 ms 0/10195 (0%) +[UE1] [2025-07-19 11:54:51] [ 5] 98.00-99.00 sec 14.7 MBytes 123 Mbits/sec 0.120 ms 0/10649 (0%) +[UE1] [2025-07-19 11:54:53] [ 5] 99.00-100.00 sec 12.7 MBytes 107 Mbits/sec 0.210 ms 0/9197 (0%) +[UE1] [2025-07-19 11:54:54] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.183 ms 0/2712 (0%) +[UE1] [2025-07-19 11:54:55] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 11:54:56] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2590 (0%) +[UE1] [2025-07-19 11:54:57] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2590 (0%) +[UE1] [2025-07-19 11:54:58] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2589 (0%) +[UE1] [2025-07-19 11:54:59] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.260 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:00] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:01] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:02] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:03] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2592 (0%) +[UE1] [2025-07-19 11:55:04] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.208 ms 0/2587 (0%) +[UE1] [2025-07-19 11:55:05] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2592 (0%) +[UE1] [2025-07-19 11:55:06] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2589 (0%) +[UE1] [2025-07-19 11:55:07] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.186 ms 0/2588 (0%) +[UE1] [2025-07-19 11:55:08] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2591 (0%) +[UE1] [2025-07-19 11:55:09] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2589 (0%) +[UE1] [2025-07-19 11:55:10] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.138 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:11] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.306 ms 0/2587 (0%) +[UE1] [2025-07-19 11:55:12] [ 5] 18.00-19.00 sec 3.58 MBytes 30.1 Mbits/sec 0.232 ms 0/2595 (0%) +[UE1] [2025-07-19 11:55:13] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.286 ms 0/2588 (0%) +[UE1] [2025-07-19 11:55:14] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2589 (0%) +[UE1] [2025-07-19 11:55:15] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2592 (0%) +[UE1] [2025-07-19 11:55:16] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2588 (0%) +[UE1] [2025-07-19 11:55:17] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2589 (0%) +[UE1] [2025-07-19 11:55:18] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:19] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:20] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:21] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2589 (0%) +[UE1] [2025-07-19 11:55:22] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:23] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:24] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2592 (0%) +[UE1] [2025-07-19 11:55:25] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:26] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.255 ms 0/2587 (0%) +[UE1] [2025-07-19 11:55:27] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:28] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:29] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:30] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2589 (0%) +[UE1] [2025-07-19 11:55:31] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:32] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2589 (0%) +[UE1] [2025-07-19 11:55:33] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE1] [2025-07-19 11:55:34] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.294 ms 0/2587 (0%) +[UE1] [2025-07-19 11:55:35] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.311 ms 0/2592 (0%) +[UE1] [2025-07-19 11:55:36] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.308 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:37] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:38] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.290 ms 0/2590 (0%) +[UE1] [2025-07-19 11:55:39] [ 5] 45.00-46.00 sec 3.56 MBytes 29.9 Mbits/sec 0.651 ms 0/2580 (0%) +[UE1] [2025-07-19 11:55:40] [ 5] 46.00-47.00 sec 3.59 MBytes 30.1 Mbits/sec 0.482 ms 0/2598 (0%) +[UE1] [2025-07-19 11:55:41] [ 5] 47.00-48.00 sec 3.54 MBytes 29.7 Mbits/sec 0.534 ms 0/2567 (0%) +[UE1] [2025-07-19 11:55:42] [ 5] 48.00-49.00 sec 3.59 MBytes 30.2 Mbits/sec 0.537 ms 0/2603 (0%) +[UE1] [2025-07-19 11:55:43] [ 5] 49.00-50.00 sec 3.56 MBytes 29.9 Mbits/sec 0.544 ms 0/2579 (0%) +[UE1] [2025-07-19 11:55:44] [ 5] 50.00-51.00 sec 3.37 MBytes 28.2 Mbits/sec 0.562 ms 0/2437 (0%) +[UE1] [2025-07-19 11:55:45] [ 5] 51.00-52.00 sec 3.70 MBytes 31.0 Mbits/sec 0.636 ms 0/2679 (0%) +[UE1] [2025-07-19 11:55:46] [ 5] 52.00-53.00 sec 3.69 MBytes 30.9 Mbits/sec 0.575 ms 0/2670 (0%) +[UE1] [2025-07-19 11:55:47] [ 5] 53.00-54.00 sec 3.56 MBytes 29.9 Mbits/sec 0.606 ms 0/2580 (0%) +[UE1] [2025-07-19 11:55:48] [ 5] 54.00-55.00 sec 3.59 MBytes 30.1 Mbits/sec 0.642 ms 0/2597 (0%) +[UE1] [2025-07-19 11:55:49] [ 5] 55.00-56.00 sec 3.58 MBytes 30.1 Mbits/sec 0.417 ms 0/2596 (0%) +[UE1] [2025-07-19 11:55:50] [ 5] 56.00-57.00 sec 3.56 MBytes 29.8 Mbits/sec 0.628 ms 0/2575 (0%) +[UE1] [2025-07-19 11:55:51] [ 5] 57.00-58.00 sec 3.59 MBytes 30.2 Mbits/sec 0.557 ms 0/2603 (0%) +[UE1] [2025-07-19 11:55:52] [ 5] 58.00-59.00 sec 3.57 MBytes 29.9 Mbits/sec 0.609 ms 0/2585 (0%) +[UE1] [2025-07-19 11:55:53] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.511 ms 0/2593 (0%) +[UE1] [2025-07-19 11:55:54] [ 5] 60.00-61.00 sec 3.55 MBytes 29.8 Mbits/sec 0.614 ms 0/2569 (0%) +[UE1] [2025-07-19 11:55:55] [ 5] 61.00-62.00 sec 3.60 MBytes 30.2 Mbits/sec 0.576 ms 0/2606 (0%) +[UE1] [2025-07-19 11:55:56] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.586 ms 0/2588 (0%) +[UE1] [2025-07-19 11:55:57] [ 5] 63.00-64.00 sec 3.59 MBytes 30.1 Mbits/sec 0.590 ms 0/2597 (0%) +[UE1] [2025-07-19 11:55:58] [ 5] 64.00-65.00 sec 3.56 MBytes 29.9 Mbits/sec 0.520 ms 0/2578 (0%) +[UE1] [2025-07-19 11:55:59] [ 5] 65.00-66.00 sec 3.59 MBytes 30.1 Mbits/sec 0.527 ms 0/2598 (0%) +[UE1] [2025-07-19 11:56:00] [ 5] 66.00-67.00 sec 3.44 MBytes 28.8 Mbits/sec 0.586 ms 0/2490 (0%) +[UE1] [2025-07-19 11:56:01] [ 5] 67.00-68.00 sec 3.67 MBytes 30.8 Mbits/sec 0.611 ms 0/2660 (0%) +[UE1] [2025-07-19 11:56:02] [ 5] 68.00-69.00 sec 3.61 MBytes 30.3 Mbits/sec 0.633 ms 0/2614 (0%) +[UE1] [2025-07-19 11:56:03] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.634 ms 0/2590 (0%) +[UE1] [2025-07-19 11:56:04] [ 5] 70.00-71.00 sec 3.58 MBytes 30.1 Mbits/sec 0.438 ms 0/2596 (0%) +[UE1] [2025-07-19 11:56:05] [ 5] 71.00-72.00 sec 3.57 MBytes 29.9 Mbits/sec 0.725 ms 0/2584 (0%) +[UE1] [2025-07-19 11:56:06] [ 5] 72.00-73.00 sec 3.55 MBytes 29.8 Mbits/sec 0.483 ms 0/2572 (0%) +[UE1] [2025-07-19 11:56:07] [ 5] 73.00-74.00 sec 3.54 MBytes 29.7 Mbits/sec 0.669 ms 0/2563 (0%) +[UE1] [2025-07-19 11:56:08] [ 5] 74.00-75.00 sec 3.64 MBytes 30.5 Mbits/sec 0.549 ms 0/2637 (0%) +[UE1] [2025-07-19 11:56:09] [ 5] 75.00-76.00 sec 3.58 MBytes 30.1 Mbits/sec 0.386 ms 0/2596 (0%) +[UE1] [2025-07-19 11:56:10] [ 5] 76.00-77.00 sec 3.57 MBytes 29.9 Mbits/sec 0.568 ms 0/2582 (0%) +[UE1] [2025-07-19 11:56:11] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.612 ms 0/2594 (0%) +[UE1] [2025-07-19 11:56:12] [ 5] 78.00-79.00 sec 3.56 MBytes 29.9 Mbits/sec 0.686 ms 0/2579 (0%) +[UE1] [2025-07-19 11:56:13] [ 5] 79.00-80.00 sec 3.57 MBytes 30.0 Mbits/sec 0.648 ms 0/2587 (0%) +[UE1] [2025-07-19 11:56:14] [ 5] 80.00-81.00 sec 3.59 MBytes 30.2 Mbits/sec 0.554 ms 0/2603 (0%) +[UE1] [2025-07-19 11:56:15] [ 5] 81.00-82.00 sec 3.58 MBytes 30.1 Mbits/sec 0.189 ms 0/2596 (0%) +[UE1] [2025-07-19 11:56:16] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.336 ms 0/2588 (0%) +[UE1] [2025-07-19 11:56:17] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.308 ms 0/2592 (0%) +[UE1] [2025-07-19 11:56:18] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 11:56:19] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2589 (0%) +[UE1] [2025-07-19 11:56:20] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE1] [2025-07-19 11:56:21] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.351 ms 0/2590 (0%) +[UE1] [2025-07-19 11:56:22] [ 5] 88.00-89.00 sec 3.56 MBytes 29.9 Mbits/sec 0.572 ms 0/2580 (0%) +[UE1] [2025-07-19 11:56:23] [ 5] 89.00-90.00 sec 3.56 MBytes 29.9 Mbits/sec 0.585 ms 0/2579 (0%) +[UE1] [2025-07-19 11:56:24] [ 5] 90.00-91.00 sec 3.59 MBytes 30.1 Mbits/sec 0.670 ms 0/2599 (0%) +[UE1] [2025-07-19 11:56:25] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.674 ms 0/2591 (0%) +[UE1] [2025-07-19 11:56:26] [ 5] 92.00-93.00 sec 3.32 MBytes 27.9 Mbits/sec 0.528 ms 0/2407 (0%) +[UE1] [2025-07-19 11:56:27] [ 5] 93.00-94.00 sec 3.70 MBytes 31.0 Mbits/sec 0.677 ms 0/2676 (0%) +[UE1] [2025-07-19 11:56:28] [ 5] 94.00-95.00 sec 3.67 MBytes 30.8 Mbits/sec 0.540 ms 0/2658 (0%) +[UE1] [2025-07-19 11:56:29] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.517 ms 0/2592 (0%) +[UE1] [2025-07-19 11:56:30] [ 5] 96.00-97.00 sec 3.56 MBytes 29.9 Mbits/sec 0.723 ms 32/2610 (1.2%) +[UE1] [2025-07-19 11:56:31] [ 5] 97.00-98.00 sec 3.51 MBytes 29.4 Mbits/sec 0.552 ms 0/2539 (0%) +[UE1] [2025-07-19 11:56:32] [ 5] 98.00-99.00 sec 3.66 MBytes 30.7 Mbits/sec 0.605 ms 0/2652 (0%) +[UE1] [2025-07-19 11:56:34] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.484 ms 0/2594 (0%) +[UE1] [2025-07-19 11:56:36] [ 5] 0.00-1.00 sec 4.90 MBytes 41.1 Mbits/sec 0.272 ms 0/3549 (0%) +[UE1] [2025-07-19 11:56:37] [ 5] 1.00-2.00 sec 4.25 MBytes 35.6 Mbits/sec 0.313 ms 0/3077 (0%) +[UE1] [2025-07-19 11:56:38] [ 5] 2.00-3.00 sec 4.22 MBytes 35.4 Mbits/sec 0.090 ms 2277/5331 (43%) +[UE1] [2025-07-19 11:56:39] [ 5] 3.00-4.00 sec 4.82 MBytes 40.5 Mbits/sec 0.119 ms 8228/11722 (70%) +[UE1] [2025-07-19 11:56:40] [ 5] 4.00-5.00 sec 4.59 MBytes 38.5 Mbits/sec 0.132 ms 6927/10253 (68%) +[UE1] [2025-07-19 11:56:41] [ 5] 5.00-6.00 sec 4.91 MBytes 41.2 Mbits/sec 0.117 ms 7140/10693 (67%) +[UE1] [2025-07-19 11:56:42] [ 5] 6.00-7.00 sec 4.29 MBytes 36.0 Mbits/sec 0.144 ms 6617/9723 (68%) +[UE1] [2025-07-19 11:56:43] [ 5] 7.00-8.00 sec 4.92 MBytes 41.3 Mbits/sec 0.098 ms 7050/10614 (66%) +[UE1] [2025-07-19 11:56:44] [ 5] 8.00-9.00 sec 4.49 MBytes 37.6 Mbits/sec 0.096 ms 7006/10256 (68%) +[UE1] [2025-07-19 11:56:45] [ 5] 9.00-10.00 sec 4.59 MBytes 38.5 Mbits/sec 0.095 ms 6724/10048 (67%) +[UE1] [2025-07-19 11:56:46] [ 5] 10.00-11.00 sec 4.82 MBytes 40.4 Mbits/sec 0.131 ms 7362/10852 (68%) +[UE1] [2025-07-19 11:56:47] [ 5] 11.00-12.00 sec 4.67 MBytes 39.2 Mbits/sec 0.131 ms 6979/10360 (67%) +[UE1] [2025-07-19 11:56:48] [ 5] 12.00-13.00 sec 4.57 MBytes 38.4 Mbits/sec 0.091 ms 7015/10328 (68%) +[UE1] [2025-07-19 11:56:49] [ 5] 13.00-14.00 sec 4.83 MBytes 40.5 Mbits/sec 0.096 ms 7273/10768 (68%) +[UE1] [2025-07-19 11:56:50] [ 5] 14.00-15.00 sec 4.60 MBytes 38.6 Mbits/sec 0.132 ms 6812/10145 (67%) +[UE1] [2025-07-19 11:56:51] [ 5] 15.00-16.00 sec 4.58 MBytes 38.4 Mbits/sec 0.139 ms 6719/10037 (67%) +[UE1] [2025-07-19 11:56:52] [ 5] 16.00-17.00 sec 4.56 MBytes 38.3 Mbits/sec 0.128 ms 6944/10248 (68%) +[UE1] [2025-07-19 11:56:53] [ 5] 17.00-18.00 sec 4.85 MBytes 40.6 Mbits/sec 0.095 ms 7210/10719 (67%) +[UE1] [2025-07-19 11:56:54] [ 5] 18.00-19.00 sec 4.66 MBytes 39.1 Mbits/sec 0.103 ms 6911/10282 (67%) +[UE1] [2025-07-19 11:56:55] [ 5] 19.00-20.00 sec 8.35 MBytes 70.1 Mbits/sec 0.120 ms 12572/18622 (68%) +[UE1] [2025-07-19 11:56:56] [ 5] 20.00-21.00 sec 9.41 MBytes 78.9 Mbits/sec 0.114 ms 5774/12585 (46%) +[UE1] [2025-07-19 11:56:57] [ 5] 21.00-22.00 sec 10.0 MBytes 84.3 Mbits/sec 0.100 ms 3428/10703 (32%) +[UE1] [2025-07-19 11:56:58] [ 5] 22.00-23.00 sec 8.73 MBytes 73.2 Mbits/sec 0.082 ms 2829/9151 (31%) +[UE1] [2025-07-19 11:56:59] [ 5] 23.00-24.00 sec 10.1 MBytes 84.4 Mbits/sec 0.106 ms 4107/11391 (36%) +[UE1] [2025-07-19 11:57:00] [ 5] 24.00-25.00 sec 9.92 MBytes 83.2 Mbits/sec 0.084 ms 3419/10604 (32%) +[UE1] [2025-07-19 11:57:01] [ 5] 25.00-26.00 sec 9.40 MBytes 78.8 Mbits/sec 0.083 ms 3177/9984 (32%) +[UE1] [2025-07-19 11:57:02] [ 5] 26.00-27.00 sec 12.7 MBytes 106 Mbits/sec 0.109 ms 4469/13650 (33%) +[UE1] [2025-07-19 11:57:03] [ 5] 27.00-28.00 sec 15.7 MBytes 131 Mbits/sec 0.207 ms 147/11487 (1.3%) +[UE1] [2025-07-19 11:57:04] [ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 0.236 ms 0/10389 (0%) +[UE1] [2025-07-19 11:57:05] [ 5] 29.00-30.00 sec 14.0 MBytes 118 Mbits/sec 0.165 ms 0/10161 (0%) +[UE1] [2025-07-19 11:57:06] [ 5] 30.00-31.00 sec 14.4 MBytes 121 Mbits/sec 0.134 ms 88/10498 (0.84%) +[UE1] [2025-07-19 11:57:07] [ 5] 31.00-32.00 sec 14.4 MBytes 120 Mbits/sec 0.197 ms 0/10398 (0%) +[UE1] [2025-07-19 11:57:08] [ 5] 32.00-33.00 sec 13.3 MBytes 112 Mbits/sec 0.157 ms 0/9666 (0%) +[UE1] [2025-07-19 11:57:09] [ 5] 33.00-34.00 sec 14.5 MBytes 121 Mbits/sec 0.143 ms 694/11159 (6.2%) +[UE1] [2025-07-19 11:57:10] [ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 0.200 ms 0/10358 (0%) +[UE1] [2025-07-19 11:57:11] [ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 0.231 ms 0/10373 (0%) +[UE1] [2025-07-19 11:57:12] [ 5] 36.00-37.00 sec 14.2 MBytes 119 Mbits/sec 0.131 ms 0/10315 (0%) +[UE1] [2025-07-19 11:57:13] [ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 0.118 ms 0/10373 (0%) +[UE1] [2025-07-19 11:57:14] [ 5] 38.00-39.00 sec 14.2 MBytes 119 Mbits/sec 0.195 ms 0/10310 (0%) +[UE1] [2025-07-19 11:57:15] [ 5] 39.00-40.00 sec 14.4 MBytes 121 Mbits/sec 0.221 ms 0/10459 (0%) +[UE1] [2025-07-19 11:57:16] [ 5] 40.00-41.00 sec 13.9 MBytes 117 Mbits/sec 0.187 ms 0/10082 (0%) +[UE1] [2025-07-19 11:57:17] [ 5] 41.00-42.00 sec 14.4 MBytes 120 Mbits/sec 0.180 ms 164/10557 (1.6%) +[UE1] [2025-07-19 11:57:18] [ 5] 42.00-43.00 sec 13.4 MBytes 113 Mbits/sec 0.145 ms 0/9736 (0%) +[UE1] [2025-07-19 11:57:19] [ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 0.152 ms 517/10892 (4.7%) +[UE1] [2025-07-19 11:57:20] [ 5] 44.00-45.00 sec 14.4 MBytes 121 Mbits/sec 0.128 ms 0/10453 (0%) +[UE1] [2025-07-19 11:57:21] [ 5] 45.00-46.00 sec 14.1 MBytes 119 Mbits/sec 0.178 ms 0/10244 (0%) +[UE1] [2025-07-19 11:57:22] [ 5] 46.00-47.00 sec 14.5 MBytes 122 Mbits/sec 0.144 ms 0/10505 (0%) +[UE1] [2025-07-19 11:57:23] [ 5] 47.00-48.00 sec 14.5 MBytes 121 Mbits/sec 0.105 ms 0/10472 (0%) +[UE1] [2025-07-19 11:57:24] [ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 0.121 ms 0/10389 (0%) +[UE1] [2025-07-19 11:57:25] [ 5] 49.00-50.00 sec 14.6 MBytes 122 Mbits/sec 0.135 ms 0/10554 (0%) +[UE1] [2025-07-19 11:57:26] [ 5] 50.00-51.00 sec 14.5 MBytes 122 Mbits/sec 0.155 ms 0/10502 (0%) +[UE1] [2025-07-19 11:57:27] [ 5] 51.00-52.00 sec 14.0 MBytes 117 Mbits/sec 0.109 ms 0/10131 (0%) +[UE1] [2025-07-19 11:57:28] [ 5] 52.00-53.00 sec 14.4 MBytes 121 Mbits/sec 0.130 ms 0/10451 (0%) +[UE1] [2025-07-19 11:57:29] [ 5] 53.00-54.00 sec 14.5 MBytes 122 Mbits/sec 0.127 ms 0/10516 (0%) +[UE1] [2025-07-19 11:57:30] [ 5] 54.00-55.00 sec 14.5 MBytes 122 Mbits/sec 0.151 ms 0/10535 (0%) +[UE1] [2025-07-19 11:57:31] [ 5] 55.00-56.00 sec 14.2 MBytes 119 Mbits/sec 0.186 ms 0/10267 (0%) +[UE1] [2025-07-19 11:57:32] [ 5] 56.00-57.00 sec 14.5 MBytes 122 Mbits/sec 0.098 ms 0/10525 (0%) +[UE1] [2025-07-19 11:57:33] [ 5] 57.00-58.00 sec 13.5 MBytes 113 Mbits/sec 0.155 ms 0/9797 (0%) +[UE1] [2025-07-19 11:57:34] [ 5] 58.00-59.00 sec 13.4 MBytes 113 Mbits/sec 0.187 ms 0/9735 (0%) +[UE1] [2025-07-19 11:57:35] [ 5] 59.00-60.00 sec 8.93 MBytes 74.9 Mbits/sec 0.097 ms 23/6493 (0.35%) +[UE1] [2025-07-19 11:57:36] [ 5] 60.00-61.00 sec 8.61 MBytes 72.2 Mbits/sec 0.112 ms 2797/9033 (31%) +[UE1] [2025-07-19 11:57:37] [ 5] 61.00-62.00 sec 10.0 MBytes 84.1 Mbits/sec 0.096 ms 4411/11674 (38%) +[UE1] [2025-07-19 11:57:38] [ 5] 62.00-63.00 sec 9.49 MBytes 79.6 Mbits/sec 0.101 ms 3167/10041 (32%) +[UE1] [2025-07-19 11:57:39] [ 5] 63.00-64.00 sec 10.0 MBytes 84.2 Mbits/sec 0.158 ms 3378/10649 (32%) +[UE1] [2025-07-19 11:57:40] [ 5] 64.00-65.00 sec 9.31 MBytes 78.1 Mbits/sec 0.071 ms 3397/10137 (34%) +[UE1] [2025-07-19 11:57:41] [ 5] 65.00-66.00 sec 9.70 MBytes 81.4 Mbits/sec 0.162 ms 3395/10420 (33%) +[UE1] [2025-07-19 11:57:42] [ 5] 66.00-67.00 sec 16.2 MBytes 136 Mbits/sec 0.173 ms 2963/14691 (20%) +[UE1] [2025-07-19 11:57:43] [ 5] 67.00-68.00 sec 14.4 MBytes 121 Mbits/sec 0.150 ms 0/10435 (0%) +[UE1] [2025-07-19 11:57:44] [ 5] 68.00-69.00 sec 14.5 MBytes 122 Mbits/sec 0.163 ms 0/10533 (0%) +[UE1] [2025-07-19 11:57:45] [ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 0.123 ms 0/10377 (0%) +[UE1] [2025-07-19 11:57:46] [ 5] 70.00-71.00 sec 14.4 MBytes 121 Mbits/sec 0.153 ms 0/10406 (0%) +[UE1] [2025-07-19 11:57:47] [ 5] 71.00-72.00 sec 14.4 MBytes 121 Mbits/sec 0.099 ms 0/10416 (0%) +[UE1] [2025-07-19 11:57:48] [ 5] 72.00-73.00 sec 14.4 MBytes 121 Mbits/sec 0.194 ms 0/10426 (0%) +[UE1] [2025-07-19 11:57:49] [ 5] 73.00-74.00 sec 14.5 MBytes 121 Mbits/sec 0.107 ms 0/10465 (0%) +[UE1] [2025-07-19 11:57:50] [ 5] 74.00-75.00 sec 13.9 MBytes 117 Mbits/sec 0.181 ms 0/10074 (0%) +[UE1] [2025-07-19 11:57:51] [ 5] 75.00-76.00 sec 14.5 MBytes 122 Mbits/sec 0.226 ms 0/10492 (0%) +[UE1] [2025-07-19 11:57:52] [ 5] 76.00-77.00 sec 14.1 MBytes 119 Mbits/sec 0.152 ms 0/10243 (0%) +[UE1] [2025-07-19 11:57:53] [ 5] 77.00-78.00 sec 14.4 MBytes 121 Mbits/sec 0.149 ms 0/10417 (0%) +[UE1] [2025-07-19 11:57:54] [ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 0.185 ms 0/10369 (0%) +[UE1] [2025-07-19 11:57:55] [ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 0.121 ms 0/10380 (0%) +[UE1] [2025-07-19 11:57:56] [ 5] 80.00-81.00 sec 13.2 MBytes 110 Mbits/sec 0.200 ms 0/9523 (0%) +[UE1] [2025-07-19 11:57:57] [ 5] 81.00-82.00 sec 12.9 MBytes 108 Mbits/sec 0.119 ms 564/9920 (5.7%) +[UE1] [2025-07-19 11:57:58] [ 5] 82.00-83.00 sec 15.5 MBytes 130 Mbits/sec 0.224 ms 97/11343 (0.86%) +[UE1] [2025-07-19 11:57:59] [ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 0.166 ms 0/10328 (0%) +[UE1] [2025-07-19 11:58:00] [ 5] 84.00-85.00 sec 14.2 MBytes 119 Mbits/sec 0.104 ms 0/10299 (0%) +[UE1] [2025-07-19 11:58:01] [ 5] 85.00-86.00 sec 13.5 MBytes 113 Mbits/sec 0.175 ms 10/9792 (0.1%) +[UE1] [2025-07-19 11:58:02] [ 5] 86.00-87.00 sec 14.1 MBytes 118 Mbits/sec 0.138 ms 668/10885 (6.1%) +[UE1] [2025-07-19 11:58:03] [ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 0.169 ms 81/10422 (0.78%) +[UE1] [2025-07-19 11:58:04] [ 5] 88.00-89.00 sec 13.8 MBytes 116 Mbits/sec 0.174 ms 0/9998 (0%) +[UE1] [2025-07-19 11:58:05] [ 5] 89.00-90.00 sec 13.7 MBytes 115 Mbits/sec 0.137 ms 50/9956 (0.5%) +[UE1] [2025-07-19 11:58:06] [ 5] 90.00-91.00 sec 14.5 MBytes 121 Mbits/sec 0.151 ms 101/10566 (0.96%) +[UE1] [2025-07-19 11:58:07] [ 5] 91.00-92.00 sec 13.2 MBytes 111 Mbits/sec 0.057 ms 124/9670 (1.3%) +[UE1] [2025-07-19 11:58:08] [ 5] 92.00-93.00 sec 16.3 MBytes 136 Mbits/sec 0.135 ms 65/11835 (0.55%) +[UE1] [2025-07-19 11:58:09] [ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 0.084 ms 0/10370 (0%) +[UE1] [2025-07-19 11:58:10] [ 5] 94.00-95.00 sec 14.4 MBytes 121 Mbits/sec 0.131 ms 0/10411 (0%) +[UE1] [2025-07-19 11:58:11] [ 5] 95.00-96.00 sec 14.4 MBytes 121 Mbits/sec 0.178 ms 0/10432 (0%) +[UE1] [2025-07-19 11:58:12] [ 5] 96.00-97.00 sec 14.4 MBytes 120 Mbits/sec 0.180 ms 0/10395 (0%) +[UE1] [2025-07-19 11:58:13] [ 5] 97.00-98.00 sec 13.8 MBytes 116 Mbits/sec 0.171 ms 0/10015 (0%) +[UE1] [2025-07-19 11:58:14] [ 5] 98.00-99.00 sec 10.9 MBytes 91.7 Mbits/sec 0.230 ms 32/7944 (0.4%) +[UE1] [2025-07-19 11:58:16] [ 5] 99.00-100.00 sec 9.22 MBytes 77.3 Mbits/sec 0.085 ms 2171/8846 (25%) +[UE1] [2025-07-19 11:58:17] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.212 ms 0/2699 (0%) +[UE1] [2025-07-19 11:58:18] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.287 ms 0/2587 (0%) +[UE1] [2025-07-19 11:58:19] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2593 (0%) +[UE1] [2025-07-19 11:58:20] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:21] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:22] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:23] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.153 ms 0/2587 (0%) +[UE1] [2025-07-19 11:58:24] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:25] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2589 (0%) +[UE1] [2025-07-19 11:58:26] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.319 ms 0/2593 (0%) +[UE1] [2025-07-19 11:58:27] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2587 (0%) +[UE1] [2025-07-19 11:58:28] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:29] [ 5] 12.00-13.00 sec 3.57 MBytes 29.9 Mbits/sec 0.143 ms 0/2585 (0%) +[UE1] [2025-07-19 11:58:30] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.296 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:31] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2593 (0%) +[UE1] [2025-07-19 11:58:32] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.201 ms 0/2587 (0%) +[UE1] [2025-07-19 11:58:33] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:34] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.280 ms 0/2589 (0%) +[UE1] [2025-07-19 11:58:35] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.223 ms 0/2588 (0%) +[UE1] [2025-07-19 11:58:36] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:37] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.152 ms 0/2588 (0%) +[UE1] [2025-07-19 11:58:38] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:39] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.198 ms 0/2587 (0%) +[UE1] [2025-07-19 11:58:40] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:41] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:42] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2591 (0%) +[UE1] [2025-07-19 11:58:43] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.100 ms 0/2591 (0%) +[UE1] [2025-07-19 11:58:44] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.274 ms 0/2587 (0%) +[UE1] [2025-07-19 11:58:45] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:46] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2591 (0%) +[UE1] [2025-07-19 11:58:47] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2589 (0%) +[UE1] [2025-07-19 11:58:48] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:49] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:50] [ 5] 33.00-34.00 sec 3.57 MBytes 30.0 Mbits/sec 0.354 ms 0/2587 (0%) +[UE1] [2025-07-19 11:58:51] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2591 (0%) +[UE1] [2025-07-19 11:58:52] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE1] [2025-07-19 11:58:53] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2589 (0%) +[UE1] [2025-07-19 11:58:54] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:55] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:56] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE1] [2025-07-19 11:58:57] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.324 ms 0/2589 (0%) +[UE1] [2025-07-19 11:58:58] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2592 (0%) +[UE1] [2025-07-19 11:58:59] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.242 ms 0/2588 (0%) +[UE1] [2025-07-19 11:59:00] [ 5] 43.00-44.00 sec 3.56 MBytes 29.9 Mbits/sec 0.543 ms 0/2581 (0%) +[UE1] [2025-07-19 11:59:01] [ 5] 44.00-45.00 sec 3.57 MBytes 30.0 Mbits/sec 0.670 ms 0/2588 (0%) +[UE1] [2025-07-19 11:59:02] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.671 ms 0/2589 (0%) +[UE1] [2025-07-19 11:59:03] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.598 ms 0/2587 (0%) +[UE1] [2025-07-19 11:59:04] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.594 ms 0/2587 (0%) +[UE1] [2025-07-19 11:59:05] [ 5] 48.00-49.00 sec 3.59 MBytes 30.1 Mbits/sec 0.604 ms 0/2598 (0%) +[UE1] [2025-07-19 11:59:06] [ 5] 49.00-50.00 sec 3.47 MBytes 29.1 Mbits/sec 0.672 ms 0/2511 (0%) +[UE1] [2025-07-19 11:59:07] [ 5] 50.00-51.00 sec 3.66 MBytes 30.7 Mbits/sec 0.597 ms 0/2652 (0%) +[UE1] [2025-07-19 11:59:08] [ 5] 51.00-52.00 sec 3.61 MBytes 30.3 Mbits/sec 0.509 ms 0/2612 (0%) +[UE1] [2025-07-19 11:59:09] [ 5] 52.00-53.00 sec 3.54 MBytes 29.7 Mbits/sec 0.607 ms 0/2563 (0%) +[UE1] [2025-07-19 11:59:10] [ 5] 53.00-54.00 sec 3.61 MBytes 30.3 Mbits/sec 0.646 ms 0/2612 (0%) +[UE1] [2025-07-19 11:59:11] [ 5] 54.00-55.00 sec 3.59 MBytes 30.1 Mbits/sec 0.470 ms 0/2597 (0%) +[UE1] [2025-07-19 11:59:12] [ 5] 55.00-56.00 sec 3.53 MBytes 29.6 Mbits/sec 0.621 ms 0/2554 (0%) +[UE1] [2025-07-19 11:59:13] [ 5] 56.00-57.00 sec 3.60 MBytes 30.2 Mbits/sec 0.649 ms 0/2605 (0%) +[UE1] [2025-07-19 11:59:14] [ 5] 57.00-58.00 sec 3.59 MBytes 30.1 Mbits/sec 0.553 ms 0/2600 (0%) +[UE1] [2025-07-19 11:59:15] [ 5] 58.00-59.00 sec 3.57 MBytes 29.9 Mbits/sec 0.452 ms 0/2584 (0%) +[UE1] [2025-07-19 11:59:16] [ 5] 59.00-60.00 sec 3.54 MBytes 29.7 Mbits/sec 0.515 ms 0/2567 (0%) +[UE1] [2025-07-19 11:59:17] [ 5] 60.00-61.00 sec 3.62 MBytes 30.4 Mbits/sec 0.491 ms 0/2623 (0%) +[UE1] [2025-07-19 11:59:18] [ 5] 61.00-62.00 sec 3.28 MBytes 27.5 Mbits/sec 0.582 ms 0/2373 (0%) +[UE1] [2025-07-19 11:59:19] [ 5] 62.00-63.00 sec 3.69 MBytes 30.9 Mbits/sec 0.555 ms 0/2670 (0%) +[UE1] [2025-07-19 11:59:20] [ 5] 63.00-64.00 sec 3.55 MBytes 29.8 Mbits/sec 0.639 ms 0/2570 (0%) +[UE1] [2025-07-19 11:59:21] [ 5] 64.00-65.00 sec 3.78 MBytes 31.7 Mbits/sec 0.580 ms 0/2734 (0%) +[UE1] [2025-07-19 11:59:22] [ 5] 65.00-66.00 sec 3.58 MBytes 30.1 Mbits/sec 0.673 ms 0/2595 (0%) +[UE1] [2025-07-19 11:59:23] [ 5] 66.00-67.00 sec 3.59 MBytes 30.1 Mbits/sec 0.500 ms 0/2597 (0%) +[UE1] [2025-07-19 11:59:24] [ 5] 67.00-68.00 sec 3.56 MBytes 29.9 Mbits/sec 0.573 ms 0/2580 (0%) +[UE1] [2025-07-19 11:59:25] [ 5] 68.00-69.00 sec 3.59 MBytes 30.1 Mbits/sec 0.454 ms 0/2602 (0%) +[UE1] [2025-07-19 11:59:26] [ 5] 69.00-70.00 sec 3.55 MBytes 29.8 Mbits/sec 0.473 ms 0/2572 (0%) +[UE1] [2025-07-19 11:59:27] [ 5] 70.00-71.00 sec 3.46 MBytes 29.0 Mbits/sec 0.539 ms 0/2504 (0%) +[UE1] [2025-07-19 11:59:28] [ 5] 71.00-72.00 sec 3.69 MBytes 31.0 Mbits/sec 0.627 ms 0/2673 (0%) +[UE1] [2025-07-19 11:59:29] [ 5] 72.00-73.00 sec 3.41 MBytes 28.6 Mbits/sec 0.758 ms 0/2467 (0%) +[UE1] [2025-07-19 11:59:30] [ 5] 73.00-74.00 sec 3.39 MBytes 28.5 Mbits/sec 0.582 ms 0/2457 (0%) +[UE1] [2025-07-19 11:59:31] [ 5] 74.00-75.00 sec 3.57 MBytes 30.0 Mbits/sec 0.574 ms 0/2586 (0%) +[UE1] [2025-07-19 11:59:32] [ 5] 75.00-76.00 sec 3.96 MBytes 33.3 Mbits/sec 0.182 ms 0/2870 (0%) +[UE1] [2025-07-19 11:59:33] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.292 ms 0/2592 (0%) +[UE1] [2025-07-19 11:59:34] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.331 ms 0/2590 (0%) +[UE1] [2025-07-19 11:59:35] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2592 (0%) +[UE1] [2025-07-19 11:59:36] [ 5] 79.00-80.00 sec 3.57 MBytes 30.0 Mbits/sec 0.120 ms 0/2587 (0%) +[UE1] [2025-07-19 11:59:37] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE1] [2025-07-19 11:59:38] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2589 (0%) +[UE1] [2025-07-19 11:59:39] [ 5] 82.00-83.00 sec 3.57 MBytes 29.9 Mbits/sec 0.522 ms 0/2583 (0%) +[UE1] [2025-07-19 11:59:40] [ 5] 83.00-84.00 sec 3.32 MBytes 27.9 Mbits/sec 0.557 ms 0/2407 (0%) +[UE1] [2025-07-19 11:59:41] [ 5] 84.00-85.00 sec 3.74 MBytes 31.4 Mbits/sec 0.588 ms 0/2708 (0%) +[UE1] [2025-07-19 11:59:42] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.624 ms 0/2591 (0%) +[UE1] [2025-07-19 11:59:43] [ 5] 86.00-87.00 sec 3.66 MBytes 30.7 Mbits/sec 0.594 ms 0/2650 (0%) +[UE1] [2025-07-19 11:59:44] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.608 ms 0/2587 (0%) +[UE1] [2025-07-19 11:59:45] [ 5] 88.00-89.00 sec 3.56 MBytes 29.9 Mbits/sec 0.612 ms 0/2580 (0%) +[UE1] [2025-07-19 11:59:46] [ 5] 89.00-90.00 sec 3.60 MBytes 30.2 Mbits/sec 0.583 ms 0/2610 (0%) +[UE1] [2025-07-19 11:59:47] [ 5] 90.00-91.00 sec 3.57 MBytes 29.9 Mbits/sec 0.562 ms 0/2584 (0%) +[UE1] [2025-07-19 11:59:48] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.507 ms 0/2587 (0%) +[UE1] [2025-07-19 11:59:49] [ 5] 92.00-93.00 sec 3.41 MBytes 28.6 Mbits/sec 0.585 ms 0/2469 (0%) +[UE1] [2025-07-19 11:59:50] [ 5] 93.00-94.00 sec 3.42 MBytes 28.7 Mbits/sec 0.547 ms 0/2479 (0%) +[UE1] [2025-07-19 11:59:51] [ 5] 94.00-95.00 sec 3.71 MBytes 31.1 Mbits/sec 0.612 ms 0/2686 (0%) +[UE1] [2025-07-19 11:59:52] [ 5] 95.00-96.00 sec 3.68 MBytes 30.9 Mbits/sec 0.564 ms 0/2668 (0%) +[UE1] [2025-07-19 11:59:53] [ 5] 96.00-97.00 sec 3.65 MBytes 30.6 Mbits/sec 0.803 ms 0/2646 (0%) +[UE1] [2025-07-19 11:59:54] [ 5] 97.00-98.00 sec 3.56 MBytes 29.9 Mbits/sec 0.587 ms 0/2581 (0%) +[UE1] [2025-07-19 11:59:55] [ 5] 98.00-99.00 sec 3.59 MBytes 30.1 Mbits/sec 0.676 ms 0/2601 (0%) +[UE1] [2025-07-19 11:59:56] [ 5] 99.00-100.00 sec 3.55 MBytes 29.8 Mbits/sec 0.687 ms 0/2570 (0%) +[UE1] [2025-07-19 11:59:58] [ 5] 0.00-1.00 sec 4.91 MBytes 41.2 Mbits/sec 0.312 ms 0/3559 (0%) +[UE1] [2025-07-19 11:59:59] [ 5] 1.00-2.00 sec 4.57 MBytes 38.4 Mbits/sec 0.372 ms 0/3311 (0%) +[UE1] [2025-07-19 12:00:00] [ 5] 2.00-3.00 sec 3.88 MBytes 32.5 Mbits/sec 0.133 ms 2343/5153 (45%) +[UE1] [2025-07-19 12:00:01] [ 5] 3.00-4.00 sec 4.59 MBytes 38.5 Mbits/sec 0.135 ms 6882/10203 (67%) +[UE1] [2025-07-19 12:00:02] [ 5] 4.00-5.00 sec 4.58 MBytes 38.4 Mbits/sec 0.100 ms 8084/11398 (71%) +[UE1] [2025-07-19 12:00:03] [ 5] 5.00-6.00 sec 4.85 MBytes 40.7 Mbits/sec 0.099 ms 7284/10798 (67%) +[UE1] [2025-07-19 12:00:04] [ 5] 6.00-7.00 sec 4.82 MBytes 40.4 Mbits/sec 0.149 ms 7298/10788 (68%) +[UE1] [2025-07-19 12:00:05] [ 5] 7.00-8.00 sec 4.31 MBytes 36.2 Mbits/sec 0.134 ms 6238/9362 (67%) +[UE1] [2025-07-19 12:00:06] [ 5] 8.00-9.00 sec 4.86 MBytes 40.8 Mbits/sec 0.146 ms 7036/10555 (67%) +[UE1] [2025-07-19 12:00:07] [ 5] 9.00-10.00 sec 4.62 MBytes 38.7 Mbits/sec 0.111 ms 7133/10476 (68%) +[UE1] [2025-07-19 12:00:08] [ 5] 10.00-11.00 sec 4.60 MBytes 38.6 Mbits/sec 0.086 ms 6754/10087 (67%) +[UE1] [2025-07-19 12:00:09] [ 5] 11.00-12.00 sec 4.91 MBytes 41.2 Mbits/sec 0.133 ms 7455/11010 (68%) +[UE1] [2025-07-19 12:00:10] [ 5] 12.00-13.00 sec 4.55 MBytes 38.2 Mbits/sec 0.121 ms 6746/10043 (67%) +[UE1] [2025-07-19 12:00:11] [ 5] 13.00-14.00 sec 4.82 MBytes 40.4 Mbits/sec 0.117 ms 7112/10601 (67%) +[UE1] [2025-07-19 12:00:12] [ 5] 14.00-15.00 sec 7.72 MBytes 64.8 Mbits/sec 0.115 ms 11511/17101 (67%) +[UE1] [2025-07-19 12:00:13] [ 5] 15.00-16.00 sec 8.10 MBytes 68.0 Mbits/sec 0.093 ms 6583/12452 (53%) +[UE1] [2025-07-19 12:00:14] [ 5] 16.00-17.00 sec 10.1 MBytes 84.3 Mbits/sec 0.077 ms 4802/12082 (40%) +[UE1] [2025-07-19 12:00:15] [ 5] 17.00-18.00 sec 9.52 MBytes 79.9 Mbits/sec 0.108 ms 3271/10167 (32%) +[UE1] [2025-07-19 12:00:16] [ 5] 18.00-19.00 sec 9.29 MBytes 77.9 Mbits/sec 0.088 ms 3296/10023 (33%) +[UE1] [2025-07-19 12:00:17] [ 5] 19.00-20.00 sec 10.1 MBytes 84.3 Mbits/sec 0.127 ms 3610/10889 (33%) +[UE1] [2025-07-19 12:00:18] [ 5] 20.00-21.00 sec 9.49 MBytes 79.6 Mbits/sec 0.088 ms 3289/10158 (32%) +[UE1] [2025-07-19 12:00:19] [ 5] 21.00-22.00 sec 12.4 MBytes 104 Mbits/sec 0.037 ms 4295/13309 (32%) +[UE1] [2025-07-19 12:00:20] [ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 0.089 ms 608/10954 (5.6%) +[UE1] [2025-07-19 12:00:21] [ 5] 23.00-24.00 sec 15.4 MBytes 129 Mbits/sec 0.114 ms 74/11235 (0.66%) +[UE1] [2025-07-19 12:00:22] [ 5] 24.00-25.00 sec 14.5 MBytes 122 Mbits/sec 0.122 ms 0/10500 (0%) +[UE1] [2025-07-19 12:00:23] [ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 0.256 ms 0/10381 (0%) +[UE1] [2025-07-19 12:00:24] [ 5] 26.00-27.00 sec 14.6 MBytes 122 Mbits/sec 0.148 ms 0/10554 (0%) +[UE1] [2025-07-19 12:00:25] [ 5] 27.00-28.00 sec 14.4 MBytes 121 Mbits/sec 0.121 ms 0/10461 (0%) +[UE1] [2025-07-19 12:00:26] [ 5] 28.00-29.00 sec 13.6 MBytes 114 Mbits/sec 0.149 ms 0/9852 (0%) +[UE1] [2025-07-19 12:00:27] [ 5] 29.00-30.00 sec 13.6 MBytes 114 Mbits/sec 0.149 ms 257/10100 (2.5%) +[UE1] [2025-07-19 12:00:28] [ 5] 30.00-31.00 sec 14.7 MBytes 123 Mbits/sec 0.190 ms 198/10848 (1.8%) +[UE1] [2025-07-19 12:00:29] [ 5] 31.00-32.00 sec 14.4 MBytes 121 Mbits/sec 0.184 ms 0/10427 (0%) +[UE1] [2025-07-19 12:00:30] [ 5] 32.00-33.00 sec 14.2 MBytes 119 Mbits/sec 0.159 ms 0/10314 (0%) +[UE1] [2025-07-19 12:00:31] [ 5] 33.00-34.00 sec 14.8 MBytes 124 Mbits/sec 0.185 ms 0/10747 (0%) +[UE1] [2025-07-19 12:00:32] [ 5] 34.00-35.00 sec 13.1 MBytes 110 Mbits/sec 0.236 ms 0/9484 (0%) +[UE1] [2025-07-19 12:00:33] [ 5] 35.00-36.00 sec 12.9 MBytes 108 Mbits/sec 0.081 ms 203/9527 (2.1%) +[UE1] [2025-07-19 12:00:34] [ 5] 36.00-37.00 sec 15.6 MBytes 131 Mbits/sec 0.161 ms 43/11362 (0.38%) +[UE1] [2025-07-19 12:00:35] [ 5] 37.00-38.00 sec 14.4 MBytes 121 Mbits/sec 0.153 ms 41/10491 (0.39%) +[UE1] [2025-07-19 12:00:36] [ 5] 38.00-39.00 sec 14.4 MBytes 121 Mbits/sec 0.155 ms 0/10444 (0%) +[UE1] [2025-07-19 12:00:37] [ 5] 39.00-40.00 sec 11.7 MBytes 98.3 Mbits/sec 0.160 ms 639/9122 (7%) +[UE1] [2025-07-19 12:00:38] [ 5] 40.00-41.00 sec 15.0 MBytes 126 Mbits/sec 0.125 ms 121/10970 (1.1%) +[UE1] [2025-07-19 12:00:39] [ 5] 41.00-42.00 sec 13.7 MBytes 115 Mbits/sec 0.075 ms 515/10421 (4.9%) +[UE1] [2025-07-19 12:00:40] [ 5] 42.00-43.00 sec 13.8 MBytes 116 Mbits/sec 0.086 ms 88/10061 (0.87%) +[UE1] [2025-07-19 12:00:41] [ 5] 43.00-44.00 sec 15.5 MBytes 130 Mbits/sec 0.137 ms 14/11240 (0.12%) +[UE1] [2025-07-19 12:00:42] [ 5] 44.00-45.00 sec 13.7 MBytes 115 Mbits/sec 0.138 ms 0/9931 (0%) +[UE1] [2025-07-19 12:00:43] [ 5] 45.00-46.00 sec 14.4 MBytes 121 Mbits/sec 0.135 ms 228/10669 (2.1%) +[UE1] [2025-07-19 12:00:44] [ 5] 46.00-47.00 sec 14.4 MBytes 121 Mbits/sec 0.143 ms 38/10483 (0.36%) +[UE1] [2025-07-19 12:00:45] [ 5] 47.00-48.00 sec 14.7 MBytes 123 Mbits/sec 0.198 ms 0/10625 (0%) +[UE1] [2025-07-19 12:00:46] [ 5] 48.00-49.00 sec 14.5 MBytes 122 Mbits/sec 0.150 ms 0/10524 (0%) +[UE1] [2025-07-19 12:00:47] [ 5] 49.00-50.00 sec 14.5 MBytes 122 Mbits/sec 0.169 ms 0/10515 (0%) +[UE1] [2025-07-19 12:00:48] [ 5] 50.00-51.00 sec 14.4 MBytes 121 Mbits/sec 0.172 ms 0/10449 (0%) +[UE1] [2025-07-19 12:00:49] [ 5] 51.00-52.00 sec 13.0 MBytes 109 Mbits/sec 0.145 ms 0/9411 (0%) +[UE1] [2025-07-19 12:00:50] [ 5] 52.00-53.00 sec 14.2 MBytes 119 Mbits/sec 0.137 ms 173/10480 (1.7%) +[UE1] [2025-07-19 12:00:51] [ 5] 53.00-54.00 sec 14.6 MBytes 122 Mbits/sec 0.180 ms 0/10557 (0%) +[UE1] [2025-07-19 12:00:52] [ 5] 54.00-55.00 sec 12.9 MBytes 109 Mbits/sec 0.160 ms 0/9373 (0%) +[UE1] [2025-07-19 12:00:53] [ 5] 55.00-56.00 sec 8.92 MBytes 74.8 Mbits/sec 0.076 ms 502/6961 (7.2%) +[UE1] [2025-07-19 12:00:54] [ 5] 56.00-57.00 sec 9.33 MBytes 78.2 Mbits/sec 0.073 ms 3324/10077 (33%) +[UE1] [2025-07-19 12:00:55] [ 5] 57.00-58.00 sec 10.0 MBytes 84.3 Mbits/sec 0.084 ms 3516/10792 (33%) +[UE1] [2025-07-19 12:00:56] [ 5] 58.00-59.00 sec 9.29 MBytes 77.9 Mbits/sec 0.105 ms 3136/9865 (32%) +[UE1] [2025-07-19 12:00:57] [ 5] 59.00-60.00 sec 10.0 MBytes 84.2 Mbits/sec 0.085 ms 3502/10772 (33%) +[UE1] [2025-07-19 12:00:58] [ 5] 60.00-61.00 sec 9.45 MBytes 79.3 Mbits/sec 0.075 ms 3288/10130 (32%) +[UE1] [2025-07-19 12:00:59] [ 5] 61.00-62.00 sec 9.50 MBytes 79.7 Mbits/sec 0.094 ms 3283/10160 (32%) +[UE1] [2025-07-19 12:01:00] [ 5] 62.00-63.00 sec 12.3 MBytes 103 Mbits/sec 0.121 ms 4083/12976 (31%) +[UE1] [2025-07-19 12:01:01] [ 5] 63.00-64.00 sec 15.4 MBytes 129 Mbits/sec 0.152 ms 422/11566 (3.6%) +[UE1] [2025-07-19 12:01:02] [ 5] 64.00-65.00 sec 15.3 MBytes 128 Mbits/sec 0.186 ms 206/11260 (1.8%) +[UE1] [2025-07-19 12:01:03] [ 5] 65.00-66.00 sec 14.6 MBytes 122 Mbits/sec 0.188 ms 0/10571 (0%) +[UE1] [2025-07-19 12:01:04] [ 5] 66.00-67.00 sec 14.5 MBytes 122 Mbits/sec 0.116 ms 0/10513 (0%) +[UE1] [2025-07-19 12:01:05] [ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 0.151 ms 0/10331 (0%) +[UE1] [2025-07-19 12:01:06] [ 5] 68.00-69.00 sec 14.7 MBytes 124 Mbits/sec 0.182 ms 0/10679 (0%) +[UE1] [2025-07-19 12:01:07] [ 5] 69.00-70.00 sec 14.4 MBytes 120 Mbits/sec 0.152 ms 0/10401 (0%) +[UE1] [2025-07-19 12:01:08] [ 5] 70.00-71.00 sec 14.2 MBytes 119 Mbits/sec 0.155 ms 0/10286 (0%) +[UE1] [2025-07-19 12:01:09] [ 5] 71.00-72.00 sec 14.4 MBytes 121 Mbits/sec 0.181 ms 0/10435 (0%) +[UE1] [2025-07-19 12:01:10] [ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 0.107 ms 0/10334 (0%) +[UE1] [2025-07-19 12:01:11] [ 5] 73.00-74.00 sec 14.2 MBytes 119 Mbits/sec 0.122 ms 0/10294 (0%) +[UE1] [2025-07-19 12:01:12] [ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 0.114 ms 0/10369 (0%) +[UE1] [2025-07-19 12:01:13] [ 5] 75.00-76.00 sec 14.6 MBytes 123 Mbits/sec 0.142 ms 0/10596 (0%) +[UE1] [2025-07-19 12:01:14] [ 5] 76.00-77.00 sec 14.5 MBytes 121 Mbits/sec 0.181 ms 0/10468 (0%) +[UE1] [2025-07-19 12:01:15] [ 5] 77.00-78.00 sec 14.5 MBytes 121 Mbits/sec 0.112 ms 0/10480 (0%) +[UE1] [2025-07-19 12:01:16] [ 5] 78.00-79.00 sec 14.4 MBytes 121 Mbits/sec 0.140 ms 0/10423 (0%) +[UE1] [2025-07-19 12:01:17] [ 5] 79.00-80.00 sec 14.5 MBytes 121 Mbits/sec 0.095 ms 0/10470 (0%) +[UE1] [2025-07-19 12:01:18] [ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 0.141 ms 0/10368 (0%) +[UE1] [2025-07-19 12:01:19] [ 5] 81.00-82.00 sec 14.2 MBytes 119 Mbits/sec 0.147 ms 0/10269 (0%) +[UE1] [2025-07-19 12:01:20] [ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 0.158 ms 0/10337 (0%) +[UE1] [2025-07-19 12:01:21] [ 5] 83.00-84.00 sec 14.6 MBytes 122 Mbits/sec 0.136 ms 0/10572 (0%) +[UE1] [2025-07-19 12:01:22] [ 5] 84.00-85.00 sec 14.4 MBytes 120 Mbits/sec 0.192 ms 0/10404 (0%) +[UE1] [2025-07-19 12:01:23] [ 5] 85.00-86.00 sec 13.9 MBytes 117 Mbits/sec 0.156 ms 0/10093 (0%) +[UE1] [2025-07-19 12:01:24] [ 5] 86.00-87.00 sec 14.4 MBytes 121 Mbits/sec 0.163 ms 0/10429 (0%) +[UE1] [2025-07-19 12:01:25] [ 5] 87.00-88.00 sec 14.5 MBytes 122 Mbits/sec 0.161 ms 0/10512 (0%) +[UE1] [2025-07-19 12:01:26] [ 5] 88.00-89.00 sec 13.9 MBytes 117 Mbits/sec 0.133 ms 0/10099 (0%) +[UE1] [2025-07-19 12:01:27] [ 5] 89.00-90.00 sec 14.4 MBytes 121 Mbits/sec 0.161 ms 0/10422 (0%) +[UE1] [2025-07-19 12:01:28] [ 5] 90.00-91.00 sec 14.0 MBytes 117 Mbits/sec 0.166 ms 0/10102 (0%) +[UE1] [2025-07-19 12:01:29] [ 5] 91.00-92.00 sec 14.4 MBytes 121 Mbits/sec 0.121 ms 0/10457 (0%) +[UE1] [2025-07-19 12:01:30] [ 5] 92.00-93.00 sec 13.7 MBytes 115 Mbits/sec 0.241 ms 0/9937 (0%) +[UE1] [2025-07-19 12:01:31] [ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 0.173 ms 0/10321 (0%) +[UE1] [2025-07-19 12:01:32] [ 5] 94.00-95.00 sec 14.4 MBytes 121 Mbits/sec 0.135 ms 0/10403 (0%) +[UE1] [2025-07-19 12:01:33] [ 5] 95.00-96.00 sec 14.5 MBytes 121 Mbits/sec 0.138 ms 0/10481 (0%) +[UE1] [2025-07-19 12:01:34] [ 5] 96.00-97.00 sec 14.4 MBytes 121 Mbits/sec 0.143 ms 0/10414 (0%) +[UE1] [2025-07-19 12:01:35] [ 5] 97.00-98.00 sec 14.2 MBytes 119 Mbits/sec 0.096 ms 0/10252 (0%) +[UE1] [2025-07-19 12:01:36] [ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 0.137 ms 0/10352 (0%) +[UE1] [2025-07-19 12:01:38] [ 5] 99.00-100.00 sec 14.7 MBytes 123 Mbits/sec 0.189 ms 0/10639 (0%) +[UE1] [2025-07-19 12:01:39] [ 5] 0.00-1.00 sec 3.74 MBytes 31.3 Mbits/sec 0.144 ms 0/2705 (0%) +[UE1] [2025-07-19 12:01:40] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.260 ms 0/2588 (0%) +[UE1] [2025-07-19 12:01:41] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2591 (0%) +[UE1] [2025-07-19 12:01:42] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2590 (0%) +[UE1] [2025-07-19 12:01:43] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE1] [2025-07-19 12:01:44] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.291 ms 0/2588 (0%) +[UE1] [2025-07-19 12:01:45] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2591 (0%) +[UE1] [2025-07-19 12:01:46] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.173 ms 0/2587 (0%) +[UE1] [2025-07-19 12:01:47] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2593 (0%) +[UE1] [2025-07-19 12:01:48] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2589 (0%) +[UE1] [2025-07-19 12:01:49] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.257 ms 0/2588 (0%) +[UE1] [2025-07-19 12:01:50] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.126 ms 0/2592 (0%) +[UE1] [2025-07-19 12:01:51] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2589 (0%) +[UE1] [2025-07-19 12:01:52] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE1] [2025-07-19 12:01:53] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2591 (0%) +[UE1] [2025-07-19 12:01:54] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2590 (0%) +[UE1] [2025-07-19 12:01:55] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.167 ms 0/2588 (0%) +[UE1] [2025-07-19 12:01:56] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2592 (0%) +[UE1] [2025-07-19 12:01:57] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.345 ms 0/2586 (0%) +[UE1] [2025-07-19 12:01:58] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2593 (0%) +[UE1] [2025-07-19 12:01:59] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE1] [2025-07-19 12:02:00] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.295 ms 0/2588 (0%) +[UE1] [2025-07-19 12:02:01] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.181 ms 0/2588 (0%) +[UE1] [2025-07-19 12:02:02] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2593 (0%) +[UE1] [2025-07-19 12:02:03] [ 5] 24.00-25.00 sec 3.57 MBytes 29.9 Mbits/sec 0.728 ms 0/2583 (0%) +[UE1] [2025-07-19 12:02:04] [ 5] 25.00-26.00 sec 3.57 MBytes 29.9 Mbits/sec 0.534 ms 0/2584 (0%) +[UE1] [2025-07-19 12:02:05] [ 5] 26.00-27.00 sec 3.59 MBytes 30.1 Mbits/sec 0.580 ms 0/2602 (0%) +[UE1] [2025-07-19 12:02:06] [ 5] 27.00-28.00 sec 3.57 MBytes 29.9 Mbits/sec 0.722 ms 0/2584 (0%) +[UE1] [2025-07-19 12:02:07] [ 5] 28.00-29.00 sec 3.57 MBytes 29.9 Mbits/sec 0.591 ms 0/2585 (0%) +[UE1] [2025-07-19 12:02:08] [ 5] 29.00-30.00 sec 3.42 MBytes 28.7 Mbits/sec 0.653 ms 0/2475 (0%) +[UE1] [2025-07-19 12:02:09] [ 5] 30.00-31.00 sec 3.75 MBytes 31.5 Mbits/sec 0.540 ms 0/2715 (0%) +[UE1] [2025-07-19 12:02:10] [ 5] 31.00-32.00 sec 3.56 MBytes 29.9 Mbits/sec 0.573 ms 0/2581 (0%) +[UE1] [2025-07-19 12:02:11] [ 5] 32.00-33.00 sec 3.59 MBytes 30.1 Mbits/sec 0.509 ms 0/2597 (0%) +[UE1] [2025-07-19 12:02:12] [ 5] 33.00-34.00 sec 3.57 MBytes 29.9 Mbits/sec 0.625 ms 0/2584 (0%) +[UE1] [2025-07-19 12:02:13] [ 5] 34.00-35.00 sec 3.47 MBytes 29.1 Mbits/sec 0.826 ms 0/2515 (0%) +[UE1] [2025-07-19 12:02:14] [ 5] 35.00-36.00 sec 3.55 MBytes 29.8 Mbits/sec 0.619 ms 0/2570 (0%) +[UE1] [2025-07-19 12:02:15] [ 5] 36.00-37.00 sec 3.70 MBytes 31.1 Mbits/sec 0.669 ms 0/2681 (0%) +[UE1] [2025-07-19 12:02:16] [ 5] 37.00-38.00 sec 3.59 MBytes 30.1 Mbits/sec 0.562 ms 0/2600 (0%) +[UE1] [2025-07-19 12:02:17] [ 5] 38.00-39.00 sec 3.56 MBytes 29.9 Mbits/sec 0.616 ms 0/2578 (0%) +[UE1] [2025-07-19 12:02:18] [ 5] 39.00-40.00 sec 3.47 MBytes 29.1 Mbits/sec 0.704 ms 0/2516 (0%) +[UE1] [2025-07-19 12:02:19] [ 5] 40.00-41.00 sec 3.69 MBytes 30.9 Mbits/sec 0.466 ms 0/2669 (0%) +[UE1] [2025-07-19 12:02:20] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.544 ms 0/2593 (0%) +[UE1] [2025-07-19 12:02:21] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.588 ms 0/2587 (0%) +[UE1] [2025-07-19 12:02:22] [ 5] 43.00-44.00 sec 3.58 MBytes 30.1 Mbits/sec 0.473 ms 0/2595 (0%) +[UE1] [2025-07-19 12:02:23] [ 5] 44.00-45.00 sec 3.55 MBytes 29.8 Mbits/sec 0.532 ms 0/2574 (0%) +[UE1] [2025-07-19 12:02:24] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.507 ms 0/2590 (0%) +[UE1] [2025-07-19 12:02:25] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.494 ms 0/2588 (0%) +[UE1] [2025-07-19 12:02:26] [ 5] 47.00-48.00 sec 3.59 MBytes 30.1 Mbits/sec 0.585 ms 0/2600 (0%) +[UE1] [2025-07-19 12:02:27] [ 5] 48.00-49.00 sec 3.57 MBytes 30.0 Mbits/sec 0.671 ms 0/2587 (0%) +[UE1] [2025-07-19 12:02:28] [ 5] 49.00-50.00 sec 3.59 MBytes 30.1 Mbits/sec 0.509 ms 0/2599 (0%) +[UE1] [2025-07-19 12:02:29] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.495 ms 0/2591 (0%) +[UE1] [2025-07-19 12:02:30] [ 5] 51.00-52.00 sec 3.53 MBytes 29.6 Mbits/sec 0.661 ms 0/2559 (0%) +[UE1] [2025-07-19 12:02:31] [ 5] 52.00-53.00 sec 3.61 MBytes 30.2 Mbits/sec 0.578 ms 0/2612 (0%) +[UE1] [2025-07-19 12:02:32] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.618 ms 0/2585 (0%) +[UE1] [2025-07-19 12:02:33] [ 5] 54.00-55.00 sec 3.56 MBytes 29.9 Mbits/sec 0.648 ms 0/2581 (0%) +[UE1] [2025-07-19 12:02:34] [ 5] 55.00-56.00 sec 3.38 MBytes 28.4 Mbits/sec 0.567 ms 0/2451 (0%) +[UE1] [2025-07-19 12:02:35] [ 5] 56.00-57.00 sec 3.80 MBytes 31.9 Mbits/sec 0.131 ms 0/2753 (0%) +[UE1] [2025-07-19 12:02:36] [ 5] 57.00-58.00 sec 3.57 MBytes 30.0 Mbits/sec 0.240 ms 0/2587 (0%) +[UE1] [2025-07-19 12:02:37] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2590 (0%) +[UE1] [2025-07-19 12:02:38] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2593 (0%) +[UE1] [2025-07-19 12:02:39] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.223 ms 0/2587 (0%) +[UE1] [2025-07-19 12:02:40] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2589 (0%) +[UE1] [2025-07-19 12:02:41] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2591 (0%) +[UE1] [2025-07-19 12:02:42] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.602 ms 0/2587 (0%) +[UE1] [2025-07-19 12:02:43] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.519 ms 0/2588 (0%) +[UE1] [2025-07-19 12:02:44] [ 5] 65.00-66.00 sec 3.29 MBytes 27.6 Mbits/sec 0.600 ms 0/2383 (0%) +[UE1] [2025-07-19 12:02:45] [ 5] 66.00-67.00 sec 3.70 MBytes 31.0 Mbits/sec 0.556 ms 0/2678 (0%) +[UE1] [2025-07-19 12:02:46] [ 5] 67.00-68.00 sec 3.74 MBytes 31.4 Mbits/sec 0.452 ms 0/2707 (0%) +[UE1] [2025-07-19 12:02:47] [ 5] 68.00-69.00 sec 3.56 MBytes 29.8 Mbits/sec 0.569 ms 0/2576 (0%) +[UE1] [2025-07-19 12:02:48] [ 5] 69.00-70.00 sec 3.60 MBytes 30.2 Mbits/sec 0.481 ms 0/2609 (0%) +[UE1] [2025-07-19 12:02:49] [ 5] 70.00-71.00 sec 3.57 MBytes 30.0 Mbits/sec 0.427 ms 0/2587 (0%) +[UE1] [2025-07-19 12:02:50] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.617 ms 0/2592 (0%) +[UE1] [2025-07-19 12:02:51] [ 5] 72.00-73.00 sec 3.56 MBytes 29.8 Mbits/sec 0.583 ms 0/2576 (0%) +[UE1] [2025-07-19 12:02:52] [ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 0.657 ms 0/2588 (0%) +[UE1] [2025-07-19 12:02:53] [ 5] 74.00-75.00 sec 3.56 MBytes 29.9 Mbits/sec 0.491 ms 0/2581 (0%) +[UE1] [2025-07-19 12:02:54] [ 5] 75.00-76.00 sec 3.61 MBytes 30.3 Mbits/sec 0.579 ms 0/2612 (0%) +[UE1] [2025-07-19 12:02:55] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.640 ms 0/2587 (0%) +[UE1] [2025-07-19 12:02:56] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.548 ms 0/2593 (0%) +[UE1] [2025-07-19 12:02:57] [ 5] 78.00-79.00 sec 3.55 MBytes 29.8 Mbits/sec 0.558 ms 0/2574 (0%) +[UE1] [2025-07-19 12:02:58] [ 5] 79.00-80.00 sec 3.59 MBytes 30.1 Mbits/sec 0.618 ms 0/2599 (0%) +[UE1] [2025-07-19 12:02:59] [ 5] 80.00-81.00 sec 3.58 MBytes 30.1 Mbits/sec 0.417 ms 0/2596 (0%) +[UE1] [2025-07-19 12:03:00] [ 5] 81.00-82.00 sec 3.55 MBytes 29.8 Mbits/sec 0.693 ms 0/2569 (0%) +[UE1] [2025-07-19 12:03:01] [ 5] 82.00-83.00 sec 3.60 MBytes 30.2 Mbits/sec 0.499 ms 0/2609 (0%) +[UE1] [2025-07-19 12:03:02] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.481 ms 0/2591 (0%) +[UE1] [2025-07-19 12:03:03] [ 5] 84.00-85.00 sec 3.53 MBytes 29.6 Mbits/sec 0.616 ms 0/2559 (0%) +[UE1] [2025-07-19 12:03:04] [ 5] 85.00-86.00 sec 3.54 MBytes 29.7 Mbits/sec 1.085 ms 0/2563 (0%) +[UE1] [2025-07-19 12:03:05] [ 5] 86.00-87.00 sec 3.36 MBytes 28.2 Mbits/sec 0.560 ms 0/2434 (0%) +[UE1] [2025-07-19 12:03:06] [ 5] 87.00-88.00 sec 3.79 MBytes 31.8 Mbits/sec 0.522 ms 0/2742 (0%) +[UE1] [2025-07-19 12:03:07] [ 5] 88.00-89.00 sec 3.65 MBytes 30.6 Mbits/sec 0.618 ms 0/2642 (0%) +[UE1] [2025-07-19 12:03:08] [ 5] 89.00-90.00 sec 3.55 MBytes 29.8 Mbits/sec 0.626 ms 0/2572 (0%) +[UE1] [2025-07-19 12:03:09] [ 5] 90.00-91.00 sec 3.60 MBytes 30.2 Mbits/sec 0.647 ms 0/2607 (0%) +[UE1] [2025-07-19 12:03:10] [ 5] 91.00-92.00 sec 3.60 MBytes 30.2 Mbits/sec 0.498 ms 0/2604 (0%) +[UE1] [2025-07-19 12:03:11] [ 5] 92.00-93.00 sec 3.44 MBytes 28.8 Mbits/sec 0.651 ms 0/2490 (0%) +[UE1] [2025-07-19 12:03:12] [ 5] 93.00-94.00 sec 3.71 MBytes 31.1 Mbits/sec 0.596 ms 0/2686 (0%) +[UE1] [2025-07-19 12:03:13] [ 5] 94.00-95.00 sec 3.56 MBytes 29.9 Mbits/sec 0.490 ms 0/2578 (0%) +[UE1] [2025-07-19 12:03:14] [ 5] 95.00-96.00 sec 3.58 MBytes 30.1 Mbits/sec 0.612 ms 0/2596 (0%) +[UE1] [2025-07-19 12:03:15] [ 5] 96.00-97.00 sec 3.40 MBytes 28.5 Mbits/sec 0.625 ms 0/2460 (0%) +[UE1] [2025-07-19 12:03:16] [ 5] 97.00-98.00 sec 3.65 MBytes 30.6 Mbits/sec 0.694 ms 0/2644 (0%) +[UE1] [2025-07-19 12:03:17] [ 5] 98.00-99.00 sec 3.67 MBytes 30.8 Mbits/sec 0.698 ms 0/2659 (0%) +[UE1] [2025-07-19 12:03:18] [ 5] 99.00-100.00 sec 3.57 MBytes 29.9 Mbits/sec 0.599 ms 0/2584 (0%) +[UE1] [2025-07-19 12:03:21] [ 5] 0.00-1.00 sec 4.36 MBytes 36.6 Mbits/sec 0.388 ms 0/3156 (0%) +[UE1] [2025-07-19 12:03:22] [ 5] 1.00-2.00 sec 6.79 MBytes 56.9 Mbits/sec 0.247 ms 0/4916 (0%) +[UE1] [2025-07-19 12:03:23] [ 5] 2.00-3.00 sec 8.97 MBytes 75.3 Mbits/sec 0.103 ms 9752/16248 (60%) +[UE1] [2025-07-19 12:03:24] [ 5] 3.00-4.00 sec 9.49 MBytes 79.6 Mbits/sec 0.094 ms 3417/10288 (33%) +[UE1] [2025-07-19 12:03:25] [ 5] 4.00-5.00 sec 9.30 MBytes 78.0 Mbits/sec 0.083 ms 3307/10042 (33%) +[UE1] [2025-07-19 12:03:26] [ 5] 5.00-6.00 sec 9.51 MBytes 79.8 Mbits/sec 0.085 ms 3118/10004 (31%) +[UE1] [2025-07-19 12:03:27] [ 5] 6.00-7.00 sec 9.31 MBytes 78.1 Mbits/sec 0.108 ms 4007/10751 (37%) +[UE1] [2025-07-19 12:03:28] [ 5] 7.00-8.00 sec 9.29 MBytes 77.9 Mbits/sec 0.105 ms 3116/9843 (32%) +[UE1] [2025-07-19 12:03:29] [ 5] 8.00-9.00 sec 8.88 MBytes 74.5 Mbits/sec 0.100 ms 3389/9820 (35%) +[UE1] [2025-07-19 12:03:30] [ 5] 9.00-10.00 sec 4.49 MBytes 37.7 Mbits/sec 0.098 ms 1657/4909 (34%) +[UE1] [2025-07-19 12:03:31] [ 5] 10.00-11.00 sec 4.51 MBytes 37.8 Mbits/sec 0.119 ms 2878/6144 (47%) +[UE1] [2025-07-19 12:03:32] [ 5] 11.00-12.00 sec 4.33 MBytes 36.3 Mbits/sec 0.107 ms 6358/9490 (67%) +[UE1] [2025-07-19 12:03:33] [ 5] 12.00-13.00 sec 4.65 MBytes 39.0 Mbits/sec 0.131 ms 7114/10481 (68%) +[UE1] [2025-07-19 12:03:34] [ 5] 13.00-14.00 sec 4.79 MBytes 40.2 Mbits/sec 0.130 ms 7942/11412 (70%) +[UE1] [2025-07-19 12:03:35] [ 5] 14.00-15.00 sec 4.56 MBytes 38.3 Mbits/sec 0.122 ms 6798/10103 (67%) +[UE1] [2025-07-19 12:03:36] [ 5] 15.00-16.00 sec 4.88 MBytes 40.9 Mbits/sec 0.107 ms 7293/10828 (67%) +[UE1] [2025-07-19 12:03:37] [ 5] 16.00-17.00 sec 4.59 MBytes 38.5 Mbits/sec 0.078 ms 6784/10107 (67%) +[UE1] [2025-07-19 12:03:38] [ 5] 17.00-18.00 sec 4.53 MBytes 38.0 Mbits/sec 0.124 ms 6635/9913 (67%) +[UE1] [2025-07-19 12:03:39] [ 5] 18.00-19.00 sec 4.59 MBytes 38.5 Mbits/sec 0.120 ms 6906/10228 (68%) +[UE1] [2025-07-19 12:03:40] [ 5] 19.00-20.00 sec 4.82 MBytes 40.4 Mbits/sec 0.136 ms 7414/10903 (68%) +[UE1] [2025-07-19 12:03:41] [ 5] 20.00-21.00 sec 4.66 MBytes 39.1 Mbits/sec 0.122 ms 6917/10290 (67%) +[UE1] [2025-07-19 12:03:42] [ 5] 21.00-22.00 sec 4.58 MBytes 38.4 Mbits/sec 0.106 ms 6816/10133 (67%) +[UE1] [2025-07-19 12:03:43] [ 5] 22.00-23.00 sec 4.84 MBytes 40.6 Mbits/sec 0.089 ms 7315/10818 (68%) +[UE1] [2025-07-19 12:03:44] [ 5] 23.00-24.00 sec 4.60 MBytes 38.6 Mbits/sec 0.113 ms 6827/10157 (67%) +[UE1] [2025-07-19 12:03:45] [ 5] 24.00-25.00 sec 4.81 MBytes 40.4 Mbits/sec 0.080 ms 7133/10617 (67%) +[UE1] [2025-07-19 12:03:46] [ 5] 25.00-26.00 sec 4.06 MBytes 34.1 Mbits/sec 0.103 ms 5920/8861 (67%) +[UE1] [2025-07-19 12:03:47] [ 5] 26.00-27.00 sec 4.52 MBytes 37.9 Mbits/sec 0.102 ms 6731/10007 (67%) +[UE1] [2025-07-19 12:03:48] [ 5] 27.00-28.00 sec 4.94 MBytes 41.5 Mbits/sec 0.114 ms 8731/12309 (71%) +[UE1] [2025-07-19 12:03:49] [ 5] 28.00-29.00 sec 4.54 MBytes 38.1 Mbits/sec 0.129 ms 6680/9968 (67%) +[UE1] [2025-07-19 12:03:50] [ 5] 29.00-30.00 sec 4.57 MBytes 38.4 Mbits/sec 0.103 ms 6800/10113 (67%) +[UE1] [2025-07-19 12:03:51] [ 5] 30.00-31.00 sec 4.66 MBytes 39.0 Mbits/sec 0.120 ms 7049/10420 (68%) +[UE1] [2025-07-19 12:03:52] [ 5] 31.00-32.00 sec 4.84 MBytes 40.6 Mbits/sec 0.133 ms 7196/10699 (67%) +[UE1] [2025-07-19 12:03:53] [ 5] 32.00-33.00 sec 4.58 MBytes 38.4 Mbits/sec 0.134 ms 7046/10361 (68%) +[UE1] [2025-07-19 12:03:54] [ 5] 33.00-34.00 sec 4.61 MBytes 38.7 Mbits/sec 0.085 ms 6727/10066 (67%) +[UE1] [2025-07-19 12:03:55] [ 5] 34.00-35.00 sec 4.88 MBytes 40.9 Mbits/sec 0.106 ms 7216/10749 (67%) +[UE1] [2025-07-19 12:03:56] [ 5] 35.00-36.00 sec 4.55 MBytes 38.2 Mbits/sec 0.103 ms 6901/10196 (68%) +[UE1] [2025-07-19 12:03:57] [ 5] 36.00-37.00 sec 4.55 MBytes 38.2 Mbits/sec 0.132 ms 6837/10135 (67%) +[UE1] [2025-07-19 12:03:58] [ 5] 37.00-38.00 sec 4.87 MBytes 40.9 Mbits/sec 0.089 ms 7303/10831 (67%) +[UE1] [2025-07-19 12:03:59] [ 5] 38.00-39.00 sec 4.54 MBytes 38.1 Mbits/sec 0.104 ms 6702/9987 (67%) +[UE1] [2025-07-19 12:04:00] [ 5] 39.00-40.00 sec 4.66 MBytes 39.0 Mbits/sec 0.120 ms 6860/10231 (67%) +[UE1] [2025-07-19 12:04:01] [ 5] 40.00-41.00 sec 4.60 MBytes 38.6 Mbits/sec 0.095 ms 7158/10489 (68%) +[UE1] [2025-07-19 12:04:02] [ 5] 41.00-42.00 sec 8.65 MBytes 72.5 Mbits/sec 0.125 ms 13229/19491 (68%) +[UE1] [2025-07-19 12:04:03] [ 5] 42.00-43.00 sec 10.2 MBytes 85.4 Mbits/sec 0.124 ms 4798/12167 (39%) +[UE1] [2025-07-19 12:04:04] [ 5] 43.00-44.00 sec 9.30 MBytes 78.0 Mbits/sec 0.130 ms 3146/9882 (32%) +[UE1] [2025-07-19 12:04:05] [ 5] 44.00-45.00 sec 10.1 MBytes 84.6 Mbits/sec 0.093 ms 3624/10924 (33%) +[UE1] [2025-07-19 12:04:06] [ 5] 45.00-46.00 sec 9.27 MBytes 77.8 Mbits/sec 0.081 ms 3140/9855 (32%) +[UE1] [2025-07-19 12:04:07] [ 5] 46.00-47.00 sec 10.1 MBytes 84.3 Mbits/sec 0.106 ms 3428/10707 (32%) +[UE1] [2025-07-19 12:04:08] [ 5] 47.00-48.00 sec 10.0 MBytes 84.3 Mbits/sec 0.092 ms 3333/10608 (31%) +[UE1] [2025-07-19 12:04:09] [ 5] 48.00-49.00 sec 14.9 MBytes 125 Mbits/sec 0.226 ms 3425/14218 (24%) +[UE1] [2025-07-19 12:04:10] [ 5] 49.00-50.00 sec 13.7 MBytes 115 Mbits/sec 0.150 ms 26/9926 (0.26%) +[UE1] [2025-07-19 12:04:11] [ 5] 50.00-51.00 sec 14.4 MBytes 121 Mbits/sec 0.162 ms 501/10922 (4.6%) +[UE1] [2025-07-19 12:04:12] [ 5] 51.00-52.00 sec 13.9 MBytes 117 Mbits/sec 0.121 ms 0/10057 (0%) +[UE1] [2025-07-19 12:04:13] [ 5] 52.00-53.00 sec 13.9 MBytes 117 Mbits/sec 0.192 ms 341/10441 (3.3%) +[UE1] [2025-07-19 12:04:14] [ 5] 53.00-54.00 sec 12.9 MBytes 108 Mbits/sec 0.076 ms 140/9454 (1.5%) +[UE1] [2025-07-19 12:04:15] [ 5] 54.00-55.00 sec 14.6 MBytes 123 Mbits/sec 0.084 ms 49/10647 (0.46%) +[UE1] [2025-07-19 12:04:16] [ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 0.097 ms 181/10564 (1.7%) +[UE1] [2025-07-19 12:04:17] [ 5] 56.00-57.00 sec 13.9 MBytes 117 Mbits/sec 0.185 ms 19/10087 (0.19%) +[UE1] [2025-07-19 12:04:18] [ 5] 57.00-58.00 sec 14.2 MBytes 119 Mbits/sec 0.188 ms 799/11103 (7.2%) +[UE1] [2025-07-19 12:04:19] [ 5] 58.00-59.00 sec 14.5 MBytes 122 Mbits/sec 0.121 ms 68/10593 (0.64%) +[UE1] [2025-07-19 12:04:20] [ 5] 59.00-60.00 sec 13.7 MBytes 115 Mbits/sec 0.180 ms 0/9942 (0%) +[UE1] [2025-07-19 12:04:21] [ 5] 60.00-61.00 sec 14.4 MBytes 120 Mbits/sec 0.137 ms 260/10659 (2.4%) +[UE1] [2025-07-19 12:04:22] [ 5] 61.00-62.00 sec 14.4 MBytes 121 Mbits/sec 0.180 ms 0/10426 (0%) +[UE1] [2025-07-19 12:04:23] [ 5] 62.00-63.00 sec 14.6 MBytes 122 Mbits/sec 0.143 ms 0/10555 (0%) +[UE1] [2025-07-19 12:04:24] [ 5] 63.00-64.00 sec 14.5 MBytes 121 Mbits/sec 0.152 ms 0/10467 (0%) +[UE1] [2025-07-19 12:04:25] [ 5] 64.00-65.00 sec 14.5 MBytes 122 Mbits/sec 0.184 ms 0/10497 (0%) +[UE1] [2025-07-19 12:04:26] [ 5] 65.00-66.00 sec 14.2 MBytes 119 Mbits/sec 0.191 ms 0/10307 (0%) +[UE1] [2025-07-19 12:04:27] [ 5] 66.00-67.00 sec 14.2 MBytes 119 Mbits/sec 0.150 ms 0/10315 (0%) +[UE1] [2025-07-19 12:04:28] [ 5] 67.00-68.00 sec 14.5 MBytes 122 Mbits/sec 0.210 ms 0/10506 (0%) +[UE1] [2025-07-19 12:04:29] [ 5] 68.00-69.00 sec 14.6 MBytes 122 Mbits/sec 0.107 ms 0/10574 (0%) +[UE1] [2025-07-19 12:04:30] [ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 0.142 ms 0/10340 (0%) +[UE1] [2025-07-19 12:04:31] [ 5] 70.00-71.00 sec 13.3 MBytes 112 Mbits/sec 0.163 ms 0/9644 (0%) +[UE1] [2025-07-19 12:04:32] [ 5] 71.00-72.00 sec 14.2 MBytes 119 Mbits/sec 0.210 ms 0/10299 (0%) +[UE1] [2025-07-19 12:04:33] [ 5] 72.00-73.00 sec 12.8 MBytes 108 Mbits/sec 0.099 ms 416/9708 (4.3%) +[UE1] [2025-07-19 12:04:34] [ 5] 73.00-74.00 sec 15.4 MBytes 129 Mbits/sec 0.160 ms 41/11163 (0.37%) +[UE1] [2025-07-19 12:04:35] [ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 0.201 ms 0/10352 (0%) +[UE1] [2025-07-19 12:04:36] [ 5] 75.00-76.00 sec 14.0 MBytes 117 Mbits/sec 0.167 ms 0/10135 (0%) +[UE1] [2025-07-19 12:04:37] [ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 0.235 ms 55/10390 (0.53%) +[UE1] [2025-07-19 12:04:38] [ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 0.201 ms 44/10405 (0.42%) +[UE1] [2025-07-19 12:04:39] [ 5] 78.00-79.00 sec 13.3 MBytes 112 Mbits/sec 0.163 ms 0/9633 (0%) +[UE1] [2025-07-19 12:04:40] [ 5] 79.00-80.00 sec 13.3 MBytes 112 Mbits/sec 0.069 ms 803/10431 (7.7%) +[UE1] [2025-07-19 12:04:41] [ 5] 80.00-81.00 sec 13.9 MBytes 116 Mbits/sec 0.161 ms 17/10063 (0.17%) +[UE1] [2025-07-19 12:04:42] [ 5] 81.00-82.00 sec 14.2 MBytes 119 Mbits/sec 0.164 ms 931/11209 (8.3%) +[UE1] [2025-07-19 12:04:43] [ 5] 82.00-83.00 sec 14.6 MBytes 122 Mbits/sec 0.234 ms 70/10635 (0.66%) +[UE1] [2025-07-19 12:04:44] [ 5] 83.00-84.00 sec 14.5 MBytes 121 Mbits/sec 0.192 ms 0/10472 (0%) +[UE1] [2025-07-19 12:04:45] [ 5] 84.00-85.00 sec 14.5 MBytes 122 Mbits/sec 0.125 ms 0/10497 (0%) +[UE1] [2025-07-19 12:04:46] [ 5] 85.00-86.00 sec 14.2 MBytes 119 Mbits/sec 0.154 ms 0/10310 (0%) +[UE1] [2025-07-19 12:04:47] [ 5] 86.00-87.00 sec 14.5 MBytes 121 Mbits/sec 0.117 ms 0/10485 (0%) +[UE1] [2025-07-19 12:04:48] [ 5] 87.00-88.00 sec 11.8 MBytes 98.8 Mbits/sec 0.205 ms 0/8533 (0%) +[UE1] [2025-07-19 12:04:49] [ 5] 88.00-89.00 sec 9.00 MBytes 75.5 Mbits/sec 0.078 ms 1063/7578 (14%) +[UE1] [2025-07-19 12:04:50] [ 5] 89.00-90.00 sec 9.47 MBytes 79.5 Mbits/sec 0.083 ms 3240/10100 (32%) +[UE1] [2025-07-19 12:04:51] [ 5] 90.00-91.00 sec 9.29 MBytes 77.9 Mbits/sec 0.092 ms 3130/9858 (32%) +[UE1] [2025-07-19 12:04:52] [ 5] 91.00-92.00 sec 9.52 MBytes 79.8 Mbits/sec 0.082 ms 3778/10671 (35%) +[UE1] [2025-07-19 12:04:53] [ 5] 92.00-93.00 sec 9.32 MBytes 78.2 Mbits/sec 0.089 ms 3557/10307 (35%) +[UE1] [2025-07-19 12:04:54] [ 5] 93.00-94.00 sec 10.0 MBytes 84.1 Mbits/sec 0.072 ms 3688/10949 (34%) +[UE1] [2025-07-19 12:04:55] [ 5] 94.00-95.00 sec 11.0 MBytes 92.1 Mbits/sec 0.096 ms 3785/11736 (32%) +[UE1] [2025-07-19 12:04:56] [ 5] 95.00-96.00 sec 16.1 MBytes 135 Mbits/sec 0.148 ms 1333/13028 (10%) +[UE1] [2025-07-19 12:04:57] [ 5] 96.00-97.00 sec 14.4 MBytes 120 Mbits/sec 0.164 ms 0/10401 (0%) +[UE1] [2025-07-19 12:04:58] [ 5] 97.00-98.00 sec 14.6 MBytes 122 Mbits/sec 0.111 ms 0/10560 (0%) +[UE1] [2025-07-19 12:04:59] [ 5] 98.00-99.00 sec 14.1 MBytes 118 Mbits/sec 0.207 ms 0/10183 (0%) +[UE1] [2025-07-19 12:05:00] [ 5] 99.00-100.00 sec 14.9 MBytes 125 Mbits/sec 0.132 ms 0/10816 (0%) +[UE1] [2025-07-19 12:05:01] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.268 ms 0/2712 (0%) +[UE1] [2025-07-19 12:05:02] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2593 (0%) +[UE1] [2025-07-19 12:05:03] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.251 ms 0/2587 (0%) +[UE1] [2025-07-19 12:05:04] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.123 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:05] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2592 (0%) +[UE1] [2025-07-19 12:05:06] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.281 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:07] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:08] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:09] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:10] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:11] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:12] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2592 (0%) +[UE1] [2025-07-19 12:05:13] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:14] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:15] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2592 (0%) +[UE1] [2025-07-19 12:05:16] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.152 ms 0/2587 (0%) +[UE1] [2025-07-19 12:05:17] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2592 (0%) +[UE1] [2025-07-19 12:05:18] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:19] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:20] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:21] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:22] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:23] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:24] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.196 ms 0/2587 (0%) +[UE1] [2025-07-19 12:05:25] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:26] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2592 (0%) +[UE1] [2025-07-19 12:05:27] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.258 ms 0/2587 (0%) +[UE1] [2025-07-19 12:05:28] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.308 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:29] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2591 (0%) +[UE1] [2025-07-19 12:05:30] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:31] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:32] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2589 (0%) +[UE1] [2025-07-19 12:05:33] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:34] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.532 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:35] [ 5] 34.00-35.00 sec 3.55 MBytes 29.8 Mbits/sec 0.581 ms 0/2571 (0%) +[UE1] [2025-07-19 12:05:36] [ 5] 35.00-36.00 sec 3.60 MBytes 30.2 Mbits/sec 0.638 ms 0/2604 (0%) +[UE1] [2025-07-19 12:05:37] [ 5] 36.00-37.00 sec 3.56 MBytes 29.9 Mbits/sec 0.536 ms 0/2580 (0%) +[UE1] [2025-07-19 12:05:38] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.550 ms 0/2588 (0%) +[UE1] [2025-07-19 12:05:39] [ 5] 38.00-39.00 sec 3.59 MBytes 30.2 Mbits/sec 0.552 ms 0/2603 (0%) +[UE1] [2025-07-19 12:05:40] [ 5] 39.00-40.00 sec 3.57 MBytes 29.9 Mbits/sec 0.463 ms 0/2582 (0%) +[UE1] [2025-07-19 12:05:41] [ 5] 40.00-41.00 sec 3.56 MBytes 29.9 Mbits/sec 0.625 ms 0/2577 (0%) +[UE1] [2025-07-19 12:05:42] [ 5] 41.00-42.00 sec 3.58 MBytes 30.1 Mbits/sec 0.552 ms 0/2595 (0%) +[UE1] [2025-07-19 12:05:43] [ 5] 42.00-43.00 sec 3.59 MBytes 30.1 Mbits/sec 0.681 ms 0/2599 (0%) +[UE1] [2025-07-19 12:05:44] [ 5] 43.00-44.00 sec 3.59 MBytes 30.1 Mbits/sec 0.427 ms 0/2599 (0%) +[UE1] [2025-07-19 12:05:45] [ 5] 44.00-45.00 sec 3.56 MBytes 29.9 Mbits/sec 0.575 ms 0/2579 (0%) +[UE1] [2025-07-19 12:05:46] [ 5] 45.00-46.00 sec 3.59 MBytes 30.1 Mbits/sec 0.440 ms 0/2600 (0%) +[UE1] [2025-07-19 12:05:47] [ 5] 46.00-47.00 sec 3.55 MBytes 29.7 Mbits/sec 0.711 ms 0/2568 (0%) +[UE1] [2025-07-19 12:05:48] [ 5] 47.00-48.00 sec 3.59 MBytes 30.2 Mbits/sec 0.559 ms 0/2603 (0%) +[UE1] [2025-07-19 12:05:49] [ 5] 48.00-49.00 sec 3.59 MBytes 30.1 Mbits/sec 0.480 ms 0/2597 (0%) +[UE1] [2025-07-19 12:05:50] [ 5] 49.00-50.00 sec 3.57 MBytes 29.9 Mbits/sec 0.575 ms 0/2584 (0%) +[UE1] [2025-07-19 12:05:51] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.514 ms 0/2591 (0%) +[UE1] [2025-07-19 12:05:52] [ 5] 51.00-52.00 sec 3.56 MBytes 29.9 Mbits/sec 0.557 ms 0/2580 (0%) +[UE1] [2025-07-19 12:05:53] [ 5] 52.00-53.00 sec 3.57 MBytes 29.9 Mbits/sec 0.519 ms 0/2584 (0%) +[UE1] [2025-07-19 12:05:54] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.580 ms 0/2586 (0%) +[UE1] [2025-07-19 12:05:55] [ 5] 54.00-55.00 sec 3.60 MBytes 30.2 Mbits/sec 0.519 ms 0/2607 (0%) +[UE1] [2025-07-19 12:05:56] [ 5] 55.00-56.00 sec 3.56 MBytes 29.9 Mbits/sec 0.637 ms 0/2578 (0%) +[UE1] [2025-07-19 12:05:57] [ 5] 56.00-57.00 sec 3.60 MBytes 30.2 Mbits/sec 0.532 ms 0/2604 (0%) +[UE1] [2025-07-19 12:05:58] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.529 ms 0/2590 (0%) +[UE1] [2025-07-19 12:05:59] [ 5] 58.00-59.00 sec 3.57 MBytes 29.9 Mbits/sec 0.596 ms 0/2585 (0%) +[UE1] [2025-07-19 12:06:00] [ 5] 59.00-60.00 sec 3.59 MBytes 30.1 Mbits/sec 0.433 ms 0/2598 (0%) +[UE1] [2025-07-19 12:06:01] [ 5] 60.00-61.00 sec 3.54 MBytes 29.7 Mbits/sec 0.556 ms 0/2566 (0%) +[UE1] [2025-07-19 12:06:02] [ 5] 61.00-62.00 sec 3.61 MBytes 30.3 Mbits/sec 0.516 ms 0/2613 (0%) +[UE1] [2025-07-19 12:06:03] [ 5] 62.00-63.00 sec 3.57 MBytes 29.9 Mbits/sec 0.609 ms 0/2584 (0%) +[UE1] [2025-07-19 12:06:04] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.633 ms 0/2586 (0%) +[UE1] [2025-07-19 12:06:05] [ 5] 64.00-65.00 sec 3.29 MBytes 27.6 Mbits/sec 0.531 ms 0/2384 (0%) +[UE1] [2025-07-19 12:06:06] [ 5] 65.00-66.00 sec 3.70 MBytes 31.1 Mbits/sec 0.516 ms 0/2681 (0%) +[UE1] [2025-07-19 12:06:07] [ 5] 66.00-67.00 sec 3.75 MBytes 31.5 Mbits/sec 0.246 ms 0/2717 (0%) +[UE1] [2025-07-19 12:06:08] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2590 (0%) +[UE1] [2025-07-19 12:06:09] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2591 (0%) +[UE1] [2025-07-19 12:06:10] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2589 (0%) +[UE1] [2025-07-19 12:06:11] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2589 (0%) +[UE1] [2025-07-19 12:06:12] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.319 ms 0/2592 (0%) +[UE1] [2025-07-19 12:06:13] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.197 ms 0/2587 (0%) +[UE1] [2025-07-19 12:06:14] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.577 ms 0/2590 (0%) +[UE1] [2025-07-19 12:06:15] [ 5] 74.00-75.00 sec 3.57 MBytes 29.9 Mbits/sec 0.574 ms 0/2583 (0%) +[UE1] [2025-07-19 12:06:16] [ 5] 75.00-76.00 sec 3.50 MBytes 29.4 Mbits/sec 0.603 ms 0/2534 (0%) +[UE1] [2025-07-19 12:06:17] [ 5] 76.00-77.00 sec 3.65 MBytes 30.6 Mbits/sec 0.815 ms 0/2642 (0%) +[UE1] [2025-07-19 12:06:18] [ 5] 77.00-78.00 sec 3.59 MBytes 30.1 Mbits/sec 0.578 ms 0/2598 (0%) +[UE1] [2025-07-19 12:06:19] [ 5] 78.00-79.00 sec 3.56 MBytes 29.9 Mbits/sec 0.617 ms 0/2580 (0%) +[UE1] [2025-07-19 12:06:20] [ 5] 79.00-80.00 sec 3.59 MBytes 30.1 Mbits/sec 0.591 ms 0/2602 (0%) +[UE1] [2025-07-19 12:06:21] [ 5] 80.00-81.00 sec 3.56 MBytes 29.9 Mbits/sec 0.651 ms 0/2577 (0%) +[UE1] [2025-07-19 12:06:22] [ 5] 81.00-82.00 sec 3.59 MBytes 30.1 Mbits/sec 0.588 ms 0/2598 (0%) +[UE1] [2025-07-19 12:06:23] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.652 ms 0/2589 (0%) +[UE1] [2025-07-19 12:06:24] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.531 ms 0/2592 (0%) +[UE1] [2025-07-19 12:06:25] [ 5] 84.00-85.00 sec 3.47 MBytes 29.1 Mbits/sec 0.687 ms 0/2513 (0%) +[UE1] [2025-07-19 12:06:26] [ 5] 85.00-86.00 sec 3.65 MBytes 30.6 Mbits/sec 0.609 ms 0/2641 (0%) +[UE1] [2025-07-19 12:06:27] [ 5] 86.00-87.00 sec 3.58 MBytes 30.1 Mbits/sec 0.604 ms 0/2595 (0%) +[UE1] [2025-07-19 12:06:28] [ 5] 87.00-88.00 sec 3.42 MBytes 28.7 Mbits/sec 0.921 ms 0/2477 (0%) +[UE1] [2025-07-19 12:06:29] [ 5] 88.00-89.00 sec 3.57 MBytes 29.9 Mbits/sec 0.528 ms 0/2585 (0%) +[UE1] [2025-07-19 12:06:30] [ 5] 89.00-90.00 sec 3.61 MBytes 30.3 Mbits/sec 0.526 ms 0/2616 (0%) +[UE1] [2025-07-19 12:06:31] [ 5] 90.00-91.00 sec 3.70 MBytes 31.0 Mbits/sec 0.521 ms 0/2680 (0%) +[UE1] [2025-07-19 12:06:32] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.603 ms 0/2590 (0%) +[UE1] [2025-07-19 12:06:33] [ 5] 92.00-93.00 sec 3.58 MBytes 30.1 Mbits/sec 0.587 ms 0/2596 (0%) +[UE1] [2025-07-19 12:06:34] [ 5] 93.00-94.00 sec 3.59 MBytes 30.2 Mbits/sec 0.602 ms 0/2603 (0%) +[UE1] [2025-07-19 12:06:35] [ 5] 94.00-95.00 sec 3.56 MBytes 29.9 Mbits/sec 0.716 ms 0/2580 (0%) +[UE1] [2025-07-19 12:06:36] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.615 ms 0/2593 (0%) +[UE1] [2025-07-19 12:06:37] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.625 ms 0/2586 (0%) +[UE1] [2025-07-19 12:06:38] [ 5] 97.00-98.00 sec 3.59 MBytes 30.1 Mbits/sec 0.622 ms 0/2597 (0%) +[UE1] [2025-07-19 12:06:39] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.538 ms 0/2592 (0%) +[UE1] [2025-07-19 12:06:41] [ 5] 99.00-100.00 sec 3.56 MBytes 29.9 Mbits/sec 0.642 ms 0/2578 (0%) +[UE1] [2025-07-19 12:06:43] [ 5] 0.00-1.00 sec 4.80 MBytes 40.3 Mbits/sec 0.350 ms 0/3476 (0%) +[UE1] [2025-07-19 12:06:44] [ 5] 1.00-2.00 sec 4.68 MBytes 39.2 Mbits/sec 0.315 ms 0/3388 (0%) +[UE1] [2025-07-19 12:06:45] [ 5] 2.00-3.00 sec 4.31 MBytes 36.2 Mbits/sec 0.111 ms 2764/5885 (47%) +[UE1] [2025-07-19 12:06:46] [ 5] 3.00-4.00 sec 4.07 MBytes 34.1 Mbits/sec 0.121 ms 5982/8926 (67%) +[UE1] [2025-07-19 12:06:47] [ 5] 4.00-5.00 sec 4.89 MBytes 41.0 Mbits/sec 0.106 ms 7458/10997 (68%) +[UE1] [2025-07-19 12:06:48] [ 5] 5.00-6.00 sec 8.22 MBytes 69.0 Mbits/sec 0.122 ms 13292/19247 (69%) +[UE1] [2025-07-19 12:06:49] [ 5] 6.00-7.00 sec 9.39 MBytes 78.8 Mbits/sec 0.086 ms 5991/12794 (47%) +[UE1] [2025-07-19 12:06:50] [ 5] 7.00-8.00 sec 9.50 MBytes 79.7 Mbits/sec 0.079 ms 3403/10279 (33%) +[UE1] [2025-07-19 12:06:51] [ 5] 8.00-9.00 sec 9.30 MBytes 78.0 Mbits/sec 0.101 ms 3374/10108 (33%) +[UE1] [2025-07-19 12:06:52] [ 5] 9.00-10.00 sec 9.49 MBytes 79.6 Mbits/sec 0.079 ms 3532/10405 (34%) +[UE1] [2025-07-19 12:06:53] [ 5] 10.00-11.00 sec 9.32 MBytes 78.1 Mbits/sec 0.079 ms 3386/10132 (33%) +[UE1] [2025-07-19 12:06:54] [ 5] 11.00-12.00 sec 9.30 MBytes 78.0 Mbits/sec 0.079 ms 3972/10707 (37%) +[UE1] [2025-07-19 12:06:55] [ 5] 12.00-13.00 sec 7.01 MBytes 58.8 Mbits/sec 0.106 ms 2505/7584 (33%) +[UE1] [2025-07-19 12:06:56] [ 5] 13.00-14.00 sec 4.51 MBytes 37.8 Mbits/sec 0.086 ms 1439/4702 (31%) +[UE1] [2025-07-19 12:06:57] [ 5] 14.00-15.00 sec 4.53 MBytes 38.0 Mbits/sec 0.135 ms 4679/7959 (59%) +[UE1] [2025-07-19 12:06:58] [ 5] 15.00-16.00 sec 4.36 MBytes 36.6 Mbits/sec 0.108 ms 6555/9713 (67%) +[UE1] [2025-07-19 12:06:59] [ 5] 16.00-17.00 sec 4.52 MBytes 37.9 Mbits/sec 0.108 ms 6927/10203 (68%) +[UE1] [2025-07-19 12:07:00] [ 5] 17.00-18.00 sec 4.95 MBytes 41.6 Mbits/sec 0.140 ms 8246/11834 (70%) +[UE1] [2025-07-19 12:07:01] [ 5] 18.00-19.00 sec 3.98 MBytes 33.4 Mbits/sec 0.144 ms 5999/8879 (68%) +[UE1] [2025-07-19 12:07:02] [ 5] 19.00-20.00 sec 4.58 MBytes 38.4 Mbits/sec 0.143 ms 6730/10049 (67%) +[UE1] [2025-07-19 12:07:03] [ 5] 20.00-21.00 sec 4.62 MBytes 38.7 Mbits/sec 0.099 ms 7034/10376 (68%) +[UE1] [2025-07-19 12:07:04] [ 5] 21.00-22.00 sec 4.64 MBytes 38.9 Mbits/sec 0.116 ms 8291/11653 (71%) +[UE1] [2025-07-19 12:07:05] [ 5] 22.00-23.00 sec 4.60 MBytes 38.6 Mbits/sec 0.091 ms 6979/10310 (68%) +[UE1] [2025-07-19 12:07:06] [ 5] 23.00-24.00 sec 4.75 MBytes 39.8 Mbits/sec 0.149 ms 7160/10600 (68%) +[UE1] [2025-07-19 12:07:07] [ 5] 24.00-25.00 sec 4.59 MBytes 38.5 Mbits/sec 0.110 ms 6870/10197 (67%) +[UE1] [2025-07-19 12:07:08] [ 5] 25.00-26.00 sec 4.35 MBytes 36.5 Mbits/sec 0.090 ms 6565/9712 (68%) +[UE1] [2025-07-19 12:07:09] [ 5] 26.00-27.00 sec 4.65 MBytes 39.0 Mbits/sec 0.089 ms 6907/10274 (67%) +[UE1] [2025-07-19 12:07:10] [ 5] 27.00-28.00 sec 4.59 MBytes 38.5 Mbits/sec 0.093 ms 7904/11230 (70%) +[UE1] [2025-07-19 12:07:11] [ 5] 28.00-29.00 sec 4.52 MBytes 37.9 Mbits/sec 0.115 ms 6832/10107 (68%) +[UE1] [2025-07-19 12:07:12] [ 5] 29.00-30.00 sec 4.86 MBytes 40.8 Mbits/sec 0.126 ms 7267/10789 (67%) +[UE1] [2025-07-19 12:07:13] [ 5] 30.00-31.00 sec 4.56 MBytes 38.3 Mbits/sec 0.100 ms 7009/10313 (68%) +[UE1] [2025-07-19 12:07:14] [ 5] 31.00-32.00 sec 4.89 MBytes 41.0 Mbits/sec 0.085 ms 7113/10651 (67%) +[UE1] [2025-07-19 12:07:15] [ 5] 32.00-33.00 sec 4.52 MBytes 37.9 Mbits/sec 0.089 ms 6649/9925 (67%) +[UE1] [2025-07-19 12:07:16] [ 5] 33.00-34.00 sec 4.65 MBytes 39.0 Mbits/sec 0.129 ms 6788/10158 (67%) +[UE1] [2025-07-19 12:07:17] [ 5] 34.00-35.00 sec 4.57 MBytes 38.3 Mbits/sec 0.083 ms 6961/10270 (68%) +[UE1] [2025-07-19 12:07:18] [ 5] 35.00-36.00 sec 4.07 MBytes 34.1 Mbits/sec 0.104 ms 6273/9219 (68%) +[UE1] [2025-07-19 12:07:19] [ 5] 36.00-37.00 sec 4.75 MBytes 39.8 Mbits/sec 0.098 ms 7155/10595 (68%) +[UE1] [2025-07-19 12:07:20] [ 5] 37.00-38.00 sec 4.62 MBytes 38.7 Mbits/sec 0.097 ms 8107/11449 (71%) +[UE1] [2025-07-19 12:07:21] [ 5] 38.00-39.00 sec 4.59 MBytes 38.5 Mbits/sec 0.141 ms 6979/10300 (68%) +[UE1] [2025-07-19 12:07:22] [ 5] 39.00-40.00 sec 4.87 MBytes 40.8 Mbits/sec 0.107 ms 7270/10796 (67%) +[UE1] [2025-07-19 12:07:23] [ 5] 40.00-41.00 sec 4.61 MBytes 38.7 Mbits/sec 0.129 ms 7133/10474 (68%) +[UE1] [2025-07-19 12:07:24] [ 5] 41.00-42.00 sec 4.56 MBytes 38.3 Mbits/sec 0.116 ms 6778/10081 (67%) +[UE1] [2025-07-19 12:07:25] [ 5] 42.00-43.00 sec 4.28 MBytes 35.9 Mbits/sec 0.086 ms 6300/9398 (67%) +[UE1] [2025-07-19 12:07:26] [ 5] 43.00-44.00 sec 4.85 MBytes 40.7 Mbits/sec 0.677 ms 7282/10796 (67%) +[UE1] [2025-07-19 12:07:27] [ 5] 44.00-45.00 sec 4.80 MBytes 40.3 Mbits/sec 0.115 ms 7885/11361 (69%) +[UE1] [2025-07-19 12:07:28] [ 5] 45.00-46.00 sec 10.1 MBytes 84.4 Mbits/sec 0.071 ms 13298/20586 (65%) +[UE1] [2025-07-19 12:07:29] [ 5] 46.00-47.00 sec 9.52 MBytes 79.8 Mbits/sec 0.100 ms 3430/10322 (33%) +[UE1] [2025-07-19 12:07:30] [ 5] 47.00-48.00 sec 10.0 MBytes 84.3 Mbits/sec 0.117 ms 3392/10668 (32%) +[UE1] [2025-07-19 12:07:31] [ 5] 48.00-49.00 sec 9.32 MBytes 78.2 Mbits/sec 0.124 ms 3142/9891 (32%) +[UE1] [2025-07-19 12:07:32] [ 5] 49.00-50.00 sec 9.31 MBytes 78.1 Mbits/sec 0.123 ms 3429/10174 (34%) +[UE1] [2025-07-19 12:07:33] [ 5] 50.00-51.00 sec 10.0 MBytes 84.2 Mbits/sec 0.107 ms 3508/10775 (33%) +[UE1] [2025-07-19 12:07:34] [ 5] 51.00-52.00 sec 10.0 MBytes 84.2 Mbits/sec 0.107 ms 3553/10825 (33%) +[UE1] [2025-07-19 12:07:35] [ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 0.089 ms 2888/13255 (22%) +[UE1] [2025-07-19 12:07:36] [ 5] 53.00-54.00 sec 13.2 MBytes 111 Mbits/sec 0.103 ms 396/9963 (4%) +[UE1] [2025-07-19 12:07:37] [ 5] 54.00-55.00 sec 16.3 MBytes 137 Mbits/sec 0.195 ms 15/11804 (0.13%) +[UE1] [2025-07-19 12:07:38] [ 5] 55.00-56.00 sec 13.1 MBytes 110 Mbits/sec 0.161 ms 0/9522 (0%) +[UE1] [2025-07-19 12:07:39] [ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 0.132 ms 604/10987 (5.5%) +[UE1] [2025-07-19 12:07:40] [ 5] 57.00-58.00 sec 14.5 MBytes 122 Mbits/sec 0.129 ms 0/10534 (0%) +[UE1] [2025-07-19 12:07:41] [ 5] 58.00-59.00 sec 14.5 MBytes 121 Mbits/sec 0.131 ms 0/10467 (0%) +[UE1] [2025-07-19 12:07:42] [ 5] 59.00-60.00 sec 14.2 MBytes 119 Mbits/sec 0.178 ms 0/10312 (0%) +[UE1] [2025-07-19 12:07:43] [ 5] 60.00-61.00 sec 14.4 MBytes 121 Mbits/sec 0.145 ms 0/10441 (0%) +[UE1] [2025-07-19 12:07:44] [ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 0.154 ms 0/10323 (0%) +[UE1] [2025-07-19 12:07:45] [ 5] 62.00-63.00 sec 14.6 MBytes 122 Mbits/sec 0.160 ms 0/10572 (0%) +[UE1] [2025-07-19 12:07:46] [ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 0.134 ms 0/10341 (0%) +[UE1] [2025-07-19 12:07:47] [ 5] 64.00-65.00 sec 13.9 MBytes 116 Mbits/sec 0.153 ms 0/10040 (0%) +[UE1] [2025-07-19 12:07:48] [ 5] 65.00-66.00 sec 14.2 MBytes 120 Mbits/sec 0.130 ms 0/10318 (0%) +[UE1] [2025-07-19 12:07:49] [ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 0.151 ms 0/10357 (0%) +[UE1] [2025-07-19 12:07:50] [ 5] 67.00-68.00 sec 14.1 MBytes 118 Mbits/sec 0.115 ms 0/10201 (0%) +[UE1] [2025-07-19 12:07:51] [ 5] 68.00-69.00 sec 13.2 MBytes 111 Mbits/sec 0.080 ms 30/9616 (0.31%) +[UE1] [2025-07-19 12:07:52] [ 5] 69.00-70.00 sec 15.3 MBytes 129 Mbits/sec 0.147 ms 49/11151 (0.44%) +[UE1] [2025-07-19 12:07:53] [ 5] 70.00-71.00 sec 14.2 MBytes 119 Mbits/sec 0.131 ms 0/10282 (0%) +[UE1] [2025-07-19 12:07:54] [ 5] 71.00-72.00 sec 13.4 MBytes 113 Mbits/sec 0.229 ms 57/9793 (0.58%) +[UE1] [2025-07-19 12:07:55] [ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 0.142 ms 637/10996 (5.8%) +[UE1] [2025-07-19 12:07:56] [ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 0.169 ms 0/10326 (0%) +[UE1] [2025-07-19 12:07:57] [ 5] 74.00-75.00 sec 13.5 MBytes 113 Mbits/sec 0.083 ms 20/9814 (0.2%) +[UE1] [2025-07-19 12:07:58] [ 5] 75.00-76.00 sec 14.4 MBytes 121 Mbits/sec 0.143 ms 139/10595 (1.3%) +[UE1] [2025-07-19 12:07:59] [ 5] 76.00-77.00 sec 13.2 MBytes 110 Mbits/sec 0.174 ms 313/9845 (3.2%) +[UE1] [2025-07-19 12:08:00] [ 5] 77.00-78.00 sec 14.7 MBytes 124 Mbits/sec 0.194 ms 207/10870 (1.9%) +[UE1] [2025-07-19 12:08:01] [ 5] 78.00-79.00 sec 13.5 MBytes 113 Mbits/sec 0.177 ms 18/9792 (0.18%) +[UE1] [2025-07-19 12:08:02] [ 5] 79.00-80.00 sec 15.0 MBytes 126 Mbits/sec 0.186 ms 321/11219 (2.9%) +[UE1] [2025-07-19 12:08:03] [ 5] 80.00-81.00 sec 14.1 MBytes 118 Mbits/sec 0.145 ms 69/10296 (0.67%) +[UE1] [2025-07-19 12:08:04] [ 5] 81.00-82.00 sec 13.1 MBytes 110 Mbits/sec 0.109 ms 130/9652 (1.3%) +[UE1] [2025-07-19 12:08:05] [ 5] 82.00-83.00 sec 13.8 MBytes 116 Mbits/sec 0.126 ms 46/10018 (0.46%) +[UE1] [2025-07-19 12:08:06] [ 5] 83.00-84.00 sec 14.4 MBytes 121 Mbits/sec 0.092 ms 178/10582 (1.7%) +[UE1] [2025-07-19 12:08:07] [ 5] 84.00-85.00 sec 10.7 MBytes 89.7 Mbits/sec 0.103 ms 199/7943 (2.5%) +[UE1] [2025-07-19 12:08:08] [ 5] 85.00-86.00 sec 9.95 MBytes 83.5 Mbits/sec 0.103 ms 2396/9601 (25%) +[UE1] [2025-07-19 12:08:09] [ 5] 86.00-87.00 sec 9.14 MBytes 76.7 Mbits/sec 0.116 ms 3128/9746 (32%) +[UE1] [2025-07-19 12:08:10] [ 5] 87.00-88.00 sec 9.70 MBytes 81.3 Mbits/sec 0.078 ms 3772/10794 (35%) +[UE1] [2025-07-19 12:08:11] [ 5] 88.00-89.00 sec 9.49 MBytes 79.6 Mbits/sec 0.077 ms 3431/10304 (33%) +[UE1] [2025-07-19 12:08:12] [ 5] 89.00-90.00 sec 9.27 MBytes 77.7 Mbits/sec 0.099 ms 3387/10097 (34%) +[UE1] [2025-07-19 12:08:13] [ 5] 90.00-91.00 sec 10.0 MBytes 84.2 Mbits/sec 0.093 ms 3526/10796 (33%) +[UE1] [2025-07-19 12:08:14] [ 5] 91.00-92.00 sec 12.5 MBytes 105 Mbits/sec 0.094 ms 4345/13382 (32%) +[UE1] [2025-07-19 12:08:15] [ 5] 92.00-93.00 sec 15.8 MBytes 132 Mbits/sec 0.139 ms 151/11578 (1.3%) +[UE1] [2025-07-19 12:08:16] [ 5] 93.00-94.00 sec 14.4 MBytes 121 Mbits/sec 0.161 ms 0/10449 (0%) +[UE1] [2025-07-19 12:08:17] [ 5] 94.00-95.00 sec 14.2 MBytes 119 Mbits/sec 0.149 ms 0/10311 (0%) +[UE1] [2025-07-19 12:08:18] [ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 0.158 ms 0/10370 (0%) +[UE1] [2025-07-19 12:08:19] [ 5] 96.00-97.00 sec 14.5 MBytes 122 Mbits/sec 0.147 ms 0/10528 (0%) +[UE1] [2025-07-19 12:08:20] [ 5] 97.00-98.00 sec 14.2 MBytes 119 Mbits/sec 0.133 ms 0/10277 (0%) +[UE1] [2025-07-19 12:08:21] [ 5] 98.00-99.00 sec 12.6 MBytes 106 Mbits/sec 0.098 ms 42/9166 (0.46%) +[UE1] [2025-07-19 12:08:22] [ 5] 99.00-100.00 sec 15.6 MBytes 131 Mbits/sec 0.094 ms 214/11486 (1.9%) +[UE1] [2025-07-19 12:08:24] [ 5] 0.00-1.00 sec 3.74 MBytes 31.4 Mbits/sec 0.166 ms 0/2708 (0%) +[UE1] [2025-07-19 12:08:25] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2591 (0%) +[UE1] [2025-07-19 12:08:26] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:27] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:28] [ 5] 4.00-5.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2587 (0%) +[UE1] [2025-07-19 12:08:29] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:30] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:31] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:32] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:33] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2591 (0%) +[UE1] [2025-07-19 12:08:34] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:35] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:36] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:37] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2591 (0%) +[UE1] [2025-07-19 12:08:38] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:39] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:40] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:41] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:42] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:43] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2593 (0%) +[UE1] [2025-07-19 12:08:44] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.110 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:45] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:46] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.171 ms 0/2587 (0%) +[UE1] [2025-07-19 12:08:47] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2592 (0%) +[UE1] [2025-07-19 12:08:48] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:49] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2591 (0%) +[UE1] [2025-07-19 12:08:50] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.149 ms 0/2587 (0%) +[UE1] [2025-07-19 12:08:51] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:52] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2591 (0%) +[UE1] [2025-07-19 12:08:53] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.118 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:54] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:55] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2592 (0%) +[UE1] [2025-07-19 12:08:56] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE1] [2025-07-19 12:08:57] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.285 ms 0/2589 (0%) +[UE1] [2025-07-19 12:08:58] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.227 ms 0/2587 (0%) +[UE1] [2025-07-19 12:08:59] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:00] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:01] [ 5] 37.00-38.00 sec 3.53 MBytes 29.6 Mbits/sec 0.256 ms 33/2590 (1.3%) +[UE1] [2025-07-19 12:09:02] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:03] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:04] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:05] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.317 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:06] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:07] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:08] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:09] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:10] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:11] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:12] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:13] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.158 ms 0/2588 (0%) +[UE1] [2025-07-19 12:09:14] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:15] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:16] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:17] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.271 ms 0/2587 (0%) +[UE1] [2025-07-19 12:09:18] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:19] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:20] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:21] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:22] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.290 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:23] [ 5] 59.00-60.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2587 (0%) +[UE1] [2025-07-19 12:09:24] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:25] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:26] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:27] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.239 ms 0/2587 (0%) +[UE1] [2025-07-19 12:09:28] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:29] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:30] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:31] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:32] [ 5] 68.00-69.00 sec 3.56 MBytes 29.9 Mbits/sec 0.323 ms 0/2580 (0%) +[UE1] [2025-07-19 12:09:33] [ 5] 69.00-70.00 sec 3.59 MBytes 30.1 Mbits/sec 0.276 ms 0/2598 (0%) +[UE1] [2025-07-19 12:09:34] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.124 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:35] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.293 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:36] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:37] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:38] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:39] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:40] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:41] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.296 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:42] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2591 (0%) +[UE1] [2025-07-19 12:09:43] [ 5] 79.00-80.00 sec 3.57 MBytes 30.0 Mbits/sec 0.298 ms 0/2588 (0%) +[UE1] [2025-07-19 12:09:44] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:45] [ 5] 81.00-82.00 sec 3.57 MBytes 29.9 Mbits/sec 0.134 ms 0/2585 (0%) +[UE1] [2025-07-19 12:09:46] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:47] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:48] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.267 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:49] [ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 0.317 ms 0/2587 (0%) +[UE1] [2025-07-19 12:09:50] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2593 (0%) +[UE1] [2025-07-19 12:09:51] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE1] [2025-07-19 12:09:52] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:53] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:54] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.188 ms 0/2587 (0%) +[UE1] [2025-07-19 12:09:55] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.105 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:56] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.297 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:57] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2592 (0%) +[UE1] [2025-07-19 12:09:58] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 12:09:59] [ 5] 95.00-96.00 sec 3.57 MBytes 30.0 Mbits/sec 0.131 ms 0/2587 (0%) +[UE1] [2025-07-19 12:10:00] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2592 (0%) +[UE1] [2025-07-19 12:10:01] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.188 ms 0/2588 (0%) +[UE1] [2025-07-19 12:10:02] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2591 (0%) +[UE1] [2025-07-19 12:10:03] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2589 (0%) +[UE1] [2025-07-19 12:10:06] [ 5] 0.00-1.00 sec 7.95 MBytes 66.7 Mbits/sec 0.141 ms 0/5757 (0%) +[UE1] [2025-07-19 12:10:07] [ 5] 1.00-2.00 sec 14.5 MBytes 122 Mbits/sec 0.151 ms 0/10523 (0%) +[UE1] [2025-07-19 12:10:08] [ 5] 2.00-3.00 sec 13.7 MBytes 115 Mbits/sec 0.251 ms 0/9928 (0%) +[UE1] [2025-07-19 12:10:09] [ 5] 3.00-4.00 sec 14.1 MBytes 118 Mbits/sec 0.139 ms 24/10237 (0.23%) +[UE1] [2025-07-19 12:10:10] [ 5] 4.00-5.00 sec 14.6 MBytes 123 Mbits/sec 0.082 ms 0/10594 (0%) +[UE1] [2025-07-19 12:10:11] [ 5] 5.00-6.00 sec 14.7 MBytes 123 Mbits/sec 0.212 ms 0/10633 (0%) +[UE1] [2025-07-19 12:10:12] [ 5] 6.00-7.00 sec 14.7 MBytes 124 Mbits/sec 0.149 ms 0/10665 (0%) +[UE1] [2025-07-19 12:10:13] [ 5] 7.00-8.00 sec 14.4 MBytes 120 Mbits/sec 0.194 ms 0/10399 (0%) +[UE1] [2025-07-19 12:10:14] [ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 0.148 ms 0/10321 (0%) +[UE1] [2025-07-19 12:10:15] [ 5] 9.00-10.00 sec 14.2 MBytes 119 Mbits/sec 0.176 ms 0/10249 (0%) +[UE1] [2025-07-19 12:10:16] [ 5] 10.00-11.00 sec 14.0 MBytes 118 Mbits/sec 0.172 ms 0/10146 (0%) +[UE1] [2025-07-19 12:10:17] [ 5] 11.00-12.00 sec 14.5 MBytes 121 Mbits/sec 0.171 ms 0/10487 (0%) +[UE1] [2025-07-19 12:10:18] [ 5] 12.00-13.00 sec 14.7 MBytes 123 Mbits/sec 0.182 ms 0/10652 (0%) +[UE1] [2025-07-19 12:10:19] [ 5] 13.00-14.00 sec 14.5 MBytes 122 Mbits/sec 0.148 ms 0/10500 (0%) +[UE1] [2025-07-19 12:10:20] [ 5] 14.00-15.00 sec 14.6 MBytes 123 Mbits/sec 0.154 ms 0/10588 (0%) +[UE1] [2025-07-19 12:10:21] [ 5] 15.00-16.00 sec 14.6 MBytes 122 Mbits/sec 0.152 ms 0/10549 (0%) +[UE1] [2025-07-19 12:10:22] [ 5] 16.00-17.00 sec 14.4 MBytes 121 Mbits/sec 0.169 ms 0/10423 (0%) +[UE1] [2025-07-19 12:10:23] [ 5] 17.00-18.00 sec 13.7 MBytes 115 Mbits/sec 0.270 ms 0/9920 (0%) +[UE1] [2025-07-19 12:10:24] [ 5] 18.00-19.00 sec 13.9 MBytes 116 Mbits/sec 0.084 ms 0/10035 (0%) +[UE1] [2025-07-19 12:10:25] [ 5] 19.00-20.00 sec 14.4 MBytes 121 Mbits/sec 0.120 ms 0/10432 (0%) +[UE1] [2025-07-19 12:10:26] [ 5] 20.00-21.00 sec 14.6 MBytes 122 Mbits/sec 0.116 ms 0/10566 (0%) +[UE1] [2025-07-19 12:10:27] [ 5] 21.00-22.00 sec 14.7 MBytes 123 Mbits/sec 0.170 ms 0/10660 (0%) +[UE1] [2025-07-19 12:10:28] [ 5] 22.00-23.00 sec 14.4 MBytes 121 Mbits/sec 0.161 ms 0/10438 (0%) +[UE1] [2025-07-19 12:10:29] [ 5] 23.00-24.00 sec 14.6 MBytes 123 Mbits/sec 0.184 ms 0/10597 (0%) +[UE1] [2025-07-19 12:10:30] [ 5] 24.00-25.00 sec 14.2 MBytes 119 Mbits/sec 0.081 ms 0/10254 (0%) +[UE1] [2025-07-19 12:10:31] [ 5] 25.00-26.00 sec 14.5 MBytes 121 Mbits/sec 0.142 ms 0/10470 (0%) +[UE1] [2025-07-19 12:10:32] [ 5] 26.00-27.00 sec 14.4 MBytes 121 Mbits/sec 0.172 ms 0/10409 (0%) +[UE1] [2025-07-19 12:10:33] [ 5] 27.00-28.00 sec 14.5 MBytes 121 Mbits/sec 0.128 ms 0/10466 (0%) +[UE1] [2025-07-19 12:10:34] [ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 0.186 ms 0/10323 (0%) +[UE1] [2025-07-19 12:10:35] [ 5] 29.00-30.00 sec 13.9 MBytes 116 Mbits/sec 0.147 ms 0/10038 (0%) +[UE1] [2025-07-19 12:10:36] [ 5] 30.00-31.00 sec 13.6 MBytes 114 Mbits/sec 0.176 ms 0/9850 (0%) +[UE1] [2025-07-19 12:10:37] [ 5] 31.00-32.00 sec 14.4 MBytes 121 Mbits/sec 0.156 ms 0/10412 (0%) +[UE1] [2025-07-19 12:10:38] [ 5] 32.00-33.00 sec 14.7 MBytes 123 Mbits/sec 0.205 ms 0/10639 (0%) +[UE1] [2025-07-19 12:10:39] [ 5] 33.00-34.00 sec 14.6 MBytes 122 Mbits/sec 0.125 ms 0/10556 (0%) +[UE1] [2025-07-19 12:10:40] [ 5] 34.00-35.00 sec 14.6 MBytes 122 Mbits/sec 0.198 ms 0/10564 (0%) +[UE1] [2025-07-19 12:10:41] [ 5] 35.00-36.00 sec 14.5 MBytes 121 Mbits/sec 0.182 ms 0/10476 (0%) +[UE1] [2025-07-19 12:10:42] [ 5] 36.00-37.00 sec 14.5 MBytes 122 Mbits/sec 0.166 ms 0/10535 (0%) +[UE1] [2025-07-19 12:10:43] [ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 0.132 ms 0/10377 (0%) +[UE1] [2025-07-19 12:10:44] [ 5] 38.00-39.00 sec 14.5 MBytes 121 Mbits/sec 0.154 ms 0/10470 (0%) +[UE1] [2025-07-19 12:10:45] [ 5] 39.00-40.00 sec 14.6 MBytes 122 Mbits/sec 0.163 ms 0/10541 (0%) +[UE1] [2025-07-19 12:10:46] [ 5] 40.00-41.00 sec 14.2 MBytes 119 Mbits/sec 0.088 ms 0/10262 (0%) +[UE1] [2025-07-19 12:10:47] [ 5] 41.00-42.00 sec 13.2 MBytes 111 Mbits/sec 0.110 ms 0/9547 (0%) +[UE1] [2025-07-19 12:10:48] [ 5] 42.00-43.00 sec 14.4 MBytes 121 Mbits/sec 0.152 ms 0/10463 (0%) +[UE1] [2025-07-19 12:10:49] [ 5] 43.00-44.00 sec 14.5 MBytes 122 Mbits/sec 0.163 ms 0/10528 (0%) +[UE1] [2025-07-19 12:10:50] [ 5] 44.00-45.00 sec 14.4 MBytes 120 Mbits/sec 0.111 ms 0/10393 (0%) +[UE1] [2025-07-19 12:10:51] [ 5] 45.00-46.00 sec 14.6 MBytes 123 Mbits/sec 0.131 ms 0/10588 (0%) +[UE1] [2025-07-19 12:10:52] [ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 0.139 ms 0/10372 (0%) +[UE1] [2025-07-19 12:10:53] [ 5] 47.00-48.00 sec 14.4 MBytes 120 Mbits/sec 0.171 ms 0/10400 (0%) +[UE1] [2025-07-19 12:10:54] [ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 0.163 ms 0/10356 (0%) +[UE1] [2025-07-19 12:10:55] [ 5] 49.00-50.00 sec 13.6 MBytes 114 Mbits/sec 0.139 ms 0/9854 (0%) +[UE1] [2025-07-19 12:10:56] [ 5] 50.00-51.00 sec 14.5 MBytes 121 Mbits/sec 0.142 ms 0/10467 (0%) +[UE1] [2025-07-19 12:10:57] [ 5] 51.00-52.00 sec 14.4 MBytes 121 Mbits/sec 0.186 ms 0/10414 (0%) +[UE1] [2025-07-19 12:10:58] [ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 0.158 ms 0/10354 (0%) +[UE1] [2025-07-19 12:10:59] [ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 0.199 ms 0/10332 (0%) +[UE1] [2025-07-19 12:11:00] [ 5] 54.00-55.00 sec 13.1 MBytes 110 Mbits/sec 0.132 ms 0/9522 (0%) +[UE1] [2025-07-19 12:11:01] [ 5] 55.00-56.00 sec 13.8 MBytes 116 Mbits/sec 0.270 ms 0/9994 (0%) +[UE1] [2025-07-19 12:11:02] [ 5] 56.00-57.00 sec 13.7 MBytes 115 Mbits/sec 0.148 ms 0/9920 (0%) +[UE1] [2025-07-19 12:11:03] [ 5] 57.00-58.00 sec 14.5 MBytes 122 Mbits/sec 0.131 ms 0/10511 (0%) +[UE1] [2025-07-19 12:11:04] [ 5] 58.00-59.00 sec 14.7 MBytes 123 Mbits/sec 0.184 ms 0/10656 (0%) +[UE1] [2025-07-19 12:11:05] [ 5] 59.00-60.00 sec 13.5 MBytes 114 Mbits/sec 0.162 ms 0/9801 (0%) +[UE1] [2025-07-19 12:11:06] [ 5] 60.00-61.00 sec 13.5 MBytes 113 Mbits/sec 0.145 ms 49/9824 (0.5%) +[UE1] [2025-07-19 12:11:07] [ 5] 61.00-62.00 sec 15.5 MBytes 130 Mbits/sec 0.151 ms 0/11237 (0%) +[UE1] [2025-07-19 12:11:08] [ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 0.122 ms 0/10376 (0%) +[UE1] [2025-07-19 12:11:09] [ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 0.161 ms 0/10346 (0%) +[UE1] [2025-07-19 12:11:10] [ 5] 64.00-65.00 sec 14.6 MBytes 122 Mbits/sec 0.133 ms 0/10554 (0%) +[UE1] [2025-07-19 12:11:11] [ 5] 65.00-66.00 sec 14.4 MBytes 121 Mbits/sec 0.113 ms 0/10451 (0%) +[UE1] [2025-07-19 12:11:12] [ 5] 66.00-67.00 sec 12.5 MBytes 105 Mbits/sec 0.069 ms 80/9146 (0.87%) +[UE1] [2025-07-19 12:11:13] [ 5] 67.00-68.00 sec 13.9 MBytes 116 Mbits/sec 0.161 ms 108/10156 (1.1%) +[UE1] [2025-07-19 12:11:14] [ 5] 68.00-69.00 sec 14.6 MBytes 123 Mbits/sec 0.140 ms 829/11431 (7.3%) +[UE1] [2025-07-19 12:11:15] [ 5] 69.00-70.00 sec 14.7 MBytes 124 Mbits/sec 0.181 ms 0/10677 (0%) +[UE1] [2025-07-19 12:11:16] [ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 0.162 ms 0/10388 (0%) +[UE1] [2025-07-19 12:11:17] [ 5] 71.00-72.00 sec 14.5 MBytes 121 Mbits/sec 0.186 ms 0/10488 (0%) +[UE1] [2025-07-19 12:11:18] [ 5] 72.00-73.00 sec 14.5 MBytes 122 Mbits/sec 0.140 ms 0/10493 (0%) +[UE1] [2025-07-19 12:11:19] [ 5] 73.00-74.00 sec 14.4 MBytes 121 Mbits/sec 0.151 ms 0/10446 (0%) +[UE1] [2025-07-19 12:11:20] [ 5] 74.00-75.00 sec 14.0 MBytes 118 Mbits/sec 0.233 ms 0/10174 (0%) +[UE1] [2025-07-19 12:11:21] [ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 0.128 ms 0/10366 (0%) +[UE1] [2025-07-19 12:11:22] [ 5] 76.00-77.00 sec 14.4 MBytes 121 Mbits/sec 0.185 ms 0/10460 (0%) +[UE1] [2025-07-19 12:11:23] [ 5] 77.00-78.00 sec 14.4 MBytes 121 Mbits/sec 0.145 ms 0/10425 (0%) +[UE1] [2025-07-19 12:11:24] [ 5] 78.00-79.00 sec 14.7 MBytes 123 Mbits/sec 0.135 ms 0/10612 (0%) +[UE1] [2025-07-19 12:11:25] [ 5] 79.00-80.00 sec 14.4 MBytes 121 Mbits/sec 0.127 ms 0/10461 (0%) +[UE1] [2025-07-19 12:11:26] [ 5] 80.00-81.00 sec 14.7 MBytes 124 Mbits/sec 0.173 ms 0/10678 (0%) +[UE1] [2025-07-19 12:11:27] [ 5] 81.00-82.00 sec 14.4 MBytes 121 Mbits/sec 0.166 ms 0/10448 (0%) +[UE1] [2025-07-19 12:11:28] [ 5] 82.00-83.00 sec 14.4 MBytes 121 Mbits/sec 0.233 ms 0/10412 (0%) +[UE1] [2025-07-19 12:11:29] [ 5] 83.00-84.00 sec 14.6 MBytes 122 Mbits/sec 0.123 ms 0/10539 (0%) +[UE1] [2025-07-19 12:11:30] [ 5] 84.00-85.00 sec 14.4 MBytes 120 Mbits/sec 0.159 ms 0/10392 (0%) +[UE1] [2025-07-19 12:11:31] [ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 0.150 ms 0/10338 (0%) +[UE1] [2025-07-19 12:11:32] [ 5] 86.00-87.00 sec 14.1 MBytes 118 Mbits/sec 0.149 ms 0/10224 (0%) +[UE1] [2025-07-19 12:11:33] [ 5] 87.00-88.00 sec 14.4 MBytes 121 Mbits/sec 0.139 ms 0/10442 (0%) +[UE1] [2025-07-19 12:11:34] [ 5] 88.00-89.00 sec 14.4 MBytes 121 Mbits/sec 0.152 ms 0/10435 (0%) +[UE1] [2025-07-19 12:11:35] [ 5] 89.00-90.00 sec 14.5 MBytes 121 Mbits/sec 0.179 ms 0/10466 (0%) +[UE1] [2025-07-19 12:11:36] [ 5] 90.00-91.00 sec 14.5 MBytes 121 Mbits/sec 0.168 ms 0/10475 (0%) +[UE1] [2025-07-19 12:11:37] [ 5] 91.00-92.00 sec 13.8 MBytes 116 Mbits/sec 0.192 ms 0/9976 (0%) +[UE1] [2025-07-19 12:11:38] [ 5] 92.00-93.00 sec 14.4 MBytes 121 Mbits/sec 0.170 ms 0/10430 (0%) +[UE1] [2025-07-19 12:11:39] [ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 0.147 ms 0/10378 (0%) +[UE1] [2025-07-19 12:11:40] [ 5] 94.00-95.00 sec 14.5 MBytes 121 Mbits/sec 0.154 ms 0/10466 (0%) +[UE1] [2025-07-19 12:11:41] [ 5] 95.00-96.00 sec 14.6 MBytes 122 Mbits/sec 0.145 ms 0/10563 (0%) +[UE1] [2025-07-19 12:11:42] [ 5] 96.00-97.00 sec 14.4 MBytes 121 Mbits/sec 0.202 ms 0/10414 (0%) +[UE1] [2025-07-19 12:11:43] [ 5] 97.00-98.00 sec 14.1 MBytes 118 Mbits/sec 0.149 ms 0/10179 (0%) +[UE1] [2025-07-19 12:11:44] [ 5] 98.00-99.00 sec 13.3 MBytes 111 Mbits/sec 0.183 ms 0/9615 (0%) +[UE1] [2025-07-19 12:11:46] [ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 0.170 ms 0/10321 (0%) +[UE1] [2025-07-19 12:11:47] [ 5] 0.00-1.00 sec 3.74 MBytes 31.3 Mbits/sec 0.248 ms 0/2706 (0%) +[UE1] [2025-07-19 12:11:48] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2592 (0%) +[UE1] [2025-07-19 12:11:49] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2589 (0%) +[UE1] [2025-07-19 12:11:50] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.095 ms 0/2592 (0%) +[UE1] [2025-07-19 12:11:51] [ 5] 4.00-5.00 sec 3.57 MBytes 30.0 Mbits/sec 0.195 ms 0/2587 (0%) +[UE1] [2025-07-19 12:11:52] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2593 (0%) +[UE1] [2025-07-19 12:11:53] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.168 ms 0/2587 (0%) +[UE1] [2025-07-19 12:11:54] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2589 (0%) +[UE1] [2025-07-19 12:11:55] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2593 (0%) +[UE1] [2025-07-19 12:11:56] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE1] [2025-07-19 12:11:57] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE1] [2025-07-19 12:11:58] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2591 (0%) +[UE1] [2025-07-19 12:11:59] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:00] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:01] [ 5] 14.00-15.00 sec 3.53 MBytes 29.6 Mbits/sec 0.221 ms 28/2587 (1.1%) +[UE1] [2025-07-19 12:12:02] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:03] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.328 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:04] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.207 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:05] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:06] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:07] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.165 ms 0/2588 (0%) +[UE1] [2025-07-19 12:12:08] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:09] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.273 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:10] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2591 (0%) +[UE1] [2025-07-19 12:12:11] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.284 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:12] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:13] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.152 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:14] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2591 (0%) +[UE1] [2025-07-19 12:12:15] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2591 (0%) +[UE1] [2025-07-19 12:12:16] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:17] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.102 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:18] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:19] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.213 ms 0/2588 (0%) +[UE1] [2025-07-19 12:12:20] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:21] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.286 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:22] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2591 (0%) +[UE1] [2025-07-19 12:12:23] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2591 (0%) +[UE1] [2025-07-19 12:12:24] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:25] [ 5] 38.00-39.00 sec 3.57 MBytes 29.9 Mbits/sec 0.161 ms 0/2585 (0%) +[UE1] [2025-07-19 12:12:26] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:27] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:28] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:29] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.302 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:30] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:31] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:32] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.286 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:33] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.271 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:34] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:35] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:36] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:37] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.120 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:38] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:39] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:40] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.210 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:41] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:42] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:43] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.189 ms 0/2588 (0%) +[UE1] [2025-07-19 12:12:44] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:45] [ 5] 58.00-59.00 sec 3.57 MBytes 30.0 Mbits/sec 0.312 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:46] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:47] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:48] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.271 ms 0/2588 (0%) +[UE1] [2025-07-19 12:12:49] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE1] [2025-07-19 12:12:50] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:51] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:52] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.249 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:53] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:54] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2593 (0%) +[UE1] [2025-07-19 12:12:55] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.234 ms 0/2587 (0%) +[UE1] [2025-07-19 12:12:56] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2592 (0%) +[UE1] [2025-07-19 12:12:57] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.348 ms 0/2589 (0%) +[UE1] [2025-07-19 12:12:58] [ 5] 71.00-72.00 sec 3.57 MBytes 30.0 Mbits/sec 0.260 ms 0/2588 (0%) +[UE1] [2025-07-19 12:12:59] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2593 (0%) +[UE1] [2025-07-19 12:13:00] [ 5] 73.00-74.00 sec 3.56 MBytes 29.8 Mbits/sec 0.252 ms 13/2589 (0.5%) +[UE1] [2025-07-19 12:13:01] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2589 (0%) +[UE1] [2025-07-19 12:13:02] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.440 ms 0/2588 (0%) +[UE1] [2025-07-19 12:13:03] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2593 (0%) +[UE1] [2025-07-19 12:13:04] [ 5] 77.00-78.00 sec 3.57 MBytes 30.0 Mbits/sec 0.240 ms 0/2587 (0%) +[UE1] [2025-07-19 12:13:05] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2592 (0%) +[UE1] [2025-07-19 12:13:06] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 12:13:07] [ 5] 80.00-81.00 sec 3.57 MBytes 30.0 Mbits/sec 0.141 ms 0/2587 (0%) +[UE1] [2025-07-19 12:13:08] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2593 (0%) +[UE1] [2025-07-19 12:13:09] [ 5] 82.00-83.00 sec 3.57 MBytes 29.9 Mbits/sec 0.248 ms 0/2582 (0%) +[UE1] [2025-07-19 12:13:10] [ 5] 83.00-84.00 sec 3.59 MBytes 30.1 Mbits/sec 0.180 ms 0/2597 (0%) +[UE1] [2025-07-19 12:13:11] [ 5] 84.00-85.00 sec 3.57 MBytes 30.0 Mbits/sec 0.236 ms 0/2586 (0%) +[UE1] [2025-07-19 12:13:12] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.291 ms 0/2594 (0%) +[UE1] [2025-07-19 12:13:13] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.137 ms 0/2587 (0%) +[UE1] [2025-07-19 12:13:14] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2590 (0%) +[UE1] [2025-07-19 12:13:15] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2591 (0%) +[UE1] [2025-07-19 12:13:16] [ 5] 89.00-90.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2588 (0%) +[UE1] [2025-07-19 12:13:17] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE1] [2025-07-19 12:13:18] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2593 (0%) +[UE1] [2025-07-19 12:13:19] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE1] [2025-07-19 12:13:20] [ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 0.220 ms 0/2588 (0%) +[UE1] [2025-07-19 12:13:21] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.337 ms 0/2592 (0%) +[UE1] [2025-07-19 12:13:22] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE1] [2025-07-19 12:13:23] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2589 (0%) +[UE1] [2025-07-19 12:13:24] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 12:13:25] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.093 ms 0/2587 (0%) +[UE1] [2025-07-19 12:13:26] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2593 (0%) +[UE1] [2025-07-19 12:13:30] [ 5] 0.00-1.00 sec 8.49 MBytes 71.2 Mbits/sec 0.157 ms 0/6148 (0%) +[UE1] [2025-07-19 12:13:31] [ 5] 1.00-2.00 sec 13.9 MBytes 117 Mbits/sec 0.162 ms 0/10088 (0%) +[UE1] [2025-07-19 12:13:32] [ 5] 2.00-3.00 sec 14.5 MBytes 122 Mbits/sec 0.145 ms 0/10519 (0%) +[UE1] [2025-07-19 12:13:33] [ 5] 3.00-4.00 sec 14.5 MBytes 121 Mbits/sec 0.166 ms 0/10483 (0%) +[UE1] [2025-07-19 12:13:34] [ 5] 4.00-5.00 sec 14.4 MBytes 121 Mbits/sec 0.199 ms 0/10429 (0%) +[UE1] [2025-07-19 12:13:35] [ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 0.134 ms 0/10342 (0%) +[UE1] [2025-07-19 12:13:36] [ 5] 6.00-7.00 sec 14.1 MBytes 118 Mbits/sec 0.141 ms 0/10205 (0%) +[UE1] [2025-07-19 12:13:37] [ 5] 7.00-8.00 sec 14.4 MBytes 121 Mbits/sec 0.159 ms 0/10456 (0%) +[UE1] [2025-07-19 12:13:38] [ 5] 8.00-9.00 sec 14.4 MBytes 121 Mbits/sec 0.157 ms 0/10410 (0%) +[UE1] [2025-07-19 12:13:39] [ 5] 9.00-10.00 sec 13.4 MBytes 112 Mbits/sec 0.209 ms 0/9704 (0%) +[UE1] [2025-07-19 12:13:40] [ 5] 10.00-11.00 sec 13.9 MBytes 116 Mbits/sec 0.244 ms 0/10055 (0%) +[UE1] [2025-07-19 12:13:41] [ 5] 11.00-12.00 sec 14.5 MBytes 121 Mbits/sec 0.193 ms 295/10763 (2.7%) +[UE1] [2025-07-19 12:13:42] [ 5] 12.00-13.00 sec 14.5 MBytes 122 Mbits/sec 0.164 ms 0/10519 (0%) +[UE1] [2025-07-19 12:13:43] [ 5] 13.00-14.00 sec 14.5 MBytes 122 Mbits/sec 0.158 ms 0/10495 (0%) +[UE1] [2025-07-19 12:13:44] [ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 0.142 ms 0/10390 (0%) +[UE1] [2025-07-19 12:13:45] [ 5] 15.00-16.00 sec 14.4 MBytes 121 Mbits/sec 0.098 ms 0/10422 (0%) +[UE1] [2025-07-19 12:13:46] [ 5] 16.00-17.00 sec 14.5 MBytes 121 Mbits/sec 0.185 ms 0/10466 (0%) +[UE1] [2025-07-19 12:13:47] [ 5] 17.00-18.00 sec 13.8 MBytes 116 Mbits/sec 0.136 ms 0/9993 (0%) +[UE1] [2025-07-19 12:13:48] [ 5] 18.00-19.00 sec 13.2 MBytes 111 Mbits/sec 0.190 ms 0/9592 (0%) +[UE1] [2025-07-19 12:13:49] [ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 0.157 ms 492/10821 (4.5%) +[UE1] [2025-07-19 12:13:50] [ 5] 20.00-21.00 sec 14.4 MBytes 121 Mbits/sec 0.205 ms 0/10428 (0%) +[UE1] [2025-07-19 12:13:51] [ 5] 21.00-22.00 sec 14.4 MBytes 120 Mbits/sec 0.197 ms 0/10396 (0%) +[UE1] [2025-07-19 12:13:52] [ 5] 22.00-23.00 sec 14.6 MBytes 122 Mbits/sec 0.129 ms 0/10540 (0%) +[UE1] [2025-07-19 12:13:53] [ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 0.139 ms 0/10375 (0%) +[UE1] [2025-07-19 12:13:54] [ 5] 24.00-25.00 sec 14.5 MBytes 122 Mbits/sec 0.147 ms 0/10504 (0%) +[UE1] [2025-07-19 12:13:55] [ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 0.184 ms 0/10333 (0%) +[UE1] [2025-07-19 12:13:56] [ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 0.168 ms 0/10323 (0%) +[UE1] [2025-07-19 12:13:57] [ 5] 27.00-28.00 sec 14.4 MBytes 121 Mbits/sec 0.151 ms 0/10423 (0%) +[UE1] [2025-07-19 12:13:58] [ 5] 28.00-29.00 sec 14.2 MBytes 119 Mbits/sec 0.179 ms 0/10274 (0%) +[UE1] [2025-07-19 12:13:59] [ 5] 29.00-30.00 sec 13.2 MBytes 111 Mbits/sec 0.081 ms 0/9559 (0%) +[UE1] [2025-07-19 12:14:00] [ 5] 30.00-31.00 sec 14.5 MBytes 121 Mbits/sec 0.114 ms 454/10934 (4.2%) +[UE1] [2025-07-19 12:14:01] [ 5] 31.00-32.00 sec 13.8 MBytes 116 Mbits/sec 0.160 ms 0/10008 (0%) +[UE1] [2025-07-19 12:14:02] [ 5] 32.00-33.00 sec 14.7 MBytes 123 Mbits/sec 0.128 ms 175/10830 (1.6%) +[UE1] [2025-07-19 12:14:03] [ 5] 33.00-34.00 sec 14.5 MBytes 122 Mbits/sec 0.137 ms 0/10491 (0%) +[UE1] [2025-07-19 12:14:04] [ 5] 34.00-35.00 sec 14.4 MBytes 121 Mbits/sec 0.115 ms 0/10405 (0%) +[UE1] [2025-07-19 12:14:05] [ 5] 35.00-36.00 sec 14.4 MBytes 121 Mbits/sec 0.151 ms 0/10412 (0%) +[UE1] [2025-07-19 12:14:06] [ 5] 36.00-37.00 sec 14.5 MBytes 121 Mbits/sec 0.178 ms 0/10477 (0%) +[UE1] [2025-07-19 12:14:07] [ 5] 37.00-38.00 sec 14.2 MBytes 119 Mbits/sec 0.118 ms 0/10278 (0%) +[UE1] [2025-07-19 12:14:08] [ 5] 38.00-39.00 sec 14.4 MBytes 121 Mbits/sec 0.197 ms 0/10440 (0%) +[UE1] [2025-07-19 12:14:09] [ 5] 39.00-40.00 sec 10.7 MBytes 90.0 Mbits/sec 0.237 ms 0/7771 (0%) +[UE1] [2025-07-19 12:14:10] [ 5] 40.00-41.00 sec 14.7 MBytes 124 Mbits/sec 0.143 ms 1660/12331 (13%) +[UE1] [2025-07-19 12:14:11] [ 5] 41.00-42.00 sec 14.4 MBytes 121 Mbits/sec 0.125 ms 4/10414 (0.038%) +[UE1] [2025-07-19 12:14:12] [ 5] 42.00-43.00 sec 13.4 MBytes 113 Mbits/sec 0.157 ms 0/9723 (0%) +[UE1] [2025-07-19 12:14:13] [ 5] 43.00-44.00 sec 14.4 MBytes 121 Mbits/sec 0.150 ms 542/10983 (4.9%) +[UE1] [2025-07-19 12:14:14] [ 5] 44.00-45.00 sec 14.5 MBytes 121 Mbits/sec 0.124 ms 0/10480 (0%) +[UE1] [2025-07-19 12:14:15] [ 5] 45.00-46.00 sec 14.5 MBytes 122 Mbits/sec 0.153 ms 0/10527 (0%) +[UE1] [2025-07-19 12:14:16] [ 5] 46.00-47.00 sec 14.2 MBytes 119 Mbits/sec 0.175 ms 0/10258 (0%) +[UE1] [2025-07-19 12:14:17] [ 5] 47.00-48.00 sec 14.5 MBytes 122 Mbits/sec 0.171 ms 0/10507 (0%) +[UE1] [2025-07-19 12:14:18] [ 5] 48.00-49.00 sec 14.2 MBytes 119 Mbits/sec 0.175 ms 0/10304 (0%) +[UE1] [2025-07-19 12:14:19] [ 5] 49.00-50.00 sec 14.6 MBytes 122 Mbits/sec 0.152 ms 0/10569 (0%) +[UE1] [2025-07-19 12:14:20] [ 5] 50.00-51.00 sec 14.1 MBytes 118 Mbits/sec 0.117 ms 0/10200 (0%) +[UE1] [2025-07-19 12:14:21] [ 5] 51.00-52.00 sec 13.9 MBytes 117 Mbits/sec 0.172 ms 0/10069 (0%) +[UE1] [2025-07-19 12:14:22] [ 5] 52.00-53.00 sec 13.6 MBytes 114 Mbits/sec 0.171 ms 0/9859 (0%) +[UE1] [2025-07-19 12:14:23] [ 5] 53.00-54.00 sec 14.7 MBytes 123 Mbits/sec 0.127 ms 438/11070 (4%) +[UE1] [2025-07-19 12:14:24] [ 5] 54.00-55.00 sec 14.6 MBytes 122 Mbits/sec 0.151 ms 0/10556 (0%) +[UE1] [2025-07-19 12:14:25] [ 5] 55.00-56.00 sec 14.7 MBytes 123 Mbits/sec 0.196 ms 0/10641 (0%) +[UE1] [2025-07-19 12:14:26] [ 5] 56.00-57.00 sec 14.2 MBytes 119 Mbits/sec 0.171 ms 0/10285 (0%) +[UE1] [2025-07-19 12:14:27] [ 5] 57.00-58.00 sec 14.4 MBytes 121 Mbits/sec 0.191 ms 0/10433 (0%) +[UE1] [2025-07-19 12:14:28] [ 5] 58.00-59.00 sec 14.1 MBytes 118 Mbits/sec 0.156 ms 0/10230 (0%) +[UE1] [2025-07-19 12:14:29] [ 5] 59.00-60.00 sec 13.2 MBytes 111 Mbits/sec 0.214 ms 0/9545 (0%) +[UE1] [2025-07-19 12:14:30] [ 5] 60.00-61.00 sec 11.4 MBytes 95.4 Mbits/sec 0.084 ms 771/9008 (8.6%) +[UE1] [2025-07-19 12:14:31] [ 5] 61.00-62.00 sec 15.3 MBytes 129 Mbits/sec 0.136 ms 244/11352 (2.1%) +[UE1] [2025-07-19 12:14:32] [ 5] 62.00-63.00 sec 13.2 MBytes 111 Mbits/sec 0.135 ms 339/9913 (3.4%) +[UE1] [2025-07-19 12:14:33] [ 5] 63.00-64.00 sec 15.3 MBytes 128 Mbits/sec 0.161 ms 325/11380 (2.9%) +[UE1] [2025-07-19 12:14:34] [ 5] 64.00-65.00 sec 14.4 MBytes 120 Mbits/sec 0.134 ms 0/10399 (0%) +[UE1] [2025-07-19 12:14:35] [ 5] 65.00-66.00 sec 14.5 MBytes 121 Mbits/sec 0.150 ms 0/10487 (0%) +[UE1] [2025-07-19 12:14:36] [ 5] 66.00-67.00 sec 14.5 MBytes 122 Mbits/sec 0.139 ms 0/10488 (0%) +[UE1] [2025-07-19 12:14:37] [ 5] 67.00-68.00 sec 14.4 MBytes 121 Mbits/sec 0.133 ms 0/10456 (0%) +[UE1] [2025-07-19 12:14:38] [ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 0.156 ms 0/10369 (0%) +[UE1] [2025-07-19 12:14:39] [ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 0.126 ms 0/10384 (0%) +[UE1] [2025-07-19 12:14:40] [ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 0.182 ms 0/10389 (0%) +[UE1] [2025-07-19 12:14:41] [ 5] 71.00-72.00 sec 14.4 MBytes 121 Mbits/sec 0.184 ms 0/10453 (0%) +[UE1] [2025-07-19 12:14:42] [ 5] 72.00-73.00 sec 15.0 MBytes 126 Mbits/sec 0.183 ms 0/10858 (0%) +[UE1] [2025-07-19 12:14:43] [ 5] 73.00-74.00 sec 13.9 MBytes 117 Mbits/sec 0.147 ms 0/10074 (0%) +[UE1] [2025-07-19 12:14:44] [ 5] 74.00-75.00 sec 14.2 MBytes 119 Mbits/sec 0.151 ms 0/10305 (0%) +[UE1] [2025-07-19 12:14:45] [ 5] 75.00-76.00 sec 14.4 MBytes 121 Mbits/sec 0.128 ms 0/10438 (0%) +[UE1] [2025-07-19 12:14:46] [ 5] 76.00-77.00 sec 14.4 MBytes 121 Mbits/sec 0.180 ms 0/10422 (0%) +[UE1] [2025-07-19 12:14:47] [ 5] 77.00-78.00 sec 14.7 MBytes 123 Mbits/sec 0.139 ms 0/10619 (0%) +[UE1] [2025-07-19 12:14:48] [ 5] 78.00-79.00 sec 14.5 MBytes 122 Mbits/sec 0.125 ms 0/10518 (0%) +[UE1] [2025-07-19 12:14:49] [ 5] 79.00-80.00 sec 14.4 MBytes 121 Mbits/sec 0.165 ms 0/10447 (0%) +[UE1] [2025-07-19 12:14:50] [ 5] 80.00-81.00 sec 14.6 MBytes 122 Mbits/sec 0.207 ms 0/10545 (0%) +[UE1] [2025-07-19 12:14:51] [ 5] 81.00-82.00 sec 14.4 MBytes 121 Mbits/sec 0.183 ms 0/10432 (0%) +[UE1] [2025-07-19 12:14:52] [ 5] 82.00-83.00 sec 14.4 MBytes 121 Mbits/sec 0.151 ms 0/10406 (0%) +[UE1] [2025-07-19 12:14:53] [ 5] 83.00-84.00 sec 13.9 MBytes 116 Mbits/sec 0.147 ms 0/10056 (0%) +[UE1] [2025-07-19 12:14:54] [ 5] 84.00-85.00 sec 14.5 MBytes 121 Mbits/sec 0.211 ms 0/10470 (0%) +[UE1] [2025-07-19 12:14:55] [ 5] 85.00-86.00 sec 14.4 MBytes 120 Mbits/sec 0.157 ms 0/10401 (0%) +[UE1] [2025-07-19 12:14:56] [ 5] 86.00-87.00 sec 14.5 MBytes 122 Mbits/sec 0.175 ms 0/10525 (0%) +[UE1] [2025-07-19 12:14:57] [ 5] 87.00-88.00 sec 14.4 MBytes 121 Mbits/sec 0.125 ms 0/10411 (0%) +[UE1] [2025-07-19 12:14:58] [ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 0.215 ms 0/10348 (0%) +[UE1] [2025-07-19 12:14:59] [ 5] 89.00-90.00 sec 14.6 MBytes 123 Mbits/sec 0.147 ms 0/10601 (0%) +[UE1] [2025-07-19 12:15:00] [ 5] 90.00-91.00 sec 14.5 MBytes 122 Mbits/sec 0.181 ms 0/10500 (0%) +[UE1] [2025-07-19 12:15:01] [ 5] 91.00-92.00 sec 14.0 MBytes 117 Mbits/sec 0.148 ms 62/10170 (0.61%) +[UE1] [2025-07-19 12:15:02] [ 5] 92.00-93.00 sec 14.4 MBytes 121 Mbits/sec 0.118 ms 0/10422 (0%) +[UE1] [2025-07-19 12:15:03] [ 5] 93.00-94.00 sec 14.6 MBytes 123 Mbits/sec 0.186 ms 0/10579 (0%) +[UE1] [2025-07-19 12:15:04] [ 5] 94.00-95.00 sec 14.2 MBytes 119 Mbits/sec 0.157 ms 0/10265 (0%) +[UE1] [2025-07-19 12:15:05] [ 5] 95.00-96.00 sec 14.2 MBytes 119 Mbits/sec 0.210 ms 0/10307 (0%) +[UE1] [2025-07-19 12:15:06] [ 5] 96.00-97.00 sec 14.1 MBytes 118 Mbits/sec 0.084 ms 0/10209 (0%) +[UE1] [2025-07-19 12:15:07] [ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 0.168 ms 0/10366 (0%) +[UE1] [2025-07-19 12:15:08] [ 5] 98.00-99.00 sec 14.5 MBytes 122 Mbits/sec 0.191 ms 0/10534 (0%) +[UE1] [2025-07-19 12:15:09] [ 5] 99.00-100.00 sec 14.8 MBytes 124 Mbits/sec 0.128 ms 0/10686 (0%) +[UE1] [2025-07-19 12:15:10] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.187 ms 0/2697 (0%) +[UE1] [2025-07-19 12:15:11] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2593 (0%) +[UE1] [2025-07-19 12:15:12] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.277 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:13] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:14] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2591 (0%) +[UE1] [2025-07-19 12:15:15] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.116 ms 0/2588 (0%) +[UE1] [2025-07-19 12:15:16] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:17] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2592 (0%) +[UE1] [2025-07-19 12:15:18] [ 5] 8.00-9.00 sec 3.57 MBytes 30.0 Mbits/sec 0.229 ms 0/2588 (0%) +[UE1] [2025-07-19 12:15:19] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:20] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:21] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:22] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:23] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:24] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:25] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2587 (0%) +[UE1] [2025-07-19 12:15:26] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2593 (0%) +[UE1] [2025-07-19 12:15:27] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:28] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:29] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:30] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2591 (0%) +[UE1] [2025-07-19 12:15:31] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:32] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:33] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:34] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:35] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:36] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.194 ms 0/2588 (0%) +[UE1] [2025-07-19 12:15:37] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2592 (0%) +[UE1] [2025-07-19 12:15:38] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2591 (0%) +[UE1] [2025-07-19 12:15:39] [ 5] 29.00-30.00 sec 3.57 MBytes 30.0 Mbits/sec 0.176 ms 0/2588 (0%) +[UE1] [2025-07-19 12:15:40] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2592 (0%) +[UE1] [2025-07-19 12:15:41] [ 5] 31.00-32.00 sec 3.57 MBytes 30.0 Mbits/sec 0.261 ms 0/2587 (0%) +[UE1] [2025-07-19 12:15:42] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2593 (0%) +[UE1] [2025-07-19 12:15:43] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.305 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:44] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:45] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.168 ms 0/2588 (0%) +[UE1] [2025-07-19 12:15:46] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2592 (0%) +[UE1] [2025-07-19 12:15:47] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.215 ms 0/2588 (0%) +[UE1] [2025-07-19 12:15:48] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:49] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.095 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:50] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:51] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2591 (0%) +[UE1] [2025-07-19 12:15:52] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.279 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:53] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2592 (0%) +[UE1] [2025-07-19 12:15:54] [ 5] 44.00-45.00 sec 3.57 MBytes 29.9 Mbits/sec 0.242 ms 0/2588 (0%) +[UE1] [2025-07-19 12:15:55] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2589 (0%) +[UE1] [2025-07-19 12:15:56] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:57] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:58] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE1] [2025-07-19 12:15:59] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:00] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.387 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:01] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:02] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:03] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.178 ms 0/2588 (0%) +[UE1] [2025-07-19 12:16:04] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:05] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:06] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2592 (0%) +[UE1] [2025-07-19 12:16:07] [ 5] 57.00-58.00 sec 3.57 MBytes 30.0 Mbits/sec 0.251 ms 0/2587 (0%) +[UE1] [2025-07-19 12:16:08] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2592 (0%) +[UE1] [2025-07-19 12:16:09] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:10] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.251 ms 0/2587 (0%) +[UE1] [2025-07-19 12:16:11] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:12] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:13] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:14] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:15] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.120 ms 0/2592 (0%) +[UE1] [2025-07-19 12:16:16] [ 5] 66.00-67.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2588 (0%) +[UE1] [2025-07-19 12:16:17] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:18] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:19] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.313 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:20] [ 5] 70.00-71.00 sec 3.57 MBytes 30.0 Mbits/sec 0.162 ms 0/2588 (0%) +[UE1] [2025-07-19 12:16:21] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:22] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:23] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:24] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:25] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2592 (0%) +[UE1] [2025-07-19 12:16:26] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.286 ms 0/2587 (0%) +[UE1] [2025-07-19 12:16:27] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:28] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:29] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.285 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:30] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:31] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:32] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:33] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:34] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:35] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:36] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:37] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2593 (0%) +[UE1] [2025-07-19 12:16:38] [ 5] 88.00-89.00 sec 3.57 MBytes 30.0 Mbits/sec 0.207 ms 0/2587 (0%) +[UE1] [2025-07-19 12:16:39] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:40] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2588 (0%) +[UE1] [2025-07-19 12:16:41] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.323 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:42] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:43] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:44] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE1] [2025-07-19 12:16:45] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:46] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2591 (0%) +[UE1] [2025-07-19 12:16:47] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2589 (0%) +[UE1] [2025-07-19 12:16:48] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2592 (0%) +[UE1] [2025-07-19 12:16:50] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:26] [ 5] 0.00-1.00 sec 3.76 MBytes 31.5 Mbits/sec 0.142 ms 0/2720 (0%) +[UE1] [2025-07-19 14:01:27] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2591 (0%) +[UE1] [2025-07-19 14:01:28] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2591 (0%) +[UE1] [2025-07-19 14:01:29] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.192 ms 0/2587 (0%) +[UE1] [2025-07-19 14:01:30] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2594 (0%) +[UE1] [2025-07-19 14:01:31] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:32] [ 5] 6.00-7.00 sec 3.57 MBytes 29.9 Mbits/sec 0.456 ms 0/2584 (0%) +[UE1] [2025-07-19 14:01:33] [ 5] 7.00-8.00 sec 3.58 MBytes 30.1 Mbits/sec 0.194 ms 0/2595 (0%) +[UE1] [2025-07-19 14:01:34] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:35] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:36] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:37] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2591 (0%) +[UE1] [2025-07-19 14:01:38] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:39] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.286 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:40] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:41] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:42] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2593 (0%) +[UE1] [2025-07-19 14:01:43] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.189 ms 0/2587 (0%) +[UE1] [2025-07-19 14:01:44] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:45] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.339 ms 0/2592 (0%) +[UE1] [2025-07-19 14:01:46] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:47] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.167 ms 0/2588 (0%) +[UE1] [2025-07-19 14:01:48] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:49] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:50] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:51] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 14:01:52] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2593 (0%) +[UE1] [2025-07-19 14:01:53] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:54] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:55] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.120 ms 0/2591 (0%) +[UE1] [2025-07-19 14:01:56] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.148 ms 0/2587 (0%) +[UE1] [2025-07-19 14:01:57] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2591 (0%) +[UE1] [2025-07-19 14:01:58] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2589 (0%) +[UE1] [2025-07-19 14:01:59] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2591 (0%) +[UE1] [2025-07-19 14:02:00] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.327 ms 0/2588 (0%) +[UE1] [2025-07-19 14:02:01] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.345 ms 0/2592 (0%) +[UE1] [2025-07-19 14:02:02] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:03] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.165 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:04] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2592 (0%) +[UE1] [2025-07-19 14:02:05] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:06] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:07] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:08] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.356 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:09] [ 5] 43.00-44.00 sec 3.57 MBytes 29.9 Mbits/sec 0.208 ms 0/2582 (0%) +[UE1] [2025-07-19 14:02:10] [ 5] 44.00-45.00 sec 3.59 MBytes 30.1 Mbits/sec 0.236 ms 0/2600 (0%) +[UE1] [2025-07-19 14:02:11] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2588 (0%) +[UE1] [2025-07-19 14:02:12] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2592 (0%) +[UE1] [2025-07-19 14:02:13] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.233 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:14] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.111 ms 0/2592 (0%) +[UE1] [2025-07-19 14:02:15] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.238 ms 0/2588 (0%) +[UE1] [2025-07-19 14:02:16] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2591 (0%) +[UE1] [2025-07-19 14:02:17] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.243 ms 0/2588 (0%) +[UE1] [2025-07-19 14:02:18] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2593 (0%) +[UE1] [2025-07-19 14:02:19] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.305 ms 0/2589 (0%) +[UE1] [2025-07-19 14:02:20] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:21] [ 5] 55.00-56.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2588 (0%) +[UE1] [2025-07-19 14:02:22] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:23] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2589 (0%) +[UE1] [2025-07-19 14:02:24] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:25] [ 5] 59.00-60.00 sec 3.57 MBytes 30.0 Mbits/sec 0.250 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:26] [ 5] 60.00-61.00 sec 3.58 MBytes 30.1 Mbits/sec 0.203 ms 0/2595 (0%) +[UE1] [2025-07-19 14:02:27] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:28] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.318 ms 0/2592 (0%) +[UE1] [2025-07-19 14:02:29] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:30] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2591 (0%) +[UE1] [2025-07-19 14:02:31] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2589 (0%) +[UE1] [2025-07-19 14:02:32] [ 5] 66.00-67.00 sec 3.57 MBytes 30.0 Mbits/sec 0.275 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:33] [ 5] 67.00-68.00 sec 3.58 MBytes 30.1 Mbits/sec 0.206 ms 0/2595 (0%) +[UE1] [2025-07-19 14:02:34] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.325 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:35] [ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 0.281 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:36] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:37] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2589 (0%) +[UE1] [2025-07-19 14:02:38] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2591 (0%) +[UE1] [2025-07-19 14:02:39] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:40] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE1] [2025-07-19 14:02:41] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.290 ms 0/2586 (0%) +[UE1] [2025-07-19 14:02:42] [ 5] 76.00-77.00 sec 3.58 MBytes 30.1 Mbits/sec 0.128 ms 0/2596 (0%) +[UE1] [2025-07-19 14:02:43] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:44] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.164 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:45] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:46] [ 5] 80.00-81.00 sec 3.57 MBytes 30.0 Mbits/sec 0.148 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:47] [ 5] 81.00-82.00 sec 3.58 MBytes 30.1 Mbits/sec 0.120 ms 0/2595 (0%) +[UE1] [2025-07-19 14:02:48] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.185 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:49] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:50] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:51] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.361 ms 0/2592 (0%) +[UE1] [2025-07-19 14:02:52] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:53] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.233 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:54] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:55] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE1] [2025-07-19 14:02:56] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2592 (0%) +[UE1] [2025-07-19 14:02:57] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.124 ms 0/2587 (0%) +[UE1] [2025-07-19 14:02:58] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2591 (0%) +[UE1] [2025-07-19 14:02:59] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE1] [2025-07-19 14:03:00] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:03:01] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2592 (0%) +[UE1] [2025-07-19 14:03:02] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.155 ms 0/2588 (0%) +[UE1] [2025-07-19 14:03:03] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2589 (0%) +[UE1] [2025-07-19 14:03:04] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2592 (0%) +[UE1] [2025-07-19 14:03:05] [ 5] 99.00-100.00 sec 3.57 MBytes 30.0 Mbits/sec 0.171 ms 0/2588 (0%) +[UE1] [2025-07-19 14:03:08] [ 5] 0.00-1.00 sec 9.97 MBytes 83.6 Mbits/sec 0.170 ms 0/7219 (0%) +[UE1] [2025-07-19 14:03:09] [ 5] 1.00-2.00 sec 12.3 MBytes 103 Mbits/sec 0.137 ms 0/8882 (0%) +[UE1] [2025-07-19 14:03:10] [ 5] 2.00-3.00 sec 11.2 MBytes 94.3 Mbits/sec 0.107 ms 85/8222 (1%) +[UE1] [2025-07-19 14:03:11] [ 5] 3.00-4.00 sec 12.0 MBytes 101 Mbits/sec 0.095 ms 1386/10078 (14%) +[UE1] [2025-07-19 14:03:12] [ 5] 4.00-5.00 sec 12.8 MBytes 107 Mbits/sec 0.126 ms 1611/10861 (15%) +[UE1] [2025-07-19 14:03:13] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1560/10395 (15%) +[UE1] [2025-07-19 14:03:14] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1374/10197 (13%) +[UE1] [2025-07-19 14:03:15] [ 5] 7.00-8.00 sec 10.8 MBytes 90.4 Mbits/sec 0.096 ms 1377/9185 (15%) +[UE1] [2025-07-19 14:03:16] [ 5] 8.00-9.00 sec 12.6 MBytes 106 Mbits/sec 0.076 ms 2625/11751 (22%) +[UE1] [2025-07-19 14:03:17] [ 5] 9.00-10.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1510/10352 (15%) +[UE1] [2025-07-19 14:03:18] [ 5] 10.00-11.00 sec 11.4 MBytes 95.4 Mbits/sec 0.106 ms 1448/9680 (15%) +[UE1] [2025-07-19 14:03:19] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1776/10600 (17%) +[UE1] [2025-07-19 14:03:20] [ 5] 12.00-13.00 sec 13.0 MBytes 109 Mbits/sec 0.123 ms 1573/10993 (14%) +[UE1] [2025-07-19 14:03:21] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1446/10264 (14%) +[UE1] [2025-07-19 14:03:22] [ 5] 14.00-15.00 sec 11.8 MBytes 98.8 Mbits/sec 0.081 ms 1420/9954 (14%) +[UE1] [2025-07-19 14:03:23] [ 5] 15.00-16.00 sec 12.2 MBytes 103 Mbits/sec 0.105 ms 1587/10437 (15%) +[UE1] [2025-07-19 14:03:24] [ 5] 16.00-17.00 sec 12.0 MBytes 100 Mbits/sec 0.098 ms 1577/10236 (15%) +[UE1] [2025-07-19 14:03:25] [ 5] 17.00-18.00 sec 12.3 MBytes 103 Mbits/sec 0.150 ms 1352/10268 (13%) +[UE1] [2025-07-19 14:03:26] [ 5] 18.00-19.00 sec 11.3 MBytes 94.6 Mbits/sec 0.118 ms 1404/9567 (15%) +[UE1] [2025-07-19 14:03:27] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 2623/11455 (23%) +[UE1] [2025-07-19 14:03:28] [ 5] 20.00-21.00 sec 12.0 MBytes 101 Mbits/sec 0.116 ms 1443/10123 (14%) +[UE1] [2025-07-19 14:03:29] [ 5] 21.00-22.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1511/10345 (15%) +[UE1] [2025-07-19 14:03:30] [ 5] 22.00-23.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1495/10183 (15%) +[UE1] [2025-07-19 14:03:31] [ 5] 23.00-24.00 sec 12.2 MBytes 102 Mbits/sec 0.117 ms 1640/10456 (16%) +[UE1] [2025-07-19 14:03:32] [ 5] 24.00-25.00 sec 13.0 MBytes 109 Mbits/sec 0.111 ms 1593/11013 (14%) +[UE1] [2025-07-19 14:03:33] [ 5] 25.00-26.00 sec 11.2 MBytes 93.8 Mbits/sec 0.074 ms 1397/9492 (15%) +[UE1] [2025-07-19 14:03:34] [ 5] 26.00-27.00 sec 12.9 MBytes 108 Mbits/sec 0.078 ms 1702/11036 (15%) +[UE1] [2025-07-19 14:03:35] [ 5] 27.00-28.00 sec 12.0 MBytes 101 Mbits/sec 0.091 ms 1487/10170 (15%) +[UE1] [2025-07-19 14:03:36] [ 5] 28.00-29.00 sec 10.8 MBytes 90.7 Mbits/sec 0.097 ms 1157/8990 (13%) +[UE1] [2025-07-19 14:03:37] [ 5] 29.00-30.00 sec 12.8 MBytes 107 Mbits/sec 0.083 ms 2629/11874 (22%) +[UE1] [2025-07-19 14:03:38] [ 5] 30.00-31.00 sec 11.4 MBytes 95.5 Mbits/sec 0.074 ms 1320/9566 (14%) +[UE1] [2025-07-19 14:03:39] [ 5] 31.00-32.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 1817/11081 (16%) +[UE1] [2025-07-19 14:03:40] [ 5] 32.00-33.00 sec 12.2 MBytes 102 Mbits/sec 0.100 ms 1444/10272 (14%) +[UE1] [2025-07-19 14:03:41] [ 5] 33.00-34.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1366/10198 (13%) +[UE1] [2025-07-19 14:03:42] [ 5] 34.00-35.00 sec 12.0 MBytes 101 Mbits/sec 0.074 ms 1443/10129 (14%) +[UE1] [2025-07-19 14:03:43] [ 5] 35.00-36.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1619/10440 (16%) +[UE1] [2025-07-19 14:03:44] [ 5] 36.00-37.00 sec 12.7 MBytes 106 Mbits/sec 0.081 ms 1727/10902 (16%) +[UE1] [2025-07-19 14:03:45] [ 5] 37.00-38.00 sec 12.1 MBytes 101 Mbits/sec 0.087 ms 1419/10181 (14%) +[UE1] [2025-07-19 14:03:46] [ 5] 38.00-39.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1474/10309 (14%) +[UE1] [2025-07-19 14:03:47] [ 5] 39.00-40.00 sec 10.8 MBytes 90.6 Mbits/sec 0.103 ms 1831/9650 (19%) +[UE1] [2025-07-19 14:03:48] [ 5] 40.00-41.00 sec 12.8 MBytes 107 Mbits/sec 0.078 ms 2080/11338 (18%) +[UE1] [2025-07-19 14:03:49] [ 5] 41.00-42.00 sec 11.4 MBytes 95.6 Mbits/sec 0.130 ms 1203/9453 (13%) +[UE1] [2025-07-19 14:03:50] [ 5] 42.00-43.00 sec 12.8 MBytes 107 Mbits/sec 0.110 ms 1980/11239 (18%) +[UE1] [2025-07-19 14:03:51] [ 5] 43.00-44.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1413/10108 (14%) +[UE1] [2025-07-19 14:03:52] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.130 ms 1369/10192 (13%) +[UE1] [2025-07-19 14:03:53] [ 5] 45.00-46.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1744/10572 (16%) +[UE1] [2025-07-19 14:03:54] [ 5] 46.00-47.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 1418/10106 (14%) +[UE1] [2025-07-19 14:03:55] [ 5] 47.00-48.00 sec 12.8 MBytes 107 Mbits/sec 0.122 ms 1490/10742 (14%) +[UE1] [2025-07-19 14:03:56] [ 5] 48.00-49.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1409/10233 (14%) +[UE1] [2025-07-19 14:03:57] [ 5] 49.00-50.00 sec 11.4 MBytes 95.7 Mbits/sec 0.106 ms 1273/9535 (13%) +[UE1] [2025-07-19 14:03:58] [ 5] 50.00-51.00 sec 12.8 MBytes 107 Mbits/sec 0.084 ms 2140/11392 (19%) +[UE1] [2025-07-19 14:03:59] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.132 ms 1463/10288 (14%) +[UE1] [2025-07-19 14:04:00] [ 5] 52.00-53.00 sec 11.4 MBytes 95.7 Mbits/sec 0.111 ms 1455/9717 (15%) +[UE1] [2025-07-19 14:04:01] [ 5] 53.00-54.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 1802/10482 (17%) +[UE1] [2025-07-19 14:04:02] [ 5] 54.00-55.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1731/10551 (16%) +[UE1] [2025-07-19 14:04:03] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1476/10315 (14%) +[UE1] [2025-07-19 14:04:04] [ 5] 56.00-57.00 sec 12.8 MBytes 107 Mbits/sec 0.088 ms 1574/10833 (15%) +[UE1] [2025-07-19 14:04:05] [ 5] 57.00-58.00 sec 12.0 MBytes 100 Mbits/sec 0.080 ms 1399/10066 (14%) +[UE1] [2025-07-19 14:04:06] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1487/10320 (14%) +[UE1] [2025-07-19 14:04:07] [ 5] 59.00-60.00 sec 12.0 MBytes 101 Mbits/sec 0.127 ms 1477/10162 (15%) +[UE1] [2025-07-19 14:04:08] [ 5] 60.00-61.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1568/10396 (15%) +[UE1] [2025-07-19 14:04:09] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1493/10326 (14%) +[UE1] [2025-07-19 14:04:10] [ 5] 62.00-63.00 sec 12.8 MBytes 107 Mbits/sec 0.084 ms 1638/10893 (15%) +[UE1] [2025-07-19 14:04:11] [ 5] 63.00-64.00 sec 11.4 MBytes 95.6 Mbits/sec 0.095 ms 1411/9661 (15%) +[UE1] [2025-07-19 14:04:12] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1878/10705 (18%) +[UE1] [2025-07-19 14:04:13] [ 5] 65.00-66.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1519/10203 (15%) +[UE1] [2025-07-19 14:04:14] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1653/10474 (16%) +[UE1] [2025-07-19 14:04:15] [ 5] 67.00-68.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 1463/10158 (14%) +[UE1] [2025-07-19 14:04:16] [ 5] 68.00-69.00 sec 12.8 MBytes 107 Mbits/sec 0.025 ms 1510/10767 (14%) +[UE1] [2025-07-19 14:04:17] [ 5] 69.00-70.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1417/10249 (14%) +[UE1] [2025-07-19 14:04:18] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1515/10333 (15%) +[UE1] [2025-07-19 14:04:19] [ 5] 71.00-72.00 sec 12.0 MBytes 101 Mbits/sec 0.107 ms 1398/10079 (14%) +[UE1] [2025-07-19 14:04:20] [ 5] 72.00-73.00 sec 12.8 MBytes 108 Mbits/sec 0.099 ms 1604/10885 (15%) +[UE1] [2025-07-19 14:04:21] [ 5] 73.00-74.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1382/10205 (14%) +[UE1] [2025-07-19 14:04:22] [ 5] 74.00-75.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1540/10217 (15%) +[UE1] [2025-07-19 14:04:23] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1779/10617 (17%) +[UE1] [2025-07-19 14:04:24] [ 5] 76.00-77.00 sec 11.4 MBytes 95.4 Mbits/sec 0.096 ms 1521/9756 (16%) +[UE1] [2025-07-19 14:04:25] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.131 ms 1627/10458 (16%) +[UE1] [2025-07-19 14:04:26] [ 5] 78.00-79.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 2165/10848 (20%) +[UE1] [2025-07-19 14:04:27] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1576/10401 (15%) +[UE1] [2025-07-19 14:04:28] [ 5] 80.00-81.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1464/10294 (14%) +[UE1] [2025-07-19 14:04:29] [ 5] 81.00-82.00 sec 12.0 MBytes 101 Mbits/sec 0.119 ms 1387/10071 (14%) +[UE1] [2025-07-19 14:04:30] [ 5] 82.00-83.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1513/10461 (14%) +[UE1] [2025-07-19 14:04:31] [ 5] 83.00-84.00 sec 11.8 MBytes 99.2 Mbits/sec 0.125 ms 1351/9914 (14%) +[UE1] [2025-07-19 14:04:32] [ 5] 84.00-85.00 sec 12.2 MBytes 102 Mbits/sec 0.104 ms 1670/10497 (16%) +[UE1] [2025-07-19 14:04:33] [ 5] 85.00-86.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 1665/10935 (15%) +[UE1] [2025-07-19 14:04:34] [ 5] 86.00-87.00 sec 11.4 MBytes 95.6 Mbits/sec 0.102 ms 1463/9712 (15%) +[UE1] [2025-07-19 14:04:35] [ 5] 87.00-88.00 sec 12.2 MBytes 102 Mbits/sec 0.099 ms 1778/10598 (17%) +[UE1] [2025-07-19 14:04:36] [ 5] 88.00-89.00 sec 12.8 MBytes 107 Mbits/sec 0.124 ms 1562/10831 (14%) +[UE1] [2025-07-19 14:04:37] [ 5] 89.00-90.00 sec 12.0 MBytes 101 Mbits/sec 0.100 ms 1315/10000 (13%) +[UE1] [2025-07-19 14:04:38] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1466/10294 (14%) +[UE1] [2025-07-19 14:04:39] [ 5] 91.00-92.00 sec 12.8 MBytes 107 Mbits/sec 0.073 ms 1427/10679 (13%) +[UE1] [2025-07-19 14:04:40] [ 5] 92.00-93.00 sec 12.0 MBytes 101 Mbits/sec 0.083 ms 1421/10109 (14%) +[UE1] [2025-07-19 14:04:41] [ 5] 93.00-94.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1285/10113 (13%) +[UE1] [2025-07-19 14:04:42] [ 5] 94.00-95.00 sec 12.8 MBytes 107 Mbits/sec 0.078 ms 1555/10812 (14%) +[UE1] [2025-07-19 14:04:43] [ 5] 95.00-96.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1370/10202 (13%) +[UE1] [2025-07-19 14:04:44] [ 5] 96.00-97.00 sec 12.0 MBytes 101 Mbits/sec 0.098 ms 1618/10294 (16%) +[UE1] [2025-07-19 14:04:45] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1525/10356 (15%) +[UE1] [2025-07-19 14:04:46] [ 5] 98.00-99.00 sec 12.0 MBytes 101 Mbits/sec 0.082 ms 1572/10255 (15%) +[UE1] [2025-07-19 14:04:47] [ 5] 99.00-100.00 sec 12.8 MBytes 107 Mbits/sec 0.089 ms 1470/10740 (14%) +[UE1] [2025-07-19 14:04:49] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.144 ms 0/2702 (0%) +[UE1] [2025-07-19 14:04:50] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2592 (0%) +[UE1] [2025-07-19 14:04:51] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.338 ms 0/2588 (0%) +[UE1] [2025-07-19 14:04:52] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2589 (0%) +[UE1] [2025-07-19 14:04:53] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2592 (0%) +[UE1] [2025-07-19 14:04:54] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2589 (0%) +[UE1] [2025-07-19 14:04:55] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.124 ms 0/2589 (0%) +[UE1] [2025-07-19 14:04:56] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2590 (0%) +[UE1] [2025-07-19 14:04:57] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.344 ms 0/2589 (0%) +[UE1] [2025-07-19 14:04:58] [ 5] 9.00-10.00 sec 3.57 MBytes 30.0 Mbits/sec 0.229 ms 0/2588 (0%) +[UE1] [2025-07-19 14:04:59] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.277 ms 0/2594 (0%) +[UE1] [2025-07-19 14:05:00] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:01] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.141 ms 0/2587 (0%) +[UE1] [2025-07-19 14:05:02] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:03] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:04] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.333 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:05] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:06] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:07] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:08] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:09] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.220 ms 0/2587 (0%) +[UE1] [2025-07-19 14:05:10] [ 5] 21.00-22.00 sec 3.58 MBytes 30.1 Mbits/sec 0.178 ms 0/2595 (0%) +[UE1] [2025-07-19 14:05:11] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:12] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.191 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:13] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:14] [ 5] 25.00-26.00 sec 3.57 MBytes 30.0 Mbits/sec 0.250 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:15] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:16] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:17] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.264 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:18] [ 5] 29.00-30.00 sec 3.57 MBytes 30.0 Mbits/sec 0.273 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:19] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:20] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:21] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:22] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:23] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2592 (0%) +[UE1] [2025-07-19 14:05:24] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.298 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:25] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:26] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:27] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:28] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2592 (0%) +[UE1] [2025-07-19 14:05:29] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:30] [ 5] 41.00-42.00 sec 3.57 MBytes 30.0 Mbits/sec 0.368 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:31] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.292 ms 0/2587 (0%) +[UE1] [2025-07-19 14:05:32] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2594 (0%) +[UE1] [2025-07-19 14:05:33] [ 5] 44.00-45.00 sec 3.57 MBytes 30.0 Mbits/sec 0.253 ms 0/2587 (0%) +[UE1] [2025-07-19 14:05:34] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:35] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:36] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.367 ms 0/2587 (0%) +[UE1] [2025-07-19 14:05:37] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2592 (0%) +[UE1] [2025-07-19 14:05:38] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:39] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2592 (0%) +[UE1] [2025-07-19 14:05:40] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.218 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:41] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:42] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.311 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:43] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:44] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:45] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.308 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:46] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:47] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:48] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:49] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.335 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:50] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2592 (0%) +[UE1] [2025-07-19 14:05:51] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.263 ms 0/2587 (0%) +[UE1] [2025-07-19 14:05:52] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:53] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2591 (0%) +[UE1] [2025-07-19 14:05:54] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2589 (0%) +[UE1] [2025-07-19 14:05:55] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2592 (0%) +[UE1] [2025-07-19 14:05:56] [ 5] 67.00-68.00 sec 3.57 MBytes 30.0 Mbits/sec 0.215 ms 0/2588 (0%) +[UE1] [2025-07-19 14:05:57] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2590 (0%) +[UE1] [2025-07-19 14:05:58] [ 5] 69.00-70.00 sec 3.57 MBytes 29.9 Mbits/sec 0.170 ms 0/2584 (0%) +[UE1] [2025-07-19 14:05:59] [ 5] 70.00-71.00 sec 3.59 MBytes 30.1 Mbits/sec 0.281 ms 0/2598 (0%) +[UE1] [2025-07-19 14:06:00] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2590 (0%) +[UE1] [2025-07-19 14:06:01] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2589 (0%) +[UE1] [2025-07-19 14:06:02] [ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 0.290 ms 0/2588 (0%) +[UE1] [2025-07-19 14:06:03] [ 5] 74.00-75.00 sec 3.57 MBytes 30.0 Mbits/sec 0.255 ms 0/2588 (0%) +[UE1] [2025-07-19 14:06:04] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.337 ms 0/2594 (0%) +[UE1] [2025-07-19 14:06:05] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.171 ms 0/2587 (0%) +[UE1] [2025-07-19 14:06:06] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2592 (0%) +[UE1] [2025-07-19 14:06:07] [ 5] 78.00-79.00 sec 3.57 MBytes 29.9 Mbits/sec 0.313 ms 0/2585 (0%) +[UE1] [2025-07-19 14:06:08] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2593 (0%) +[UE1] [2025-07-19 14:06:09] [ 5] 80.00-81.00 sec 3.56 MBytes 29.9 Mbits/sec 0.396 ms 0/2580 (0%) +[UE1] [2025-07-19 14:06:10] [ 5] 81.00-82.00 sec 3.59 MBytes 30.1 Mbits/sec 0.289 ms 0/2599 (0%) +[UE1] [2025-07-19 14:06:11] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2591 (0%) +[UE1] [2025-07-19 14:06:12] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2589 (0%) +[UE1] [2025-07-19 14:06:13] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2590 (0%) +[UE1] [2025-07-19 14:06:14] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE1] [2025-07-19 14:06:15] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2591 (0%) +[UE1] [2025-07-19 14:06:16] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE1] [2025-07-19 14:06:17] [ 5] 88.00-89.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2588 (0%) +[UE1] [2025-07-19 14:06:18] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2592 (0%) +[UE1] [2025-07-19 14:06:19] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 14:06:20] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2587 (0%) +[UE1] [2025-07-19 14:06:21] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2592 (0%) +[UE1] [2025-07-19 14:06:22] [ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 0.235 ms 0/2587 (0%) +[UE1] [2025-07-19 14:06:23] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2593 (0%) +[UE1] [2025-07-19 14:06:24] [ 5] 95.00-96.00 sec 3.57 MBytes 30.0 Mbits/sec 0.208 ms 0/2588 (0%) +[UE1] [2025-07-19 14:06:25] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2589 (0%) +[UE1] [2025-07-19 14:06:26] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.272 ms 0/2592 (0%) +[UE1] [2025-07-19 14:06:27] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.157 ms 0/2587 (0%) +[UE1] [2025-07-19 14:06:28] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2593 (0%) +[UE1] [2025-07-19 14:06:30] [ 5] 0.00-1.00 sec 9.33 MBytes 78.2 Mbits/sec 0.143 ms 0/6755 (0%) +[UE1] [2025-07-19 14:06:31] [ 5] 1.00-2.00 sec 12.1 MBytes 101 Mbits/sec 0.152 ms 0/8748 (0%) +[UE1] [2025-07-19 14:06:32] [ 5] 2.00-3.00 sec 11.6 MBytes 97.1 Mbits/sec 0.068 ms 886/9264 (9.6%) +[UE1] [2025-07-19 14:06:33] [ 5] 3.00-4.00 sec 11.4 MBytes 95.6 Mbits/sec 0.105 ms 1493/9746 (15%) +[UE1] [2025-07-19 14:06:34] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1780/10612 (17%) +[UE1] [2025-07-19 14:06:35] [ 5] 5.00-6.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1585/10271 (15%) +[UE1] [2025-07-19 14:06:36] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1666/10487 (16%) +[UE1] [2025-07-19 14:06:37] [ 5] 7.00-8.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1388/10219 (14%) +[UE1] [2025-07-19 14:06:38] [ 5] 8.00-9.00 sec 12.0 MBytes 101 Mbits/sec 0.114 ms 1744/10423 (17%) +[UE1] [2025-07-19 14:06:39] [ 5] 9.00-10.00 sec 12.8 MBytes 107 Mbits/sec 0.120 ms 1582/10844 (15%) +[UE1] [2025-07-19 14:06:40] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1334/10161 (13%) +[UE1] [2025-07-19 14:06:41] [ 5] 11.00-12.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 1334/10011 (13%) +[UE1] [2025-07-19 14:06:42] [ 5] 12.00-13.00 sec 12.8 MBytes 107 Mbits/sec 0.076 ms 1534/10811 (14%) +[UE1] [2025-07-19 14:06:43] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1401/10229 (14%) +[UE1] [2025-07-19 14:06:44] [ 5] 14.00-15.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1630/10457 (16%) +[UE1] [2025-07-19 14:06:45] [ 5] 15.00-16.00 sec 12.0 MBytes 101 Mbits/sec 0.069 ms 1594/10278 (16%) +[UE1] [2025-07-19 14:06:46] [ 5] 16.00-17.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1459/10287 (14%) +[UE1] [2025-07-19 14:06:47] [ 5] 17.00-18.00 sec 12.0 MBytes 100 Mbits/sec 0.074 ms 1498/10171 (15%) +[UE1] [2025-07-19 14:06:48] [ 5] 18.00-19.00 sec 11.4 MBytes 95.7 Mbits/sec 0.082 ms 1395/9653 (14%) +[UE1] [2025-07-19 14:06:49] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 2461/11278 (22%) +[UE1] [2025-07-19 14:06:50] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1442/10265 (14%) +[UE1] [2025-07-19 14:06:51] [ 5] 21.00-22.00 sec 12.8 MBytes 108 Mbits/sec 0.080 ms 1470/10748 (14%) +[UE1] [2025-07-19 14:06:52] [ 5] 22.00-23.00 sec 12.0 MBytes 101 Mbits/sec 0.131 ms 1421/10113 (14%) +[UE1] [2025-07-19 14:06:53] [ 5] 23.00-24.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1639/10441 (16%) +[UE1] [2025-07-19 14:06:54] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1482/10327 (14%) +[UE1] [2025-07-19 14:06:55] [ 5] 25.00-26.00 sec 12.0 MBytes 101 Mbits/sec 0.126 ms 1565/10257 (15%) +[UE1] [2025-07-19 14:06:56] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1536/10344 (15%) +[UE1] [2025-07-19 14:06:57] [ 5] 27.00-28.00 sec 12.8 MBytes 107 Mbits/sec 0.079 ms 1379/10647 (13%) +[UE1] [2025-07-19 14:06:58] [ 5] 28.00-29.00 sec 12.0 MBytes 101 Mbits/sec 0.103 ms 1488/10174 (15%) +[UE1] [2025-07-19 14:06:59] [ 5] 29.00-30.00 sec 12.1 MBytes 101 Mbits/sec 0.125 ms 1604/10334 (16%) +[UE1] [2025-07-19 14:07:00] [ 5] 30.00-31.00 sec 10.9 MBytes 91.6 Mbits/sec 0.127 ms 1842/9748 (19%) +[UE1] [2025-07-19 14:07:01] [ 5] 31.00-32.00 sec 10.8 MBytes 90.5 Mbits/sec 0.118 ms 1685/9499 (18%) +[UE1] [2025-07-19 14:07:02] [ 5] 32.00-33.00 sec 12.8 MBytes 107 Mbits/sec 0.070 ms 2702/11975 (23%) +[UE1] [2025-07-19 14:07:03] [ 5] 33.00-34.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1313/9992 (13%) +[UE1] [2025-07-19 14:07:04] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1480/10301 (14%) +[UE1] [2025-07-19 14:07:05] [ 5] 35.00-36.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1635/10327 (16%) +[UE1] [2025-07-19 14:07:06] [ 5] 36.00-37.00 sec 12.4 MBytes 104 Mbits/sec 0.091 ms 1666/10635 (16%) +[UE1] [2025-07-19 14:07:07] [ 5] 37.00-38.00 sec 12.0 MBytes 101 Mbits/sec 0.074 ms 1550/10227 (15%) +[UE1] [2025-07-19 14:07:08] [ 5] 38.00-39.00 sec 12.8 MBytes 107 Mbits/sec 0.098 ms 1461/10721 (14%) +[UE1] [2025-07-19 14:07:09] [ 5] 39.00-40.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1552/10236 (15%) +[UE1] [2025-07-19 14:07:10] [ 5] 40.00-41.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1524/10353 (15%) +[UE1] [2025-07-19 14:07:11] [ 5] 41.00-42.00 sec 11.4 MBytes 95.7 Mbits/sec 0.080 ms 1416/9681 (15%) +[UE1] [2025-07-19 14:07:12] [ 5] 42.00-43.00 sec 11.4 MBytes 95.3 Mbits/sec 0.068 ms 2520/10746 (23%) +[UE1] [2025-07-19 14:07:13] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1655/10490 (16%) +[UE1] [2025-07-19 14:07:14] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1526/10353 (15%) +[UE1] [2025-07-19 14:07:15] [ 5] 45.00-46.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1427/10103 (14%) +[UE1] [2025-07-19 14:07:16] [ 5] 46.00-47.00 sec 12.8 MBytes 107 Mbits/sec 0.084 ms 1549/10827 (14%) +[UE1] [2025-07-19 14:07:17] [ 5] 47.00-48.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 1456/10284 (14%) +[UE1] [2025-07-19 14:07:18] [ 5] 48.00-49.00 sec 12.0 MBytes 100 Mbits/sec 0.103 ms 1606/10279 (16%) +[UE1] [2025-07-19 14:07:19] [ 5] 49.00-50.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1442/10280 (14%) +[UE1] [2025-07-19 14:07:20] [ 5] 50.00-51.00 sec 12.8 MBytes 107 Mbits/sec 0.122 ms 1390/10640 (13%) +[UE1] [2025-07-19 14:07:21] [ 5] 51.00-52.00 sec 12.7 MBytes 106 Mbits/sec 0.075 ms 1355/10543 (13%) +[UE1] [2025-07-19 14:07:22] [ 5] 52.00-53.00 sec 12.1 MBytes 101 Mbits/sec 0.096 ms 1316/10076 (13%) +[UE1] [2025-07-19 14:07:23] [ 5] 53.00-54.00 sec 11.6 MBytes 97.3 Mbits/sec 0.124 ms 1605/10003 (16%) +[UE1] [2025-07-19 14:07:24] [ 5] 54.00-55.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1686/10366 (16%) +[UE1] [2025-07-19 14:07:25] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1610/10441 (15%) +[UE1] [2025-07-19 14:07:26] [ 5] 56.00-57.00 sec 12.0 MBytes 101 Mbits/sec 0.086 ms 1692/10371 (16%) +[UE1] [2025-07-19 14:07:27] [ 5] 57.00-58.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1464/10292 (14%) +[UE1] [2025-07-19 14:07:28] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1576/10400 (15%) +[UE1] [2025-07-19 14:07:29] [ 5] 59.00-60.00 sec 12.0 MBytes 101 Mbits/sec 0.109 ms 1600/10286 (16%) +[UE1] [2025-07-19 14:07:30] [ 5] 60.00-61.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1501/10322 (15%) +[UE1] [2025-07-19 14:07:31] [ 5] 61.00-62.00 sec 12.0 MBytes 101 Mbits/sec 3.234 ms 1611/10301 (16%) +[UE1] [2025-07-19 14:07:32] [ 5] 62.00-63.00 sec 12.8 MBytes 107 Mbits/sec 0.092 ms 1543/10798 (14%) +[UE1] [2025-07-19 14:07:33] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1507/10342 (15%) +[UE1] [2025-07-19 14:07:34] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1468/10295 (14%) +[UE1] [2025-07-19 14:07:35] [ 5] 65.00-66.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1809/10485 (17%) +[UE1] [2025-07-19 14:07:36] [ 5] 66.00-67.00 sec 11.4 MBytes 95.7 Mbits/sec 3.142 ms 1486/9749 (15%) +[UE1] [2025-07-19 14:07:37] [ 5] 67.00-68.00 sec 12.8 MBytes 107 Mbits/sec 0.080 ms 1695/10948 (15%) +[UE1] [2025-07-19 14:07:38] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1579/10402 (15%) +[UE1] [2025-07-19 14:07:39] [ 5] 69.00-70.00 sec 10.8 MBytes 90.6 Mbits/sec 0.100 ms 1288/9111 (14%) +[UE1] [2025-07-19 14:07:40] [ 5] 70.00-71.00 sec 12.0 MBytes 101 Mbits/sec 0.126 ms 2441/11122 (22%) +[UE1] [2025-07-19 14:07:41] [ 5] 71.00-72.00 sec 12.8 MBytes 107 Mbits/sec 0.130 ms 1614/10887 (15%) +[UE1] [2025-07-19 14:07:42] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1389/10212 (14%) +[UE1] [2025-07-19 14:07:43] [ 5] 73.00-74.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1487/10316 (14%) +[UE1] [2025-07-19 14:07:44] [ 5] 74.00-75.00 sec 12.0 MBytes 101 Mbits/sec 0.131 ms 1427/10114 (14%) +[UE1] [2025-07-19 14:07:45] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.111 ms 1559/10382 (15%) +[UE1] [2025-07-19 14:07:46] [ 5] 76.00-77.00 sec 12.0 MBytes 101 Mbits/sec 0.136 ms 1776/10453 (17%) +[UE1] [2025-07-19 14:07:47] [ 5] 77.00-78.00 sec 11.6 MBytes 97.3 Mbits/sec 0.090 ms 1542/9940 (16%) +[UE1] [2025-07-19 14:07:48] [ 5] 78.00-79.00 sec 12.0 MBytes 100 Mbits/sec 0.077 ms 2198/10873 (20%) +[UE1] [2025-07-19 14:07:49] [ 5] 79.00-80.00 sec 10.8 MBytes 90.5 Mbits/sec 0.126 ms 1299/9116 (14%) +[UE1] [2025-07-19 14:07:50] [ 5] 80.00-81.00 sec 12.8 MBytes 107 Mbits/sec 0.093 ms 2501/11769 (21%) +[UE1] [2025-07-19 14:07:51] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1540/10367 (15%) +[UE1] [2025-07-19 14:07:52] [ 5] 82.00-83.00 sec 12.0 MBytes 101 Mbits/sec 0.088 ms 1445/10125 (14%) +[UE1] [2025-07-19 14:07:53] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1684/10516 (16%) +[UE1] [2025-07-19 14:07:54] [ 5] 84.00-85.00 sec 11.5 MBytes 96.8 Mbits/sec 0.116 ms 1545/9898 (16%) +[UE1] [2025-07-19 14:07:55] [ 5] 85.00-86.00 sec 12.2 MBytes 103 Mbits/sec 0.126 ms 1691/10547 (16%) +[UE1] [2025-07-19 14:07:56] [ 5] 86.00-87.00 sec 11.8 MBytes 99.0 Mbits/sec 0.120 ms 1517/10068 (15%) +[UE1] [2025-07-19 14:07:57] [ 5] 87.00-88.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1746/10586 (16%) +[UE1] [2025-07-19 14:07:58] [ 5] 88.00-89.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1670/10479 (16%) +[UE1] [2025-07-19 14:07:59] [ 5] 89.00-90.00 sec 11.4 MBytes 95.6 Mbits/sec 0.113 ms 1492/9743 (15%) +[UE1] [2025-07-19 14:08:00] [ 5] 90.00-91.00 sec 12.0 MBytes 101 Mbits/sec 0.102 ms 2445/11127 (22%) +[UE1] [2025-07-19 14:08:01] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.124 ms 1471/10304 (14%) +[UE1] [2025-07-19 14:08:02] [ 5] 92.00-93.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 1470/10147 (14%) +[UE1] [2025-07-19 14:08:03] [ 5] 93.00-94.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1553/10381 (15%) +[UE1] [2025-07-19 14:08:04] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1613/10440 (15%) +[UE1] [2025-07-19 14:08:05] [ 5] 95.00-96.00 sec 12.0 MBytes 101 Mbits/sec 0.114 ms 1657/10334 (16%) +[UE1] [2025-07-19 14:08:06] [ 5] 96.00-97.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 1404/10239 (14%) +[UE1] [2025-07-19 14:08:07] [ 5] 97.00-98.00 sec 12.4 MBytes 104 Mbits/sec 0.089 ms 1560/10526 (15%) +[UE1] [2025-07-19 14:08:08] [ 5] 98.00-99.00 sec 11.8 MBytes 99.0 Mbits/sec 0.091 ms 1722/10266 (17%) +[UE1] [2025-07-19 14:08:10] [ 5] 99.00-100.00 sec 12.8 MBytes 107 Mbits/sec 0.118 ms 1575/10842 (15%) +[UE1] [2025-07-19 14:08:11] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.265 ms 0/2702 (0%) +[UE1] [2025-07-19 14:08:12] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:13] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE1] [2025-07-19 14:08:14] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2591 (0%) +[UE1] [2025-07-19 14:08:15] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2591 (0%) +[UE1] [2025-07-19 14:08:16] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.194 ms 0/2587 (0%) +[UE1] [2025-07-19 14:08:17] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2593 (0%) +[UE1] [2025-07-19 14:08:18] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:19] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:20] [ 5] 9.00-10.00 sec 3.57 MBytes 30.0 Mbits/sec 0.256 ms 0/2587 (0%) +[UE1] [2025-07-19 14:08:21] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:22] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.344 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:23] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.219 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:24] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2589 (0%) +[UE1] [2025-07-19 14:08:25] [ 5] 14.00-15.00 sec 3.57 MBytes 29.9 Mbits/sec 0.213 ms 0/2582 (0%) +[UE1] [2025-07-19 14:08:26] [ 5] 15.00-16.00 sec 3.59 MBytes 30.1 Mbits/sec 0.265 ms 0/2600 (0%) +[UE1] [2025-07-19 14:08:27] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:28] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.128 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:29] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2591 (0%) +[UE1] [2025-07-19 14:08:30] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:31] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.227 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:32] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2589 (0%) +[UE1] [2025-07-19 14:08:33] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:34] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.178 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:35] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:36] [ 5] 25.00-26.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2587 (0%) +[UE1] [2025-07-19 14:08:37] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:38] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.151 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:39] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:40] [ 5] 29.00-30.00 sec 3.57 MBytes 30.0 Mbits/sec 0.148 ms 0/2587 (0%) +[UE1] [2025-07-19 14:08:41] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2591 (0%) +[UE1] [2025-07-19 14:08:42] [ 5] 31.00-32.00 sec 3.57 MBytes 30.0 Mbits/sec 0.163 ms 0/2586 (0%) +[UE1] [2025-07-19 14:08:43] [ 5] 32.00-33.00 sec 3.58 MBytes 30.1 Mbits/sec 0.222 ms 0/2595 (0%) +[UE1] [2025-07-19 14:08:44] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:45] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE1] [2025-07-19 14:08:46] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:47] [ 5] 36.00-37.00 sec 3.57 MBytes 30.0 Mbits/sec 0.186 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:48] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:49] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.347 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:50] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE1] [2025-07-19 14:08:51] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:52] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:53] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:54] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.245 ms 0/2588 (0%) +[UE1] [2025-07-19 14:08:55] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:56] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.241 ms 0/2587 (0%) +[UE1] [2025-07-19 14:08:57] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2592 (0%) +[UE1] [2025-07-19 14:08:58] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:08:59] [ 5] 48.00-49.00 sec 3.57 MBytes 30.0 Mbits/sec 0.202 ms 0/2588 (0%) +[UE1] [2025-07-19 14:09:00] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:01] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2589 (0%) +[UE1] [2025-07-19 14:09:02] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:03] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.281 ms 0/2587 (0%) +[UE1] [2025-07-19 14:09:04] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:05] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2591 (0%) +[UE1] [2025-07-19 14:09:06] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2589 (0%) +[UE1] [2025-07-19 14:09:07] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:08] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:09] [ 5] 58.00-59.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2588 (0%) +[UE1] [2025-07-19 14:09:10] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:11] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2591 (0%) +[UE1] [2025-07-19 14:09:12] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:13] [ 5] 62.00-63.00 sec 3.57 MBytes 29.9 Mbits/sec 0.201 ms 0/2585 (0%) +[UE1] [2025-07-19 14:09:14] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2589 (0%) +[UE1] [2025-07-19 14:09:15] [ 5] 64.00-65.00 sec 3.58 MBytes 30.1 Mbits/sec 0.229 ms 0/2595 (0%) +[UE1] [2025-07-19 14:09:16] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.239 ms 0/2588 (0%) +[UE1] [2025-07-19 14:09:17] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:18] [ 5] 67.00-68.00 sec 3.57 MBytes 30.0 Mbits/sec 0.396 ms 0/2587 (0%) +[UE1] [2025-07-19 14:09:19] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:20] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:21] [ 5] 70.00-71.00 sec 3.57 MBytes 30.0 Mbits/sec 0.267 ms 0/2586 (0%) +[UE1] [2025-07-19 14:09:22] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2591 (0%) +[UE1] [2025-07-19 14:09:23] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:24] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:25] [ 5] 74.00-75.00 sec 3.57 MBytes 29.9 Mbits/sec 0.119 ms 0/2585 (0%) +[UE1] [2025-07-19 14:09:26] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.328 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:27] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:28] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:29] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:30] [ 5] 79.00-80.00 sec 3.57 MBytes 30.0 Mbits/sec 0.158 ms 0/2587 (0%) +[UE1] [2025-07-19 14:09:31] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2593 (0%) +[UE1] [2025-07-19 14:09:32] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:33] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE1] [2025-07-19 14:09:34] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:35] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:36] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:37] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.166 ms 0/2587 (0%) +[UE1] [2025-07-19 14:09:38] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:39] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:40] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:41] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.176 ms 0/2588 (0%) +[UE1] [2025-07-19 14:09:42] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:43] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE1] [2025-07-19 14:09:44] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:45] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2590 (0%) +[UE1] [2025-07-19 14:09:46] [ 5] 95.00-96.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2587 (0%) +[UE1] [2025-07-19 14:09:47] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.099 ms 0/2587 (0%) +[UE1] [2025-07-19 14:09:48] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:49] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2591 (0%) +[UE1] [2025-07-19 14:09:50] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2592 (0%) +[UE1] [2025-07-19 14:09:52] [ 5] 0.00-1.00 sec 9.49 MBytes 79.6 Mbits/sec 0.137 ms 0/6869 (0%) +[UE1] [2025-07-19 14:09:53] [ 5] 1.00-2.00 sec 12.1 MBytes 102 Mbits/sec 0.140 ms 0/8796 (0%) +[UE1] [2025-07-19 14:09:54] [ 5] 2.00-3.00 sec 11.3 MBytes 95.1 Mbits/sec 0.104 ms 810/9017 (9%) +[UE1] [2025-07-19 14:09:55] [ 5] 3.00-4.00 sec 11.7 MBytes 98.1 Mbits/sec 0.095 ms 1465/9935 (15%) +[UE1] [2025-07-19 14:09:56] [ 5] 4.00-5.00 sec 11.6 MBytes 97.2 Mbits/sec 0.113 ms 2178/10565 (21%) +[UE1] [2025-07-19 14:09:57] [ 5] 5.00-6.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 1597/10281 (16%) +[UE1] [2025-07-19 14:09:58] [ 5] 6.00-7.00 sec 12.8 MBytes 107 Mbits/sec 0.071 ms 1588/10855 (15%) +[UE1] [2025-07-19 14:09:59] [ 5] 7.00-8.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1510/10335 (15%) +[UE1] [2025-07-19 14:10:00] [ 5] 8.00-9.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1499/10180 (15%) +[UE1] [2025-07-19 14:10:01] [ 5] 9.00-10.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1560/10393 (15%) +[UE1] [2025-07-19 14:10:02] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1629/10453 (16%) +[UE1] [2025-07-19 14:10:03] [ 5] 11.00-12.00 sec 12.0 MBytes 101 Mbits/sec 0.071 ms 1333/10015 (13%) +[UE1] [2025-07-19 14:10:04] [ 5] 12.00-13.00 sec 12.8 MBytes 107 Mbits/sec 0.086 ms 1524/10797 (14%) +[UE1] [2025-07-19 14:10:05] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1356/10179 (13%) +[UE1] [2025-07-19 14:10:06] [ 5] 14.00-15.00 sec 12.0 MBytes 101 Mbits/sec 0.094 ms 1719/10396 (17%) +[UE1] [2025-07-19 14:10:07] [ 5] 15.00-16.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1603/10442 (15%) +[UE1] [2025-07-19 14:10:08] [ 5] 16.00-17.00 sec 12.0 MBytes 101 Mbits/sec 0.093 ms 1430/10110 (14%) +[UE1] [2025-07-19 14:10:09] [ 5] 17.00-18.00 sec 12.2 MBytes 102 Mbits/sec 0.069 ms 1514/10334 (15%) +[UE1] [2025-07-19 14:10:10] [ 5] 18.00-19.00 sec 12.2 MBytes 102 Mbits/sec 0.104 ms 1541/10372 (15%) +[UE1] [2025-07-19 14:10:11] [ 5] 19.00-20.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 1876/10563 (18%) +[UE1] [2025-07-19 14:10:12] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1453/10280 (14%) +[UE1] [2025-07-19 14:10:13] [ 5] 21.00-22.00 sec 11.4 MBytes 95.5 Mbits/sec 0.077 ms 1461/9703 (15%) +[UE1] [2025-07-19 14:10:14] [ 5] 22.00-23.00 sec 12.2 MBytes 102 Mbits/sec 0.106 ms 2221/11046 (20%) +[UE1] [2025-07-19 14:10:15] [ 5] 23.00-24.00 sec 12.0 MBytes 101 Mbits/sec 0.074 ms 1379/10065 (14%) +[UE1] [2025-07-19 14:10:16] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.119 ms 1792/10620 (17%) +[UE1] [2025-07-19 14:10:17] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1581/10405 (15%) +[UE1] [2025-07-19 14:10:18] [ 5] 26.00-27.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 1629/10316 (16%) +[UE1] [2025-07-19 14:10:19] [ 5] 27.00-28.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1411/10245 (14%) +[UE1] [2025-07-19 14:10:20] [ 5] 28.00-29.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1531/10349 (15%) +[UE1] [2025-07-19 14:10:21] [ 5] 29.00-30.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1463/10157 (14%) +[UE1] [2025-07-19 14:10:22] [ 5] 30.00-31.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1619/10439 (16%) +[UE1] [2025-07-19 14:10:23] [ 5] 31.00-32.00 sec 12.8 MBytes 107 Mbits/sec 0.082 ms 1732/11001 (16%) +[UE1] [2025-07-19 14:10:24] [ 5] 32.00-33.00 sec 12.0 MBytes 101 Mbits/sec 0.099 ms 1404/10089 (14%) +[UE1] [2025-07-19 14:10:25] [ 5] 33.00-34.00 sec 10.8 MBytes 90.5 Mbits/sec 0.103 ms 1449/9261 (16%) +[UE1] [2025-07-19 14:10:26] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.124 ms 2651/11473 (23%) +[UE1] [2025-07-19 14:10:27] [ 5] 35.00-36.00 sec 12.0 MBytes 101 Mbits/sec 0.122 ms 1543/10225 (15%) +[UE1] [2025-07-19 14:10:28] [ 5] 36.00-37.00 sec 11.7 MBytes 98.3 Mbits/sec 0.122 ms 1628/10112 (16%) +[UE1] [2025-07-19 14:10:29] [ 5] 37.00-38.00 sec 12.5 MBytes 105 Mbits/sec 0.079 ms 1671/10709 (16%) +[UE1] [2025-07-19 14:10:30] [ 5] 38.00-39.00 sec 11.6 MBytes 97.1 Mbits/sec 0.071 ms 1405/9789 (14%) +[UE1] [2025-07-19 14:10:31] [ 5] 39.00-40.00 sec 12.0 MBytes 100 Mbits/sec 0.081 ms 1891/10565 (18%) +[UE1] [2025-07-19 14:10:32] [ 5] 40.00-41.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1659/10492 (16%) +[UE1] [2025-07-19 14:10:33] [ 5] 41.00-42.00 sec 12.2 MBytes 102 Mbits/sec 0.016 ms 1508/10326 (15%) +[UE1] [2025-07-19 14:10:34] [ 5] 42.00-43.00 sec 12.2 MBytes 102 Mbits/sec 0.111 ms 1702/10533 (16%) +[UE1] [2025-07-19 14:10:35] [ 5] 43.00-44.00 sec 11.2 MBytes 94.0 Mbits/sec 0.099 ms 1473/9584 (15%) +[UE1] [2025-07-19 14:10:36] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 2266/11086 (20%) +[UE1] [2025-07-19 14:10:37] [ 5] 45.00-46.00 sec 12.0 MBytes 101 Mbits/sec 0.123 ms 1604/10291 (16%) +[UE1] [2025-07-19 14:10:38] [ 5] 46.00-47.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1396/10228 (14%) +[UE1] [2025-07-19 14:10:39] [ 5] 47.00-48.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1596/10416 (15%) +[UE1] [2025-07-19 14:10:40] [ 5] 48.00-49.00 sec 12.0 MBytes 101 Mbits/sec 0.087 ms 1566/10253 (15%) +[UE1] [2025-07-19 14:10:41] [ 5] 49.00-50.00 sec 12.8 MBytes 107 Mbits/sec 0.077 ms 1559/10820 (14%) +[UE1] [2025-07-19 14:10:42] [ 5] 50.00-51.00 sec 10.8 MBytes 90.7 Mbits/sec 0.071 ms 1282/9114 (14%) +[UE1] [2025-07-19 14:10:43] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 2490/11299 (22%) +[UE1] [2025-07-19 14:10:44] [ 5] 52.00-53.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1432/10114 (14%) +[UE1] [2025-07-19 14:10:45] [ 5] 53.00-54.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1791/10775 (17%) +[UE1] [2025-07-19 14:10:46] [ 5] 54.00-55.00 sec 12.0 MBytes 100 Mbits/sec 0.092 ms 1366/10039 (14%) +[UE1] [2025-07-19 14:10:47] [ 5] 55.00-56.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1592/10274 (15%) +[UE1] [2025-07-19 14:10:48] [ 5] 56.00-57.00 sec 12.8 MBytes 107 Mbits/sec 0.071 ms 1681/10952 (15%) +[UE1] [2025-07-19 14:10:49] [ 5] 57.00-58.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1509/10330 (15%) +[UE1] [2025-07-19 14:10:50] [ 5] 58.00-59.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1538/10227 (15%) +[UE1] [2025-07-19 14:10:51] [ 5] 59.00-60.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1456/10278 (14%) +[UE1] [2025-07-19 14:10:52] [ 5] 60.00-61.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1567/10255 (15%) +[UE1] [2025-07-19 14:10:53] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1548/10377 (15%) +[UE1] [2025-07-19 14:10:54] [ 5] 62.00-63.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1531/10353 (15%) +[UE1] [2025-07-19 14:10:55] [ 5] 63.00-64.00 sec 12.0 MBytes 101 Mbits/sec 0.071 ms 1630/10318 (16%) +[UE1] [2025-07-19 14:10:56] [ 5] 64.00-65.00 sec 11.6 MBytes 97.2 Mbits/sec 0.084 ms 1735/10128 (17%) +[UE1] [2025-07-19 14:10:57] [ 5] 65.00-66.00 sec 12.6 MBytes 106 Mbits/sec 0.114 ms 1718/10841 (16%) +[UE1] [2025-07-19 14:10:58] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1456/10279 (14%) +[UE1] [2025-07-19 14:10:59] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.054 ms 1680/10508 (16%) +[UE1] [2025-07-19 14:11:00] [ 5] 68.00-69.00 sec 12.0 MBytes 101 Mbits/sec 0.108 ms 1407/10095 (14%) +[UE1] [2025-07-19 14:11:01] [ 5] 69.00-70.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1678/10500 (16%) +[UE1] [2025-07-19 14:11:02] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1467/10295 (14%) +[UE1] [2025-07-19 14:11:03] [ 5] 71.00-72.00 sec 12.0 MBytes 101 Mbits/sec 0.122 ms 1448/10136 (14%) +[UE1] [2025-07-19 14:11:04] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1626/10449 (16%) +[UE1] [2025-07-19 14:11:05] [ 5] 73.00-74.00 sec 12.0 MBytes 101 Mbits/sec 0.110 ms 1560/10244 (15%) +[UE1] [2025-07-19 14:11:06] [ 5] 74.00-75.00 sec 12.2 MBytes 102 Mbits/sec 0.120 ms 1448/10280 (14%) +[UE1] [2025-07-19 14:11:07] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 2006/10828 (19%) +[UE1] [2025-07-19 14:11:08] [ 5] 76.00-77.00 sec 12.0 MBytes 101 Mbits/sec 0.091 ms 1496/10174 (15%) +[UE1] [2025-07-19 14:11:09] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.121 ms 1570/10408 (15%) +[UE1] [2025-07-19 14:11:10] [ 5] 78.00-79.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1447/10127 (14%) +[UE1] [2025-07-19 14:11:11] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.116 ms 1501/10321 (15%) +[UE1] [2025-07-19 14:11:12] [ 5] 80.00-81.00 sec 12.8 MBytes 107 Mbits/sec 0.109 ms 1504/10764 (14%) +[UE1] [2025-07-19 14:11:13] [ 5] 81.00-82.00 sec 12.0 MBytes 101 Mbits/sec 0.092 ms 1482/10166 (15%) +[UE1] [2025-07-19 14:11:14] [ 5] 82.00-83.00 sec 12.2 MBytes 102 Mbits/sec 0.119 ms 1443/10271 (14%) +[UE1] [2025-07-19 14:11:15] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1567/10401 (15%) +[UE1] [2025-07-19 14:11:16] [ 5] 84.00-85.00 sec 12.3 MBytes 103 Mbits/sec 0.084 ms 1410/10293 (14%) +[UE1] [2025-07-19 14:11:17] [ 5] 85.00-86.00 sec 12.3 MBytes 103 Mbits/sec 0.076 ms 1618/10505 (15%) +[UE1] [2025-07-19 14:11:18] [ 5] 86.00-87.00 sec 11.0 MBytes 92.6 Mbits/sec 0.106 ms 1387/9380 (15%) +[UE1] [2025-07-19 14:11:19] [ 5] 87.00-88.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 2437/11264 (22%) +[UE1] [2025-07-19 14:11:20] [ 5] 88.00-89.00 sec 12.8 MBytes 107 Mbits/sec 0.119 ms 1442/10696 (13%) +[UE1] [2025-07-19 14:11:21] [ 5] 89.00-90.00 sec 12.0 MBytes 101 Mbits/sec 0.094 ms 1356/10043 (14%) +[UE1] [2025-07-19 14:11:22] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1548/10371 (15%) +[UE1] [2025-07-19 14:11:23] [ 5] 91.00-92.00 sec 12.8 MBytes 107 Mbits/sec 0.089 ms 1504/10771 (14%) +[UE1] [2025-07-19 14:11:24] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1386/10211 (14%) +[UE1] [2025-07-19 14:11:25] [ 5] 93.00-94.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1580/10261 (15%) +[UE1] [2025-07-19 14:11:26] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1308/10141 (13%) +[UE1] [2025-07-19 14:11:27] [ 5] 95.00-96.00 sec 12.0 MBytes 100 Mbits/sec 0.109 ms 1659/10334 (16%) +[UE1] [2025-07-19 14:11:28] [ 5] 96.00-97.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1507/10338 (15%) +[UE1] [2025-07-19 14:11:29] [ 5] 97.00-98.00 sec 11.4 MBytes 95.5 Mbits/sec 0.118 ms 1354/9601 (14%) +[UE1] [2025-07-19 14:11:30] [ 5] 98.00-99.00 sec 10.8 MBytes 90.5 Mbits/sec 0.083 ms 2323/10138 (23%) +[UE1] [2025-07-19 14:11:32] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 2776/11599 (24%) +[UE1] [2025-07-19 14:11:33] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.159 ms 0/2699 (0%) +[UE1] [2025-07-19 14:11:34] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.116 ms 0/2587 (0%) +[UE1] [2025-07-19 14:11:35] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.300 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:36] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:37] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:38] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2592 (0%) +[UE1] [2025-07-19 14:11:39] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.170 ms 0/2587 (0%) +[UE1] [2025-07-19 14:11:40] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:41] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2591 (0%) +[UE1] [2025-07-19 14:11:42] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:43] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2589 (0%) +[UE1] [2025-07-19 14:11:44] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2592 (0%) +[UE1] [2025-07-19 14:11:45] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:46] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.216 ms 0/2587 (0%) +[UE1] [2025-07-19 14:11:47] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2592 (0%) +[UE1] [2025-07-19 14:11:48] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:49] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.168 ms 0/2587 (0%) +[UE1] [2025-07-19 14:11:50] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:51] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE1] [2025-07-19 14:11:52] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE1] [2025-07-19 14:11:53] [ 5] 20.00-21.00 sec 3.57 MBytes 29.9 Mbits/sec 0.211 ms 0/2585 (0%) +[UE1] [2025-07-19 14:11:54] [ 5] 21.00-22.00 sec 3.59 MBytes 30.1 Mbits/sec 0.142 ms 0/2598 (0%) +[UE1] [2025-07-19 14:11:55] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.233 ms 0/2587 (0%) +[UE1] [2025-07-19 14:11:56] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2592 (0%) +[UE1] [2025-07-19 14:11:57] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2589 (0%) +[UE1] [2025-07-19 14:11:58] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2589 (0%) +[UE1] [2025-07-19 14:11:59] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2587 (0%) +[UE1] [2025-07-19 14:12:00] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2594 (0%) +[UE1] [2025-07-19 14:12:01] [ 5] 28.00-29.00 sec 3.57 MBytes 29.9 Mbits/sec 0.335 ms 0/2583 (0%) +[UE1] [2025-07-19 14:12:02] [ 5] 29.00-30.00 sec 3.59 MBytes 30.1 Mbits/sec 0.158 ms 0/2597 (0%) +[UE1] [2025-07-19 14:12:03] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.152 ms 0/2587 (0%) +[UE1] [2025-07-19 14:12:04] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.312 ms 0/2592 (0%) +[UE1] [2025-07-19 14:12:05] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.268 ms 0/2586 (0%) +[UE1] [2025-07-19 14:12:06] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:07] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:08] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:09] [ 5] 36.00-37.00 sec 3.56 MBytes 29.9 Mbits/sec 0.392 ms 0/2580 (0%) +[UE1] [2025-07-19 14:12:10] [ 5] 37.00-38.00 sec 3.59 MBytes 30.1 Mbits/sec 0.191 ms 0/2599 (0%) +[UE1] [2025-07-19 14:12:11] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2589 (0%) +[UE1] [2025-07-19 14:12:12] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.426 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:13] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:14] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:15] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:16] [ 5] 43.00-44.00 sec 3.57 MBytes 29.9 Mbits/sec 0.298 ms 0/2583 (0%) +[UE1] [2025-07-19 14:12:17] [ 5] 44.00-45.00 sec 3.58 MBytes 30.1 Mbits/sec 0.172 ms 0/2596 (0%) +[UE1] [2025-07-19 14:12:18] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:19] [ 5] 46.00-47.00 sec 3.57 MBytes 29.9 Mbits/sec 0.304 ms 0/2583 (0%) +[UE1] [2025-07-19 14:12:20] [ 5] 47.00-48.00 sec 3.58 MBytes 30.1 Mbits/sec 0.152 ms 0/2594 (0%) +[UE1] [2025-07-19 14:12:21] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2593 (0%) +[UE1] [2025-07-19 14:12:22] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2589 (0%) +[UE1] [2025-07-19 14:12:23] [ 5] 50.00-51.00 sec 3.57 MBytes 30.0 Mbits/sec 0.234 ms 0/2588 (0%) +[UE1] [2025-07-19 14:12:24] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2589 (0%) +[UE1] [2025-07-19 14:12:25] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:26] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2592 (0%) +[UE1] [2025-07-19 14:12:27] [ 5] 54.00-55.00 sec 3.57 MBytes 29.9 Mbits/sec 0.182 ms 0/2582 (0%) +[UE1] [2025-07-19 14:12:28] [ 5] 55.00-56.00 sec 3.59 MBytes 30.1 Mbits/sec 0.122 ms 0/2597 (0%) +[UE1] [2025-07-19 14:12:29] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.281 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:30] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:31] [ 5] 58.00-59.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2587 (0%) +[UE1] [2025-07-19 14:12:32] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2592 (0%) +[UE1] [2025-07-19 14:12:33] [ 5] 60.00-61.00 sec 3.57 MBytes 29.9 Mbits/sec 0.183 ms 0/2585 (0%) +[UE1] [2025-07-19 14:12:34] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2592 (0%) +[UE1] [2025-07-19 14:12:35] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:36] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:37] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.279 ms 0/2592 (0%) +[UE1] [2025-07-19 14:12:38] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.130 ms 0/2587 (0%) +[UE1] [2025-07-19 14:12:39] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:40] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2589 (0%) +[UE1] [2025-07-19 14:12:41] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:42] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2589 (0%) +[UE1] [2025-07-19 14:12:43] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.288 ms 0/2589 (0%) +[UE1] [2025-07-19 14:12:44] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.333 ms 0/2593 (0%) +[UE1] [2025-07-19 14:12:45] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.221 ms 0/2586 (0%) +[UE1] [2025-07-19 14:12:46] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:47] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2589 (0%) +[UE1] [2025-07-19 14:12:48] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.301 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:49] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.157 ms 0/2587 (0%) +[UE1] [2025-07-19 14:12:50] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2593 (0%) +[UE1] [2025-07-19 14:12:51] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.162 ms 0/2588 (0%) +[UE1] [2025-07-19 14:12:52] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:53] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2591 (0%) +[UE1] [2025-07-19 14:12:54] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.181 ms 0/2588 (0%) +[UE1] [2025-07-19 14:12:55] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2592 (0%) +[UE1] [2025-07-19 14:12:56] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:57] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE1] [2025-07-19 14:12:58] [ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 0.256 ms 0/2587 (0%) +[UE1] [2025-07-19 14:12:59] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2591 (0%) +[UE1] [2025-07-19 14:13:00] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.373 ms 0/2588 (0%) +[UE1] [2025-07-19 14:13:01] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2591 (0%) +[UE1] [2025-07-19 14:13:02] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE1] [2025-07-19 14:13:03] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2592 (0%) +[UE1] [2025-07-19 14:13:04] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.237 ms 0/2588 (0%) +[UE1] [2025-07-19 14:13:05] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE1] [2025-07-19 14:13:06] [ 5] 93.00-94.00 sec 3.57 MBytes 29.9 Mbits/sec 0.309 ms 6/2591 (0.23%) +[UE1] [2025-07-19 14:13:07] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2588 (0%) +[UE1] [2025-07-19 14:13:08] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2591 (0%) +[UE1] [2025-07-19 14:13:09] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.296 ms 0/2590 (0%) +[UE1] [2025-07-19 14:13:10] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2589 (0%) +[UE1] [2025-07-19 14:13:11] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2591 (0%) +[UE1] [2025-07-19 14:13:12] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2591 (0%) +[UE1] [2025-07-19 14:13:15] [ 5] 0.00-1.00 sec 9.71 MBytes 81.4 Mbits/sec 0.205 ms 0/7031 (0%) +[UE1] [2025-07-19 14:13:16] [ 5] 1.00-2.00 sec 12.2 MBytes 102 Mbits/sec 0.165 ms 0/8825 (0%) +[UE1] [2025-07-19 14:13:17] [ 5] 2.00-3.00 sec 11.2 MBytes 93.7 Mbits/sec 0.081 ms 742/8830 (8.4%) +[UE1] [2025-07-19 14:13:18] [ 5] 3.00-4.00 sec 12.0 MBytes 100 Mbits/sec 0.100 ms 1566/10241 (15%) +[UE1] [2025-07-19 14:13:19] [ 5] 4.00-5.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 1672/10923 (15%) +[UE1] [2025-07-19 14:13:20] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.116 ms 1168/10000 (12%) +[UE1] [2025-07-19 14:13:21] [ 5] 6.00-7.00 sec 12.6 MBytes 106 Mbits/sec 0.117 ms 1544/10693 (14%) +[UE1] [2025-07-19 14:13:22] [ 5] 7.00-8.00 sec 11.5 MBytes 96.8 Mbits/sec 0.094 ms 1332/9690 (14%) +[UE1] [2025-07-19 14:13:23] [ 5] 8.00-9.00 sec 10.8 MBytes 90.5 Mbits/sec 0.090 ms 1504/9317 (16%) +[UE1] [2025-07-19 14:13:24] [ 5] 9.00-10.00 sec 12.8 MBytes 107 Mbits/sec 0.098 ms 2795/12062 (23%) +[UE1] [2025-07-19 14:13:25] [ 5] 10.00-11.00 sec 12.0 MBytes 101 Mbits/sec 0.118 ms 1275/9966 (13%) +[UE1] [2025-07-19 14:13:26] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.117 ms 1505/10334 (15%) +[UE1] [2025-07-19 14:13:27] [ 5] 12.00-13.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1692/10511 (16%) +[UE1] [2025-07-19 14:13:28] [ 5] 13.00-14.00 sec 12.0 MBytes 101 Mbits/sec 3.034 ms 1319/10006 (13%) +[UE1] [2025-07-19 14:13:29] [ 5] 14.00-15.00 sec 12.8 MBytes 107 Mbits/sec 0.106 ms 1593/10852 (15%) +[UE1] [2025-07-19 14:13:30] [ 5] 15.00-16.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1398/10221 (14%) +[UE1] [2025-07-19 14:13:31] [ 5] 16.00-17.00 sec 12.2 MBytes 102 Mbits/sec 0.121 ms 1577/10412 (15%) +[UE1] [2025-07-19 14:13:32] [ 5] 17.00-18.00 sec 12.0 MBytes 101 Mbits/sec 0.094 ms 1550/10230 (15%) +[UE1] [2025-07-19 14:13:33] [ 5] 18.00-19.00 sec 11.4 MBytes 95.6 Mbits/sec 0.117 ms 1233/9484 (13%) +[UE1] [2025-07-19 14:13:34] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 2520/11346 (22%) +[UE1] [2025-07-19 14:13:35] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1695/10531 (16%) +[UE1] [2025-07-19 14:13:36] [ 5] 21.00-22.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1546/10222 (15%) +[UE1] [2025-07-19 14:13:37] [ 5] 22.00-23.00 sec 12.2 MBytes 102 Mbits/sec 0.067 ms 1481/10308 (14%) +[UE1] [2025-07-19 14:13:38] [ 5] 23.00-24.00 sec 11.4 MBytes 95.6 Mbits/sec 0.083 ms 1394/9644 (14%) +[UE1] [2025-07-19 14:13:39] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.123 ms 2271/11097 (20%) +[UE1] [2025-07-19 14:13:40] [ 5] 25.00-26.00 sec 12.0 MBytes 101 Mbits/sec 0.104 ms 1373/10051 (14%) +[UE1] [2025-07-19 14:13:41] [ 5] 26.00-27.00 sec 12.3 MBytes 103 Mbits/sec 0.214 ms 1559/10442 (15%) +[UE1] [2025-07-19 14:13:42] [ 5] 27.00-28.00 sec 12.7 MBytes 107 Mbits/sec 0.106 ms 1538/10751 (14%) +[UE1] [2025-07-19 14:13:43] [ 5] 28.00-29.00 sec 12.0 MBytes 101 Mbits/sec 0.119 ms 1489/10173 (15%) +[UE1] [2025-07-19 14:13:44] [ 5] 29.00-30.00 sec 12.8 MBytes 107 Mbits/sec 0.084 ms 1565/10833 (14%) +[UE1] [2025-07-19 14:13:45] [ 5] 30.00-31.00 sec 11.6 MBytes 97.2 Mbits/sec 0.118 ms 1094/9481 (12%) +[UE1] [2025-07-19 14:13:46] [ 5] 31.00-32.00 sec 12.7 MBytes 106 Mbits/sec 0.083 ms 1790/10978 (16%) +[UE1] [2025-07-19 14:13:47] [ 5] 32.00-33.00 sec 11.5 MBytes 96.5 Mbits/sec 0.091 ms 1478/9808 (15%) +[UE1] [2025-07-19 14:13:48] [ 5] 33.00-34.00 sec 12.0 MBytes 100 Mbits/sec 0.073 ms 2109/10776 (20%) +[UE1] [2025-07-19 14:13:49] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1594/10424 (15%) +[UE1] [2025-07-19 14:13:50] [ 5] 35.00-36.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1511/10353 (15%) +[UE1] [2025-07-19 14:13:51] [ 5] 36.00-37.00 sec 12.0 MBytes 100 Mbits/sec 0.117 ms 1506/10180 (15%) +[UE1] [2025-07-19 14:13:52] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1522/10351 (15%) +[UE1] [2025-07-19 14:13:53] [ 5] 38.00-39.00 sec 12.5 MBytes 105 Mbits/sec 0.087 ms 1443/10518 (14%) +[UE1] [2025-07-19 14:13:54] [ 5] 39.00-40.00 sec 12.2 MBytes 103 Mbits/sec 0.110 ms 1434/10301 (14%) +[UE1] [2025-07-19 14:13:55] [ 5] 40.00-41.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1362/10196 (13%) +[UE1] [2025-07-19 14:13:56] [ 5] 41.00-42.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1377/10062 (14%) +[UE1] [2025-07-19 14:13:57] [ 5] 42.00-43.00 sec 12.2 MBytes 102 Mbits/sec 0.120 ms 1771/10591 (17%) +[UE1] [2025-07-19 14:13:58] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1449/10276 (14%) +[UE1] [2025-07-19 14:13:59] [ 5] 44.00-45.00 sec 11.4 MBytes 95.6 Mbits/sec 0.087 ms 1560/9814 (16%) +[UE1] [2025-07-19 14:14:00] [ 5] 45.00-46.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 2429/11246 (22%) +[UE1] [2025-07-19 14:14:01] [ 5] 46.00-47.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1257/9950 (13%) +[UE1] [2025-07-19 14:14:02] [ 5] 47.00-48.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1617/10445 (15%) +[UE1] [2025-07-19 14:14:03] [ 5] 48.00-49.00 sec 12.0 MBytes 101 Mbits/sec 3.462 ms 1561/10242 (15%) +[UE1] [2025-07-19 14:14:04] [ 5] 49.00-50.00 sec 12.8 MBytes 107 Mbits/sec 0.079 ms 1577/10838 (15%) +[UE1] [2025-07-19 14:14:05] [ 5] 50.00-51.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1470/10305 (14%) +[UE1] [2025-07-19 14:14:06] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1377/10196 (14%) +[UE1] [2025-07-19 14:14:07] [ 5] 52.00-53.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 1580/10265 (15%) +[UE1] [2025-07-19 14:14:08] [ 5] 53.00-54.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1723/10558 (16%) +[UE1] [2025-07-19 14:14:09] [ 5] 54.00-55.00 sec 12.0 MBytes 101 Mbits/sec 0.072 ms 1700/10382 (16%) +[UE1] [2025-07-19 14:14:10] [ 5] 55.00-56.00 sec 11.6 MBytes 97.2 Mbits/sec 0.080 ms 1820/10210 (18%) +[UE1] [2025-07-19 14:14:11] [ 5] 56.00-57.00 sec 12.0 MBytes 100 Mbits/sec 0.076 ms 1851/10525 (18%) +[UE1] [2025-07-19 14:14:12] [ 5] 57.00-58.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 1589/10416 (15%) +[UE1] [2025-07-19 14:14:13] [ 5] 58.00-59.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1337/10032 (13%) +[UE1] [2025-07-19 14:14:14] [ 5] 59.00-60.00 sec 12.8 MBytes 107 Mbits/sec 0.082 ms 1541/10807 (14%) +[UE1] [2025-07-19 14:14:15] [ 5] 60.00-61.00 sec 12.2 MBytes 102 Mbits/sec 0.106 ms 1503/10321 (15%) +[UE1] [2025-07-19 14:14:16] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1288/10116 (13%) +[UE1] [2025-07-19 14:14:17] [ 5] 62.00-63.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1463/10162 (14%) +[UE1] [2025-07-19 14:14:18] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1689/10501 (16%) +[UE1] [2025-07-19 14:14:19] [ 5] 64.00-65.00 sec 11.4 MBytes 95.6 Mbits/sec 0.079 ms 1435/9689 (15%) +[UE1] [2025-07-19 14:14:20] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 2050/10867 (19%) +[UE1] [2025-07-19 14:14:21] [ 5] 66.00-67.00 sec 12.8 MBytes 107 Mbits/sec 0.082 ms 1642/10909 (15%) +[UE1] [2025-07-19 14:14:22] [ 5] 67.00-68.00 sec 12.0 MBytes 101 Mbits/sec 0.086 ms 1393/10077 (14%) +[UE1] [2025-07-19 14:14:23] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1368/10204 (13%) +[UE1] [2025-07-19 14:14:24] [ 5] 69.00-70.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 1622/10299 (16%) +[UE1] [2025-07-19 14:14:25] [ 5] 70.00-71.00 sec 12.3 MBytes 103 Mbits/sec 0.133 ms 1525/10413 (15%) +[UE1] [2025-07-19 14:14:26] [ 5] 71.00-72.00 sec 12.7 MBytes 107 Mbits/sec 0.123 ms 1573/10773 (15%) +[UE1] [2025-07-19 14:14:27] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1450/10273 (14%) +[UE1] [2025-07-19 14:14:28] [ 5] 73.00-74.00 sec 12.0 MBytes 101 Mbits/sec 0.074 ms 1390/10082 (14%) +[UE1] [2025-07-19 14:14:29] [ 5] 74.00-75.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1575/10399 (15%) +[UE1] [2025-07-19 14:14:30] [ 5] 75.00-76.00 sec 12.0 MBytes 101 Mbits/sec 0.102 ms 1576/10262 (15%) +[UE1] [2025-07-19 14:14:31] [ 5] 76.00-77.00 sec 11.6 MBytes 97.2 Mbits/sec 0.070 ms 1699/10089 (17%) +[UE1] [2025-07-19 14:14:32] [ 5] 77.00-78.00 sec 12.0 MBytes 101 Mbits/sec 0.092 ms 2137/10836 (20%) +[UE1] [2025-07-19 14:14:33] [ 5] 78.00-79.00 sec 11.4 MBytes 95.4 Mbits/sec 0.077 ms 1343/9582 (14%) +[UE1] [2025-07-19 14:14:34] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 2168/10985 (20%) +[UE1] [2025-07-19 14:14:35] [ 5] 80.00-81.00 sec 12.9 MBytes 108 Mbits/sec 0.084 ms 1504/10834 (14%) +[UE1] [2025-07-19 14:14:36] [ 5] 81.00-82.00 sec 12.1 MBytes 101 Mbits/sec 0.102 ms 1420/10179 (14%) +[UE1] [2025-07-19 14:14:37] [ 5] 82.00-83.00 sec 10.6 MBytes 89.0 Mbits/sec 0.092 ms 1290/8972 (14%) +[UE1] [2025-07-19 14:14:38] [ 5] 83.00-84.00 sec 12.8 MBytes 107 Mbits/sec 0.105 ms 2504/11755 (21%) +[UE1] [2025-07-19 14:14:39] [ 5] 84.00-85.00 sec 12.0 MBytes 101 Mbits/sec 0.139 ms 1550/10275 (15%) +[UE1] [2025-07-19 14:14:40] [ 5] 85.00-86.00 sec 12.3 MBytes 103 Mbits/sec 0.078 ms 1634/10564 (15%) +[UE1] [2025-07-19 14:14:41] [ 5] 86.00-87.00 sec 11.4 MBytes 95.6 Mbits/sec 0.076 ms 1381/9634 (14%) +[UE1] [2025-07-19 14:14:42] [ 5] 87.00-88.00 sec 12.0 MBytes 101 Mbits/sec 0.071 ms 1959/10651 (18%) +[UE1] [2025-07-19 14:14:43] [ 5] 88.00-89.00 sec 11.6 MBytes 97.1 Mbits/sec 0.085 ms 1461/9839 (15%) +[UE1] [2025-07-19 14:14:44] [ 5] 89.00-90.00 sec 12.0 MBytes 101 Mbits/sec 0.092 ms 2233/10928 (20%) +[UE1] [2025-07-19 14:14:45] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1530/10347 (15%) +[UE1] [2025-07-19 14:14:46] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1497/10324 (15%) +[UE1] [2025-07-19 14:14:47] [ 5] 92.00-93.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1600/10294 (16%) +[UE1] [2025-07-19 14:14:48] [ 5] 93.00-94.00 sec 12.8 MBytes 107 Mbits/sec 0.132 ms 1512/10786 (14%) +[UE1] [2025-07-19 14:14:49] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.119 ms 1517/10328 (15%) +[UE1] [2025-07-19 14:14:50] [ 5] 95.00-96.00 sec 12.0 MBytes 101 Mbits/sec 0.082 ms 1538/10222 (15%) +[UE1] [2025-07-19 14:14:51] [ 5] 96.00-97.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1473/10309 (14%) +[UE1] [2025-07-19 14:14:52] [ 5] 97.00-98.00 sec 12.0 MBytes 100 Mbits/sec 0.122 ms 1363/10039 (14%) +[UE1] [2025-07-19 14:14:53] [ 5] 98.00-99.00 sec 11.2 MBytes 93.8 Mbits/sec 0.121 ms 1608/9707 (17%) +[UE1] [2025-07-19 14:14:55] [ 5] 99.00-100.00 sec 11.1 MBytes 93.2 Mbits/sec 0.085 ms 2627/10675 (25%) +[UE1] [2025-07-19 14:14:56] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.248 ms 0/2704 (0%) +[UE1] [2025-07-19 14:14:57] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2590 (0%) +[UE1] [2025-07-19 14:14:58] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2590 (0%) +[UE1] [2025-07-19 14:14:59] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.257 ms 0/2586 (0%) +[UE1] [2025-07-19 14:15:00] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2591 (0%) +[UE1] [2025-07-19 14:15:01] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2591 (0%) +[UE1] [2025-07-19 14:15:02] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:03] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2591 (0%) +[UE1] [2025-07-19 14:15:04] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:05] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:06] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:07] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.193 ms 0/2587 (0%) +[UE1] [2025-07-19 14:15:08] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.264 ms 0/2593 (0%) +[UE1] [2025-07-19 14:15:09] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:10] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:11] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE1] [2025-07-19 14:15:12] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.306 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:13] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.215 ms 0/2588 (0%) +[UE1] [2025-07-19 14:15:14] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2591 (0%) +[UE1] [2025-07-19 14:15:15] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:16] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:17] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:18] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:19] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.333 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:20] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:21] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:22] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:23] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:24] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:25] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:26] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:27] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:28] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.175 ms 0/2587 (0%) +[UE1] [2025-07-19 14:15:29] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2592 (0%) +[UE1] [2025-07-19 14:15:30] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:31] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:32] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:33] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:34] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:35] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:36] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.196 ms 0/2588 (0%) +[UE1] [2025-07-19 14:15:37] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:38] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:39] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:40] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:41] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.286 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:42] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.111 ms 0/2592 (0%) +[UE1] [2025-07-19 14:15:43] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:44] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:45] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:46] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.335 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:47] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:48] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.214 ms 0/2588 (0%) +[UE1] [2025-07-19 14:15:49] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2592 (0%) +[UE1] [2025-07-19 14:15:50] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2587 (0%) +[UE1] [2025-07-19 14:15:51] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2592 (0%) +[UE1] [2025-07-19 14:15:52] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:53] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:54] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2591 (0%) +[UE1] [2025-07-19 14:15:55] [ 5] 59.00-60.00 sec 3.57 MBytes 30.0 Mbits/sec 0.240 ms 0/2588 (0%) +[UE1] [2025-07-19 14:15:56] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2592 (0%) +[UE1] [2025-07-19 14:15:57] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE1] [2025-07-19 14:15:58] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2590 (0%) +[UE1] [2025-07-19 14:15:59] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.288 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:00] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2589 (0%) +[UE1] [2025-07-19 14:16:01] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:02] [ 5] 66.00-67.00 sec 3.57 MBytes 30.0 Mbits/sec 0.277 ms 0/2587 (0%) +[UE1] [2025-07-19 14:16:03] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2593 (0%) +[UE1] [2025-07-19 14:16:04] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2589 (0%) +[UE1] [2025-07-19 14:16:05] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:06] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:07] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:08] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:09] [ 5] 73.00-74.00 sec 3.57 MBytes 29.9 Mbits/sec 0.233 ms 0/2585 (0%) +[UE1] [2025-07-19 14:16:10] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2594 (0%) +[UE1] [2025-07-19 14:16:11] [ 5] 75.00-76.00 sec 3.57 MBytes 29.9 Mbits/sec 0.180 ms 0/2585 (0%) +[UE1] [2025-07-19 14:16:12] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2593 (0%) +[UE1] [2025-07-19 14:16:13] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2591 (0%) +[UE1] [2025-07-19 14:16:14] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.232 ms 0/2588 (0%) +[UE1] [2025-07-19 14:16:15] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2592 (0%) +[UE1] [2025-07-19 14:16:16] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:17] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:18] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.234 ms 0/2587 (0%) +[UE1] [2025-07-19 14:16:19] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2592 (0%) +[UE1] [2025-07-19 14:16:20] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:21] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:22] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.161 ms 0/2588 (0%) +[UE1] [2025-07-19 14:16:23] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2589 (0%) +[UE1] [2025-07-19 14:16:24] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2592 (0%) +[UE1] [2025-07-19 14:16:25] [ 5] 89.00-90.00 sec 3.57 MBytes 30.0 Mbits/sec 0.249 ms 0/2587 (0%) +[UE1] [2025-07-19 14:16:26] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2593 (0%) +[UE1] [2025-07-19 14:16:27] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.221 ms 0/2588 (0%) +[UE1] [2025-07-19 14:16:28] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2591 (0%) +[UE1] [2025-07-19 14:16:29] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:30] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:31] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:32] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2589 (0%) +[UE1] [2025-07-19 14:16:33] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:34] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2590 (0%) +[UE1] [2025-07-19 14:16:35] [ 5] 99.00-100.00 sec 3.57 MBytes 30.0 Mbits/sec 0.239 ms 0/2587 (0%) +[UE1] [2025-07-19 14:16:37] [ 5] 0.00-1.00 sec 9.47 MBytes 79.5 Mbits/sec 0.095 ms 0/6860 (0%) +[UE1] [2025-07-19 14:16:38] [ 5] 1.00-2.00 sec 12.0 MBytes 100 Mbits/sec 0.163 ms 0/8666 (0%) +[UE1] [2025-07-19 14:16:39] [ 5] 2.00-3.00 sec 11.4 MBytes 95.5 Mbits/sec 0.085 ms 1047/9294 (11%) +[UE1] [2025-07-19 14:16:40] [ 5] 3.00-4.00 sec 12.0 MBytes 101 Mbits/sec 0.122 ms 1630/10322 (16%) +[UE1] [2025-07-19 14:16:41] [ 5] 4.00-5.00 sec 10.8 MBytes 90.5 Mbits/sec 0.083 ms 1277/9088 (14%) +[UE1] [2025-07-19 14:16:42] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 2495/11318 (22%) +[UE1] [2025-07-19 14:16:43] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1668/10493 (16%) +[UE1] [2025-07-19 14:16:44] [ 5] 7.00-8.00 sec 12.0 MBytes 101 Mbits/sec 0.090 ms 1530/10221 (15%) +[UE1] [2025-07-19 14:16:45] [ 5] 8.00-9.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1637/10452 (16%) +[UE1] [2025-07-19 14:16:46] [ 5] 9.00-10.00 sec 11.4 MBytes 95.7 Mbits/sec 0.091 ms 1696/9957 (17%) +[UE1] [2025-07-19 14:16:47] [ 5] 10.00-11.00 sec 12.0 MBytes 101 Mbits/sec 0.104 ms 2067/10754 (19%) +[UE1] [2025-07-19 14:16:48] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1571/10384 (15%) +[UE1] [2025-07-19 14:16:49] [ 5] 12.00-13.00 sec 10.8 MBytes 90.7 Mbits/sec 0.108 ms 1444/9272 (16%) +[UE1] [2025-07-19 14:16:50] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 2723/11544 (24%) +[UE1] [2025-07-19 14:16:51] [ 5] 14.00-15.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 1670/10369 (16%) +[UE1] [2025-07-19 14:16:52] [ 5] 15.00-16.00 sec 12.2 MBytes 102 Mbits/sec 0.094 ms 1584/10402 (15%) +[UE1] [2025-07-19 14:16:53] [ 5] 16.00-17.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1471/10148 (14%) +[UE1] [2025-07-19 14:16:54] [ 5] 17.00-18.00 sec 12.8 MBytes 107 Mbits/sec 0.116 ms 1565/10823 (14%) +[UE1] [2025-07-19 14:16:55] [ 5] 18.00-19.00 sec 12.2 MBytes 102 Mbits/sec 0.061 ms 1404/10232 (14%) +[UE1] [2025-07-19 14:16:56] [ 5] 19.00-20.00 sec 11.4 MBytes 95.7 Mbits/sec 0.079 ms 1530/9790 (16%) +[UE1] [2025-07-19 14:16:57] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1851/10680 (17%) +[UE1] [2025-07-19 14:16:58] [ 5] 21.00-22.00 sec 12.8 MBytes 107 Mbits/sec 0.112 ms 1511/10767 (14%) +[UE1] [2025-07-19 14:16:59] [ 5] 22.00-23.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 1439/10117 (14%) +[UE1] [2025-07-19 14:17:00] [ 5] 23.00-24.00 sec 11.6 MBytes 97.4 Mbits/sec 0.122 ms 1562/9967 (16%) +[UE1] [2025-07-19 14:17:01] [ 5] 24.00-25.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1690/10367 (16%) +[UE1] [2025-07-19 14:17:02] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1704/10529 (16%) +[UE1] [2025-07-19 14:17:03] [ 5] 26.00-27.00 sec 12.0 MBytes 101 Mbits/sec 0.109 ms 1475/10174 (14%) +[UE1] [2025-07-19 14:17:04] [ 5] 27.00-28.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1571/10385 (15%) +[UE1] [2025-07-19 14:17:05] [ 5] 28.00-29.00 sec 12.8 MBytes 107 Mbits/sec 0.120 ms 1636/10900 (15%) +[UE1] [2025-07-19 14:17:06] [ 5] 29.00-30.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1591/10417 (15%) +[UE1] [2025-07-19 14:17:07] [ 5] 30.00-31.00 sec 11.5 MBytes 96.5 Mbits/sec 0.128 ms 1502/9828 (15%) +[UE1] [2025-07-19 14:17:08] [ 5] 31.00-32.00 sec 12.7 MBytes 106 Mbits/sec 0.078 ms 1672/10851 (15%) +[UE1] [2025-07-19 14:17:09] [ 5] 32.00-33.00 sec 11.6 MBytes 97.3 Mbits/sec 0.097 ms 1489/9888 (15%) +[UE1] [2025-07-19 14:17:10] [ 5] 33.00-34.00 sec 12.0 MBytes 101 Mbits/sec 0.103 ms 1643/10327 (16%) +[UE1] [2025-07-19 14:17:11] [ 5] 34.00-35.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1595/10272 (16%) +[UE1] [2025-07-19 14:17:12] [ 5] 35.00-36.00 sec 12.8 MBytes 107 Mbits/sec 0.103 ms 1686/10955 (15%) +[UE1] [2025-07-19 14:17:13] [ 5] 36.00-37.00 sec 11.4 MBytes 95.4 Mbits/sec 0.125 ms 1445/9683 (15%) +[UE1] [2025-07-19 14:17:14] [ 5] 37.00-38.00 sec 12.8 MBytes 107 Mbits/sec 0.069 ms 1762/11023 (16%) +[UE1] [2025-07-19 14:17:15] [ 5] 38.00-39.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1502/10342 (15%) +[UE1] [2025-07-19 14:17:16] [ 5] 39.00-40.00 sec 10.8 MBytes 90.4 Mbits/sec 0.090 ms 1683/9491 (18%) +[UE1] [2025-07-19 14:17:17] [ 5] 40.00-41.00 sec 12.0 MBytes 101 Mbits/sec 0.102 ms 2111/10792 (20%) +[UE1] [2025-07-19 14:17:18] [ 5] 41.00-42.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1658/10488 (16%) +[UE1] [2025-07-19 14:17:19] [ 5] 42.00-43.00 sec 10.8 MBytes 90.5 Mbits/sec 0.100 ms 1606/9422 (17%) +[UE1] [2025-07-19 14:17:20] [ 5] 43.00-44.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 2587/11305 (23%) +[UE1] [2025-07-19 14:17:21] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.194 ms 1574/10412 (15%) +[UE1] [2025-07-19 14:17:22] [ 5] 45.00-46.00 sec 12.0 MBytes 100 Mbits/sec 0.094 ms 1510/10184 (15%) +[UE1] [2025-07-19 14:17:23] [ 5] 46.00-47.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1596/10422 (15%) +[UE1] [2025-07-19 14:17:24] [ 5] 47.00-48.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1683/10521 (16%) +[UE1] [2025-07-19 14:17:25] [ 5] 48.00-49.00 sec 12.0 MBytes 100 Mbits/sec 0.102 ms 1457/10132 (14%) +[UE1] [2025-07-19 14:17:26] [ 5] 49.00-50.00 sec 11.4 MBytes 95.7 Mbits/sec 0.120 ms 1498/9761 (15%) +[UE1] [2025-07-19 14:17:27] [ 5] 50.00-51.00 sec 12.8 MBytes 107 Mbits/sec 0.095 ms 2152/11410 (19%) +[UE1] [2025-07-19 14:17:28] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1360/10177 (13%) +[UE1] [2025-07-19 14:17:29] [ 5] 52.00-53.00 sec 12.2 MBytes 102 Mbits/sec 0.120 ms 1648/10475 (16%) +[UE1] [2025-07-19 14:17:30] [ 5] 53.00-54.00 sec 11.4 MBytes 95.6 Mbits/sec 0.093 ms 1584/9837 (16%) +[UE1] [2025-07-19 14:17:31] [ 5] 54.00-55.00 sec 11.4 MBytes 95.6 Mbits/sec 0.089 ms 2001/10255 (20%) +[UE1] [2025-07-19 14:17:32] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 2113/10948 (19%) +[UE1] [2025-07-19 14:17:33] [ 5] 56.00-57.00 sec 10.6 MBytes 88.8 Mbits/sec 0.102 ms 1383/9052 (15%) +[UE1] [2025-07-19 14:17:34] [ 5] 57.00-58.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 2707/11526 (23%) +[UE1] [2025-07-19 14:17:35] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1437/10265 (14%) +[UE1] [2025-07-19 14:17:36] [ 5] 59.00-60.00 sec 12.8 MBytes 107 Mbits/sec 0.082 ms 1614/10876 (15%) +[UE1] [2025-07-19 14:17:37] [ 5] 60.00-61.00 sec 12.0 MBytes 101 Mbits/sec 0.116 ms 1435/10114 (14%) +[UE1] [2025-07-19 14:17:38] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1376/10203 (13%) +[UE1] [2025-07-19 14:17:39] [ 5] 62.00-63.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1555/10243 (15%) +[UE1] [2025-07-19 14:17:40] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1493/10317 (14%) +[UE1] [2025-07-19 14:17:41] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1607/10434 (15%) +[UE1] [2025-07-19 14:17:42] [ 5] 65.00-66.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1700/10388 (16%) +[UE1] [2025-07-19 14:17:43] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1392/10215 (14%) +[UE1] [2025-07-19 14:17:44] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.064 ms 1714/10542 (16%) +[UE1] [2025-07-19 14:17:45] [ 5] 68.00-69.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1446/10133 (14%) +[UE1] [2025-07-19 14:17:46] [ 5] 69.00-70.00 sec 11.4 MBytes 95.6 Mbits/sec 0.081 ms 1352/9603 (14%) +[UE1] [2025-07-19 14:17:47] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 2590/11423 (23%) +[UE1] [2025-07-19 14:17:48] [ 5] 71.00-72.00 sec 12.0 MBytes 101 Mbits/sec 0.098 ms 1502/10194 (15%) +[UE1] [2025-07-19 14:17:49] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.117 ms 1512/10325 (15%) +[UE1] [2025-07-19 14:17:50] [ 5] 73.00-74.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1539/10366 (15%) +[UE1] [2025-07-19 14:17:51] [ 5] 74.00-75.00 sec 11.4 MBytes 95.5 Mbits/sec 0.080 ms 1558/9801 (16%) +[UE1] [2025-07-19 14:17:52] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 2133/10966 (19%) +[UE1] [2025-07-19 14:17:53] [ 5] 76.00-77.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1765/10444 (17%) +[UE1] [2025-07-19 14:17:54] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.130 ms 1524/10351 (15%) +[UE1] [2025-07-19 14:17:55] [ 5] 78.00-79.00 sec 12.0 MBytes 101 Mbits/sec 0.018 ms 1483/10170 (15%) +[UE1] [2025-07-19 14:17:56] [ 5] 79.00-80.00 sec 11.6 MBytes 97.2 Mbits/sec 0.082 ms 1501/9894 (15%) +[UE1] [2025-07-19 14:17:57] [ 5] 80.00-81.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 2371/11055 (21%) +[UE1] [2025-07-19 14:17:58] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.117 ms 1422/10257 (14%) +[UE1] [2025-07-19 14:17:59] [ 5] 82.00-83.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1574/10250 (15%) +[UE1] [2025-07-19 14:18:00] [ 5] 83.00-84.00 sec 11.6 MBytes 97.3 Mbits/sec 0.082 ms 1621/10018 (16%) +[UE1] [2025-07-19 14:18:01] [ 5] 84.00-85.00 sec 12.0 MBytes 100 Mbits/sec 0.074 ms 1894/10568 (18%) +[UE1] [2025-07-19 14:18:02] [ 5] 85.00-86.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1742/10569 (16%) +[UE1] [2025-07-19 14:18:03] [ 5] 86.00-87.00 sec 12.0 MBytes 101 Mbits/sec 0.083 ms 1599/10293 (16%) +[UE1] [2025-07-19 14:18:04] [ 5] 87.00-88.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1821/10639 (17%) +[UE1] [2025-07-19 14:18:05] [ 5] 88.00-89.00 sec 12.2 MBytes 102 Mbits/sec 0.120 ms 1339/10165 (13%) +[UE1] [2025-07-19 14:18:06] [ 5] 89.00-90.00 sec 10.8 MBytes 90.6 Mbits/sec 0.066 ms 1395/9219 (15%) +[UE1] [2025-07-19 14:18:07] [ 5] 90.00-91.00 sec 12.6 MBytes 106 Mbits/sec 0.076 ms 2612/11725 (22%) +[UE1] [2025-07-19 14:18:08] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1313/10145 (13%) +[UE1] [2025-07-19 14:18:09] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1522/10345 (15%) +[UE1] [2025-07-19 14:18:10] [ 5] 93.00-94.00 sec 12.0 MBytes 101 Mbits/sec 0.082 ms 1602/10286 (16%) +[UE1] [2025-07-19 14:18:11] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1794/10626 (17%) +[UE1] [2025-07-19 14:18:12] [ 5] 95.00-96.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1560/10239 (15%) +[UE1] [2025-07-19 14:18:13] [ 5] 96.00-97.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1427/10254 (14%) +[UE1] [2025-07-19 14:18:14] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.099 ms 1555/10387 (15%) +[UE1] [2025-07-19 14:18:15] [ 5] 98.00-99.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 1791/10478 (17%) +[UE1] [2025-07-19 14:18:17] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1610/10423 (15%) +[UE1] [2025-07-19 14:18:18] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.192 ms 0/2712 (0%) +[UE1] [2025-07-19 14:18:19] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.217 ms 0/2587 (0%) +[UE1] [2025-07-19 14:18:20] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.268 ms 0/2587 (0%) +[UE1] [2025-07-19 14:18:21] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2593 (0%) +[UE1] [2025-07-19 14:18:22] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:23] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:24] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:25] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.271 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:26] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2591 (0%) +[UE1] [2025-07-19 14:18:27] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2591 (0%) +[UE1] [2025-07-19 14:18:28] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:29] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.191 ms 0/2587 (0%) +[UE1] [2025-07-19 14:18:30] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:31] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2591 (0%) +[UE1] [2025-07-19 14:18:32] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:33] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:34] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:35] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:36] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2592 (0%) +[UE1] [2025-07-19 14:18:37] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.261 ms 0/2588 (0%) +[UE1] [2025-07-19 14:18:38] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:39] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:40] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.279 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:41] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2592 (0%) +[UE1] [2025-07-19 14:18:42] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.211 ms 0/2588 (0%) +[UE1] [2025-07-19 14:18:43] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2593 (0%) +[UE1] [2025-07-19 14:18:44] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.134 ms 0/2587 (0%) +[UE1] [2025-07-19 14:18:45] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.181 ms 0/2587 (0%) +[UE1] [2025-07-19 14:18:46] [ 5] 28.00-29.00 sec 3.58 MBytes 30.1 Mbits/sec 0.130 ms 0/2595 (0%) +[UE1] [2025-07-19 14:18:47] [ 5] 29.00-30.00 sec 3.57 MBytes 30.0 Mbits/sec 0.284 ms 0/2587 (0%) +[UE1] [2025-07-19 14:18:48] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2591 (0%) +[UE1] [2025-07-19 14:18:49] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:50] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:51] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:52] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:53] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:54] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.133 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:55] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE1] [2025-07-19 14:18:56] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2589 (0%) +[UE1] [2025-07-19 14:18:57] [ 5] 39.00-40.00 sec 3.57 MBytes 30.0 Mbits/sec 0.147 ms 0/2587 (0%) +[UE1] [2025-07-19 14:18:58] [ 5] 40.00-41.00 sec 3.58 MBytes 30.1 Mbits/sec 0.333 ms 0/2595 (0%) +[UE1] [2025-07-19 14:18:59] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:00] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2588 (0%) +[UE1] [2025-07-19 14:19:01] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:02] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:03] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:04] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:05] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:06] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:07] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2591 (0%) +[UE1] [2025-07-19 14:19:08] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:09] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2592 (0%) +[UE1] [2025-07-19 14:19:10] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.130 ms 0/2587 (0%) +[UE1] [2025-07-19 14:19:11] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:12] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2592 (0%) +[UE1] [2025-07-19 14:19:13] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:14] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2588 (0%) +[UE1] [2025-07-19 14:19:15] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:16] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2593 (0%) +[UE1] [2025-07-19 14:19:17] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:18] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.180 ms 0/2587 (0%) +[UE1] [2025-07-19 14:19:19] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2591 (0%) +[UE1] [2025-07-19 14:19:20] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:21] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:22] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:23] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:24] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:25] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2591 (0%) +[UE1] [2025-07-19 14:19:26] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:27] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:28] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:29] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:30] [ 5] 72.00-73.00 sec 3.50 MBytes 29.4 Mbits/sec 0.208 ms 53/2590 (2%) +[UE1] [2025-07-19 14:19:31] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:32] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:33] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.371 ms 0/2587 (0%) +[UE1] [2025-07-19 14:19:34] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2592 (0%) +[UE1] [2025-07-19 14:19:35] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2591 (0%) +[UE1] [2025-07-19 14:19:36] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:37] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2592 (0%) +[UE1] [2025-07-19 14:19:38] [ 5] 80.00-81.00 sec 3.57 MBytes 30.0 Mbits/sec 0.155 ms 0/2588 (0%) +[UE1] [2025-07-19 14:19:39] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:40] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2592 (0%) +[UE1] [2025-07-19 14:19:41] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:42] [ 5] 84.00-85.00 sec 3.57 MBytes 30.0 Mbits/sec 0.168 ms 0/2587 (0%) +[UE1] [2025-07-19 14:19:43] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:44] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.291 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:45] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:46] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:47] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2591 (0%) +[UE1] [2025-07-19 14:19:48] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.290 ms 0/2591 (0%) +[UE1] [2025-07-19 14:19:49] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.203 ms 0/2588 (0%) +[UE1] [2025-07-19 14:19:50] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:51] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2592 (0%) +[UE1] [2025-07-19 14:19:52] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.191 ms 0/2588 (0%) +[UE1] [2025-07-19 14:19:53] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.120 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:54] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE1] [2025-07-19 14:19:55] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:56] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2590 (0%) +[UE1] [2025-07-19 14:19:57] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2592 (0%) +[UE1] [2025-07-19 14:20:00] [ 5] 0.00-1.00 sec 9.04 MBytes 75.8 Mbits/sec 0.121 ms 0/6547 (0%) +[UE1] [2025-07-19 14:20:01] [ 5] 1.00-2.00 sec 11.9 MBytes 99.8 Mbits/sec 0.190 ms 0/8619 (0%) +[UE1] [2025-07-19 14:20:02] [ 5] 2.00-3.00 sec 9.82 MBytes 82.4 Mbits/sec 0.076 ms 485/7594 (6.4%) +[UE1] [2025-07-19 14:20:03] [ 5] 3.00-4.00 sec 12.0 MBytes 101 Mbits/sec 0.242 ms 2773/11486 (24%) +[UE1] [2025-07-19 14:20:03] [ 5] 4.00-5.00 sec 11.9 MBytes 100 Mbits/sec 0.098 ms 1356/10005 (14%) +[UE1] [2025-07-19 14:20:05] [ 5] 5.00-6.00 sec 11.8 MBytes 98.6 Mbits/sec 0.090 ms 2155/10672 (20%) +[UE1] [2025-07-19 14:20:06] [ 5] 6.00-7.00 sec 12.6 MBytes 106 Mbits/sec 0.095 ms 1531/10637 (14%) +[UE1] [2025-07-19 14:20:07] [ 5] 7.00-8.00 sec 12.0 MBytes 101 Mbits/sec 0.083 ms 1525/10207 (15%) +[UE1] [2025-07-19 14:20:07] [ 5] 8.00-9.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 1711/10404 (16%) +[UE1] [2025-07-19 14:20:09] [ 5] 9.00-10.00 sec 10.4 MBytes 87.4 Mbits/sec 0.091 ms 1575/9121 (17%) +[UE1] [2025-07-19 14:20:10] [ 5] 10.00-11.00 sec 11.9 MBytes 100 Mbits/sec 0.113 ms 2572/11225 (23%) +[UE1] [2025-07-19 14:20:11] [ 5] 11.00-12.00 sec 12.6 MBytes 106 Mbits/sec 0.080 ms 1783/10905 (16%) +[UE1] [2025-07-19 14:20:11] [ 5] 12.00-13.00 sec 12.0 MBytes 100 Mbits/sec 0.110 ms 1458/10115 (14%) +[UE1] [2025-07-19 14:20:13] [ 5] 13.00-14.00 sec 10.4 MBytes 87.5 Mbits/sec 0.111 ms 1865/9415 (20%) +[UE1] [2025-07-19 14:20:13] [ 5] 14.00-15.00 sec 12.6 MBytes 105 Mbits/sec 0.101 ms 2283/11387 (20%) +[UE1] [2025-07-19 14:20:14] [ 5] 15.00-16.00 sec 12.0 MBytes 101 Mbits/sec 0.087 ms 1656/10343 (16%) +[UE1] [2025-07-19 14:20:16] [ 5] 16.00-17.00 sec 12.0 MBytes 101 Mbits/sec 0.086 ms 1494/10183 (15%) +[UE1] [2025-07-19 14:20:16] [ 5] 17.00-18.00 sec 12.5 MBytes 105 Mbits/sec 0.117 ms 1677/10763 (16%) +[UE1] [2025-07-19 14:20:18] [ 5] 18.00-19.00 sec 11.2 MBytes 94.1 Mbits/sec 0.104 ms 1360/9486 (14%) +[UE1] [2025-07-19 14:20:19] [ 5] 19.00-20.00 sec 11.2 MBytes 93.7 Mbits/sec 0.114 ms 2640/10728 (25%) +[UE1] [2025-07-19 14:20:19] [ 5] 20.00-21.00 sec 12.6 MBytes 105 Mbits/sec 0.103 ms 1608/10713 (15%) +[UE1] [2025-07-19 14:20:21] [ 5] 21.00-22.00 sec 11.2 MBytes 94.2 Mbits/sec 0.087 ms 1373/9503 (14%) +[UE1] [2025-07-19 14:20:22] [ 5] 22.00-23.00 sec 12.0 MBytes 100 Mbits/sec 0.121 ms 2223/10882 (20%) +[UE1] [2025-07-19 14:20:23] [ 5] 23.00-24.00 sec 11.8 MBytes 99.2 Mbits/sec 0.107 ms 1759/10319 (17%) +[UE1] [2025-07-19 14:20:24] [ 5] 24.00-25.00 sec 12.6 MBytes 105 Mbits/sec 0.117 ms 1724/10814 (16%) +[UE1] [2025-07-19 14:20:25] [ 5] 25.00-26.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1555/10231 (15%) +[UE1] [2025-07-19 14:20:25] [ 5] 26.00-27.00 sec 12.0 MBytes 100 Mbits/sec 0.077 ms 1656/10328 (16%) +[UE1] [2025-07-19 14:20:27] [ 5] 27.00-28.00 sec 11.8 MBytes 99.1 Mbits/sec 0.079 ms 1520/10079 (15%) +[UE1] [2025-07-19 14:20:28] [ 5] 28.00-29.00 sec 12.0 MBytes 100 Mbits/sec 0.084 ms 1793/10463 (17%) +[UE1] [2025-07-19 14:20:28] [ 5] 29.00-30.00 sec 12.0 MBytes 100 Mbits/sec 0.082 ms 1691/10348 (16%) +[UE1] [2025-07-19 14:20:29] [ 5] 30.00-31.00 sec 11.8 MBytes 99.3 Mbits/sec 0.097 ms 1602/10176 (16%) +[UE1] [2025-07-19 14:20:31] [ 5] 31.00-32.00 sec 11.9 MBytes 100 Mbits/sec 0.115 ms 1848/10496 (18%) +[UE1] [2025-07-19 14:20:32] [ 5] 32.00-33.00 sec 11.8 MBytes 99.1 Mbits/sec 0.098 ms 1672/10226 (16%) +[UE1] [2025-07-19 14:20:33] [ 5] 33.00-34.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1868/10560 (18%) +[UE1] [2025-07-19 14:20:34] [ 5] 34.00-35.00 sec 12.5 MBytes 105 Mbits/sec 0.100 ms 1639/10719 (15%) +[UE1] [2025-07-19 14:20:34] [ 5] 35.00-36.00 sec 10.4 MBytes 87.6 Mbits/sec 0.079 ms 1400/8963 (16%) +[UE1] [2025-07-19 14:20:36] [ 5] 36.00-37.00 sec 12.0 MBytes 100 Mbits/sec 0.085 ms 2718/11375 (24%) +[UE1] [2025-07-19 14:20:37] [ 5] 37.00-38.00 sec 12.0 MBytes 101 Mbits/sec 0.093 ms 1771/10450 (17%) +[UE1] [2025-07-19 14:20:38] [ 5] 38.00-39.00 sec 11.8 MBytes 99.0 Mbits/sec 0.094 ms 1550/10100 (15%) +[UE1] [2025-07-19 14:20:39] [ 5] 39.00-40.00 sec 12.6 MBytes 105 Mbits/sec 0.071 ms 1760/10857 (16%) +[UE1] [2025-07-19 14:20:40] [ 5] 40.00-41.00 sec 12.0 MBytes 101 Mbits/sec 0.090 ms 1533/10213 (15%) +[UE1] [2025-07-19 14:20:41] [ 5] 41.00-42.00 sec 11.5 MBytes 96.2 Mbits/sec 0.098 ms 1668/9968 (17%) +[UE1] [2025-07-19 14:20:41] [ 5] 42.00-43.00 sec 11.9 MBytes 100 Mbits/sec 0.130 ms 1926/10577 (18%) +[UE1] [2025-07-19 14:20:43] [ 5] 43.00-44.00 sec 12.3 MBytes 103 Mbits/sec 0.121 ms 1755/10683 (16%) +[UE1] [2025-07-19 14:20:43] [ 5] 44.00-45.00 sec 11.8 MBytes 99.0 Mbits/sec 0.085 ms 1600/10147 (16%) +[UE1] [2025-07-19 14:20:44] [ 5] 45.00-46.00 sec 12.0 MBytes 101 Mbits/sec 1.108 ms 1476/10175 (15%) +[UE1] [2025-07-19 14:20:46] [ 5] 46.00-47.00 sec 11.8 MBytes 99.3 Mbits/sec 0.119 ms 1510/10082 (15%) +[UE1] [2025-07-19 14:20:47] [ 5] 47.00-48.00 sec 11.9 MBytes 100 Mbits/sec 0.070 ms 2226/10855 (21%) +[UE1] [2025-07-19 14:20:48] [ 5] 48.00-49.00 sec 12.0 MBytes 100 Mbits/sec 0.077 ms 1628/10296 (16%) +[UE1] [2025-07-19 14:20:48] [ 5] 49.00-50.00 sec 12.6 MBytes 106 Mbits/sec 0.091 ms 1571/10687 (15%) +[UE1] [2025-07-19 14:20:50] [ 5] 50.00-51.00 sec 11.8 MBytes 98.7 Mbits/sec 0.077 ms 1595/10118 (16%) +[UE1] [2025-07-19 14:20:51] [ 5] 51.00-52.00 sec 12.0 MBytes 101 Mbits/sec 0.126 ms 1620/10306 (16%) +[UE1] [2025-07-19 14:20:52] [ 5] 52.00-53.00 sec 11.8 MBytes 99.1 Mbits/sec 0.080 ms 1608/10160 (16%) +[UE1] [2025-07-19 14:20:53] [ 5] 53.00-54.00 sec 10.6 MBytes 88.8 Mbits/sec 0.077 ms 1487/9157 (16%) +[UE1] [2025-07-19 14:20:54] [ 5] 54.00-55.00 sec 12.0 MBytes 100 Mbits/sec 0.079 ms 2927/11602 (25%) +[UE1] [2025-07-19 14:20:55] [ 5] 55.00-56.00 sec 12.0 MBytes 100 Mbits/sec 0.072 ms 1615/10290 (16%) +[UE1] [2025-07-19 14:20:56] [ 5] 56.00-57.00 sec 11.2 MBytes 94.0 Mbits/sec 0.079 ms 1520/9631 (16%) +[UE1] [2025-07-19 14:20:57] [ 5] 57.00-58.00 sec 12.8 MBytes 107 Mbits/sec 0.074 ms 2497/11758 (21%) +[UE1] [2025-07-19 14:20:57] [ 5] 58.00-59.00 sec 11.6 MBytes 97.1 Mbits/sec 0.112 ms 1439/9824 (15%) +[UE1] [2025-07-19 14:20:59] [ 5] 59.00-60.00 sec 10.6 MBytes 89.1 Mbits/sec 0.165 ms 1574/9266 (17%) +[UE1] [2025-07-19 14:21:00] [ 5] 60.00-61.00 sec 12.6 MBytes 105 Mbits/sec 0.095 ms 2546/11641 (22%) +[UE1] [2025-07-19 14:21:00] [ 5] 61.00-62.00 sec 11.2 MBytes 94.1 Mbits/sec 0.083 ms 1611/9731 (17%) +[UE1] [2025-07-19 14:21:02] [ 5] 62.00-63.00 sec 12.5 MBytes 105 Mbits/sec 0.083 ms 1871/10955 (17%) +[UE1] [2025-07-19 14:21:03] [ 5] 63.00-64.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 1677/10367 (16%) +[UE1] [2025-07-19 14:21:04] [ 5] 64.00-65.00 sec 11.2 MBytes 94.1 Mbits/sec 0.093 ms 1552/9671 (16%) +[UE1] [2025-07-19 14:21:05] [ 5] 65.00-66.00 sec 12.5 MBytes 105 Mbits/sec 0.099 ms 1935/11020 (18%) +[UE1] [2025-07-19 14:21:05] [ 5] 66.00-67.00 sec 10.6 MBytes 89.3 Mbits/sec 0.074 ms 1349/9058 (15%) +[UE1] [2025-07-19 14:21:06] [ 5] 67.00-68.00 sec 12.5 MBytes 105 Mbits/sec 0.041 ms 2632/11718 (22%) +[UE1] [2025-07-19 14:21:08] [ 5] 68.00-69.00 sec 12.0 MBytes 101 Mbits/sec 0.071 ms 1632/10318 (16%) +[UE1] [2025-07-19 14:21:09] [ 5] 69.00-70.00 sec 10.6 MBytes 88.9 Mbits/sec 0.098 ms 1543/9214 (17%) +[UE1] [2025-07-19 14:21:10] [ 5] 70.00-71.00 sec 12.6 MBytes 105 Mbits/sec 0.087 ms 2665/11764 (23%) +[UE1] [2025-07-19 14:21:11] [ 5] 71.00-72.00 sec 11.8 MBytes 99.3 Mbits/sec 0.096 ms 1428/9999 (14%) +[UE1] [2025-07-19 14:21:12] [ 5] 72.00-73.00 sec 12.0 MBytes 100 Mbits/sec 0.070 ms 1571/10231 (15%) +[UE1] [2025-07-19 14:21:13] [ 5] 73.00-74.00 sec 11.8 MBytes 98.8 Mbits/sec 0.086 ms 1669/10201 (16%) +[UE1] [2025-07-19 14:21:14] [ 5] 74.00-75.00 sec 12.6 MBytes 105 Mbits/sec 0.077 ms 1723/10827 (16%) +[UE1] [2025-07-19 14:21:15] [ 5] 75.00-76.00 sec 11.2 MBytes 94.0 Mbits/sec 0.091 ms 1561/9672 (16%) +[UE1] [2025-07-19 14:21:16] [ 5] 76.00-77.00 sec 12.6 MBytes 105 Mbits/sec 0.085 ms 1988/11095 (18%) +[UE1] [2025-07-19 14:21:17] [ 5] 77.00-78.00 sec 12.0 MBytes 101 Mbits/sec 0.110 ms 1596/10272 (16%) +[UE1] [2025-07-19 14:21:17] [ 5] 78.00-79.00 sec 11.8 MBytes 99.1 Mbits/sec 0.105 ms 1553/10111 (15%) +[UE1] [2025-07-19 14:21:19] [ 5] 79.00-80.00 sec 11.9 MBytes 100 Mbits/sec 0.097 ms 1613/10259 (16%) +[UE1] [2025-07-19 14:21:20] [ 5] 80.00-81.00 sec 12.0 MBytes 101 Mbits/sec 0.511 ms 1625/10351 (16%) +[UE1] [2025-07-19 14:21:21] [ 5] 81.00-82.00 sec 12.5 MBytes 105 Mbits/sec 0.109 ms 1748/10820 (16%) +[UE1] [2025-07-19 14:21:22] [ 5] 82.00-83.00 sec 11.8 MBytes 98.9 Mbits/sec 0.095 ms 1511/10050 (15%) +[UE1] [2025-07-19 14:21:23] [ 5] 83.00-84.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 1692/10375 (16%) +[UE1] [2025-07-19 14:21:24] [ 5] 84.00-85.00 sec 12.0 MBytes 100 Mbits/sec 0.100 ms 1837/10502 (17%) +[UE1] [2025-07-19 14:21:25] [ 5] 85.00-86.00 sec 11.9 MBytes 100 Mbits/sec 0.155 ms 1497/10150 (15%) +[UE1] [2025-07-19 14:21:26] [ 5] 86.00-87.00 sec 12.0 MBytes 101 Mbits/sec 0.088 ms 1516/10217 (15%) +[UE1] [2025-07-19 14:21:27] [ 5] 87.00-88.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1931/10890 (18%) +[UE1] [2025-07-19 14:21:28] [ 5] 88.00-89.00 sec 11.8 MBytes 99.4 Mbits/sec 0.123 ms 1637/10215 (16%) +[UE1] [2025-07-19 14:21:29] [ 5] 89.00-90.00 sec 12.0 MBytes 100 Mbits/sec 0.081 ms 1597/10251 (16%) +[UE1] [2025-07-19 14:21:30] [ 5] 90.00-91.00 sec 12.0 MBytes 100 Mbits/sec 0.103 ms 1737/10406 (17%) +[UE1] [2025-07-19 14:21:31] [ 5] 91.00-92.00 sec 11.8 MBytes 99.0 Mbits/sec 0.070 ms 1408/9951 (14%) +[UE1] [2025-07-19 14:21:32] [ 5] 92.00-93.00 sec 11.2 MBytes 93.9 Mbits/sec 0.075 ms 1548/9657 (16%) +[UE1] [2025-07-19 14:21:33] [ 5] 93.00-94.00 sec 12.0 MBytes 101 Mbits/sec 0.096 ms 2516/11208 (22%) +[UE1] [2025-07-19 14:21:33] [ 5] 94.00-95.00 sec 12.6 MBytes 105 Mbits/sec 0.098 ms 1755/10854 (16%) +[UE1] [2025-07-19 14:21:34] [ 5] 95.00-96.00 sec 12.0 MBytes 101 Mbits/sec 0.087 ms 1586/10275 (15%) +[UE1] [2025-07-19 14:21:35] [ 5] 96.00-97.00 sec 11.7 MBytes 98.5 Mbits/sec 0.083 ms 1565/10069 (16%) +[UE1] [2025-07-19 14:21:37] [ 5] 97.00-98.00 sec 12.0 MBytes 101 Mbits/sec 0.102 ms 1455/10170 (14%) +[UE1] [2025-07-19 14:21:38] [ 5] 98.00-99.00 sec 11.2 MBytes 93.6 Mbits/sec 0.105 ms 1903/9984 (19%) +[UE1] [2025-07-19 14:21:39] [ 5] 99.00-100.00 sec 12.6 MBytes 105 Mbits/sec 0.086 ms 2025/11130 (18%) +[UE1] [2025-07-19 14:21:41] [ 5] 0.00-1.00 sec 3.74 MBytes 31.3 Mbits/sec 0.167 ms 0/2706 (0%) +[UE1] [2025-07-19 14:21:42] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.174 ms 0/2588 (0%) +[UE1] [2025-07-19 14:21:43] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2593 (0%) +[UE1] [2025-07-19 14:21:44] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE1] [2025-07-19 14:21:45] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:46] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2589 (0%) +[UE1] [2025-07-19 14:21:47] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2591 (0%) +[UE1] [2025-07-19 14:21:48] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:49] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE1] [2025-07-19 14:21:50] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:51] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:52] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:53] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.312 ms 0/2585 (0%) +[UE1] [2025-07-19 14:21:54] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2594 (0%) +[UE1] [2025-07-19 14:21:55] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:56] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:57] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE1] [2025-07-19 14:21:58] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.260 ms 0/2589 (0%) +[UE1] [2025-07-19 14:21:59] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:00] [ 5] 19.00-20.00 sec 3.57 MBytes 29.9 Mbits/sec 0.204 ms 0/2585 (0%) +[UE1] [2025-07-19 14:22:01] [ 5] 20.00-21.00 sec 3.58 MBytes 30.1 Mbits/sec 0.211 ms 0/2595 (0%) +[UE1] [2025-07-19 14:22:02] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.103 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:03] [ 5] 22.00-23.00 sec 3.57 MBytes 29.9 Mbits/sec 0.241 ms 0/2585 (0%) +[UE1] [2025-07-19 14:22:04] [ 5] 23.00-24.00 sec 3.58 MBytes 30.1 Mbits/sec 0.277 ms 0/2596 (0%) +[UE1] [2025-07-19 14:22:05] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.146 ms 0/2588 (0%) +[UE1] [2025-07-19 14:22:06] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2591 (0%) +[UE1] [2025-07-19 14:22:07] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:08] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:09] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:10] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2592 (0%) +[UE1] [2025-07-19 14:22:11] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.336 ms 0/2587 (0%) +[UE1] [2025-07-19 14:22:12] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:13] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:14] [ 5] 33.00-34.00 sec 3.57 MBytes 30.0 Mbits/sec 0.239 ms 0/2587 (0%) +[UE1] [2025-07-19 14:22:15] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2593 (0%) +[UE1] [2025-07-19 14:22:16] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:17] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:18] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:19] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.236 ms 0/2588 (0%) +[UE1] [2025-07-19 14:22:20] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2592 (0%) +[UE1] [2025-07-19 14:22:21] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.287 ms 0/2586 (0%) +[UE1] [2025-07-19 14:22:22] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2593 (0%) +[UE1] [2025-07-19 14:22:23] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:24] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:25] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:26] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:27] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.335 ms 0/2591 (0%) +[UE1] [2025-07-19 14:22:28] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.146 ms 0/2588 (0%) +[UE1] [2025-07-19 14:22:29] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2592 (0%) +[UE1] [2025-07-19 14:22:30] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.253 ms 0/2588 (0%) +[UE1] [2025-07-19 14:22:31] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:32] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:33] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.097 ms 0/2591 (0%) +[UE1] [2025-07-19 14:22:34] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:35] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2591 (0%) +[UE1] [2025-07-19 14:22:36] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:37] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:38] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:39] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:40] [ 5] 59.00-60.00 sec 3.57 MBytes 30.0 Mbits/sec 0.314 ms 0/2587 (0%) +[UE1] [2025-07-19 14:22:41] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2593 (0%) +[UE1] [2025-07-19 14:22:42] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.241 ms 0/2587 (0%) +[UE1] [2025-07-19 14:22:43] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2593 (0%) +[UE1] [2025-07-19 14:22:44] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.190 ms 0/2588 (0%) +[UE1] [2025-07-19 14:22:45] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2591 (0%) +[UE1] [2025-07-19 14:22:46] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:47] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:48] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:49] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.180 ms 0/2588 (0%) +[UE1] [2025-07-19 14:22:50] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2592 (0%) +[UE1] [2025-07-19 14:22:51] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:52] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:53] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:54] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:55] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:56] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2589 (0%) +[UE1] [2025-07-19 14:22:57] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:58] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2590 (0%) +[UE1] [2025-07-19 14:22:59] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:00] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:01] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2589 (0%) +[UE1] [2025-07-19 14:23:02] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.173 ms 0/2588 (0%) +[UE1] [2025-07-19 14:23:03] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2592 (0%) +[UE1] [2025-07-19 14:23:04] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:05] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2589 (0%) +[UE1] [2025-07-19 14:23:06] [ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2588 (0%) +[UE1] [2025-07-19 14:23:07] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.350 ms 0/2593 (0%) +[UE1] [2025-07-19 14:23:08] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.187 ms 0/2586 (0%) +[UE1] [2025-07-19 14:23:09] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2593 (0%) +[UE1] [2025-07-19 14:23:10] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2591 (0%) +[UE1] [2025-07-19 14:23:11] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.156 ms 0/2588 (0%) +[UE1] [2025-07-19 14:23:12] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:13] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:14] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:15] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:16] [ 5] 95.00-96.00 sec 3.57 MBytes 30.0 Mbits/sec 0.135 ms 0/2587 (0%) +[UE1] [2025-07-19 14:23:17] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2592 (0%) +[UE1] [2025-07-19 14:23:18] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 14:23:19] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE1] [2025-07-19 14:23:20] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2591 (0%) +[UE1] [2025-07-19 14:23:22] [ 5] 0.00-1.00 sec 9.63 MBytes 80.8 Mbits/sec 0.193 ms 0/6975 (0%) +[UE1] [2025-07-19 14:23:23] [ 5] 1.00-2.00 sec 12.2 MBytes 102 Mbits/sec 0.205 ms 0/8816 (0%) +[UE1] [2025-07-19 14:23:24] [ 5] 2.00-3.00 sec 11.3 MBytes 94.8 Mbits/sec 0.103 ms 706/8891 (7.9%) +[UE1] [2025-07-19 14:23:25] [ 5] 3.00-4.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1724/10412 (17%) +[UE1] [2025-07-19 14:23:26] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1432/10270 (14%) +[UE1] [2025-07-19 14:23:27] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1581/10394 (15%) +[UE1] [2025-07-19 14:23:28] [ 5] 6.00-7.00 sec 12.0 MBytes 101 Mbits/sec 0.088 ms 1582/10270 (15%) +[UE1] [2025-07-19 14:23:29] [ 5] 7.00-8.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 1567/10404 (15%) +[UE1] [2025-07-19 14:23:30] [ 5] 8.00-9.00 sec 12.0 MBytes 101 Mbits/sec 0.093 ms 1557/10233 (15%) +[UE1] [2025-07-19 14:23:31] [ 5] 9.00-10.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1712/10544 (16%) +[UE1] [2025-07-19 14:23:32] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1574/10405 (15%) +[UE1] [2025-07-19 14:23:33] [ 5] 11.00-12.00 sec 12.0 MBytes 100 Mbits/sec 0.100 ms 1578/10253 (15%) +[UE1] [2025-07-19 14:23:34] [ 5] 12.00-13.00 sec 12.2 MBytes 102 Mbits/sec 0.124 ms 1547/10373 (15%) +[UE1] [2025-07-19 14:23:35] [ 5] 13.00-14.00 sec 9.39 MBytes 78.8 Mbits/sec 0.083 ms 1277/8079 (16%) +[UE1] [2025-07-19 14:23:36] [ 5] 14.00-15.00 sec 12.8 MBytes 107 Mbits/sec 0.072 ms 3589/12847 (28%) +[UE1] [2025-07-19 14:23:37] [ 5] 15.00-16.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1413/10238 (14%) +[UE1] [2025-07-19 14:23:38] [ 5] 16.00-17.00 sec 12.0 MBytes 101 Mbits/sec 0.114 ms 1570/10262 (15%) +[UE1] [2025-07-19 14:23:39] [ 5] 17.00-18.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1491/10313 (14%) +[UE1] [2025-07-19 14:23:40] [ 5] 18.00-19.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 1591/10276 (15%) +[UE1] [2025-07-19 14:23:41] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1423/10254 (14%) +[UE1] [2025-07-19 14:23:42] [ 5] 20.00-21.00 sec 12.0 MBytes 101 Mbits/sec 0.124 ms 1984/10665 (19%) +[UE1] [2025-07-19 14:23:43] [ 5] 21.00-22.00 sec 11.6 MBytes 97.4 Mbits/sec 0.136 ms 1477/9882 (15%) +[UE1] [2025-07-19 14:23:44] [ 5] 22.00-23.00 sec 11.4 MBytes 95.5 Mbits/sec 0.076 ms 2150/10390 (21%) +[UE1] [2025-07-19 14:23:45] [ 5] 23.00-24.00 sec 12.8 MBytes 107 Mbits/sec 0.120 ms 1731/10992 (16%) +[UE1] [2025-07-19 14:23:46] [ 5] 24.00-25.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1488/10180 (15%) +[UE1] [2025-07-19 14:23:47] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1575/10393 (15%) +[UE1] [2025-07-19 14:23:48] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1548/10376 (15%) +[UE1] [2025-07-19 14:23:49] [ 5] 27.00-28.00 sec 12.0 MBytes 101 Mbits/sec 0.091 ms 1707/10399 (16%) +[UE1] [2025-07-19 14:23:50] [ 5] 28.00-29.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1467/10430 (14%) +[UE1] [2025-07-19 14:23:51] [ 5] 29.00-30.00 sec 11.8 MBytes 98.9 Mbits/sec 0.101 ms 1467/10007 (15%) +[UE1] [2025-07-19 14:23:52] [ 5] 30.00-31.00 sec 12.2 MBytes 102 Mbits/sec 0.100 ms 1482/10318 (14%) +[UE1] [2025-07-19 14:23:53] [ 5] 31.00-32.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1868/10693 (17%) +[UE1] [2025-07-19 14:23:54] [ 5] 32.00-33.00 sec 11.4 MBytes 95.5 Mbits/sec 0.084 ms 1393/9636 (14%) +[UE1] [2025-07-19 14:23:55] [ 5] 33.00-34.00 sec 12.4 MBytes 104 Mbits/sec 0.120 ms 2304/11285 (20%) +[UE1] [2025-07-19 14:23:56] [ 5] 34.00-35.00 sec 10.4 MBytes 87.2 Mbits/sec 0.074 ms 1463/8988 (16%) +[UE1] [2025-07-19 14:23:57] [ 5] 35.00-36.00 sec 12.4 MBytes 104 Mbits/sec 0.100 ms 2418/11428 (21%) +[UE1] [2025-07-19 14:23:58] [ 5] 36.00-37.00 sec 11.9 MBytes 100 Mbits/sec 0.112 ms 1398/10040 (14%) +[UE1] [2025-07-19 14:23:59] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1597/10418 (15%) +[UE1] [2025-07-19 14:24:00] [ 5] 38.00-39.00 sec 12.0 MBytes 101 Mbits/sec 0.519 ms 1598/10310 (15%) +[UE1] [2025-07-19 14:24:01] [ 5] 39.00-40.00 sec 12.8 MBytes 107 Mbits/sec 0.076 ms 1601/10834 (15%) +[UE1] [2025-07-19 14:24:02] [ 5] 40.00-41.00 sec 12.0 MBytes 101 Mbits/sec 0.067 ms 1566/10261 (15%) +[UE1] [2025-07-19 14:24:03] [ 5] 41.00-42.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1435/10251 (14%) +[UE1] [2025-07-19 14:24:04] [ 5] 42.00-43.00 sec 11.4 MBytes 95.6 Mbits/sec 0.127 ms 1591/9840 (16%) +[UE1] [2025-07-19 14:24:05] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1782/10620 (17%) +[UE1] [2025-07-19 14:24:06] [ 5] 44.00-45.00 sec 11.4 MBytes 95.5 Mbits/sec 0.088 ms 1563/9806 (16%) +[UE1] [2025-07-19 14:24:07] [ 5] 45.00-46.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 2412/11233 (21%) +[UE1] [2025-07-19 14:24:08] [ 5] 46.00-47.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 1468/10160 (14%) +[UE1] [2025-07-19 14:24:09] [ 5] 47.00-48.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1524/10350 (15%) +[UE1] [2025-07-19 14:24:10] [ 5] 48.00-49.00 sec 11.4 MBytes 95.6 Mbits/sec 0.074 ms 1457/9706 (15%) +[UE1] [2025-07-19 14:24:11] [ 5] 49.00-50.00 sec 12.8 MBytes 107 Mbits/sec 0.074 ms 2215/11478 (19%) +[UE1] [2025-07-19 14:24:12] [ 5] 50.00-51.00 sec 12.2 MBytes 102 Mbits/sec 0.068 ms 1396/10222 (14%) +[UE1] [2025-07-19 14:24:13] [ 5] 51.00-52.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1484/10164 (15%) +[UE1] [2025-07-19 14:24:14] [ 5] 52.00-53.00 sec 11.8 MBytes 98.6 Mbits/sec 0.102 ms 1502/10013 (15%) +[UE1] [2025-07-19 14:24:15] [ 5] 53.00-54.00 sec 11.8 MBytes 99.4 Mbits/sec 0.127 ms 1871/10447 (18%) +[UE1] [2025-07-19 14:24:16] [ 5] 54.00-55.00 sec 10.8 MBytes 90.5 Mbits/sec 0.068 ms 1333/9148 (15%) +[UE1] [2025-07-19 14:24:17] [ 5] 55.00-56.00 sec 12.8 MBytes 107 Mbits/sec 0.117 ms 2798/12051 (23%) +[UE1] [2025-07-19 14:24:18] [ 5] 56.00-57.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1462/10284 (14%) +[UE1] [2025-07-19 14:24:19] [ 5] 57.00-58.00 sec 12.0 MBytes 101 Mbits/sec 0.122 ms 1362/10047 (14%) +[UE1] [2025-07-19 14:24:20] [ 5] 58.00-59.00 sec 12.6 MBytes 106 Mbits/sec 0.103 ms 1532/10642 (14%) +[UE1] [2025-07-19 14:24:21] [ 5] 59.00-60.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1565/10557 (15%) +[UE1] [2025-07-19 14:24:22] [ 5] 60.00-61.00 sec 12.0 MBytes 100 Mbits/sec 0.119 ms 1514/10181 (15%) +[UE1] [2025-07-19 14:24:23] [ 5] 61.00-62.00 sec 11.4 MBytes 95.7 Mbits/sec 0.032 ms 2049/10308 (20%) +[UE1] [2025-07-19 14:24:24] [ 5] 62.00-63.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1497/10320 (15%) +[UE1] [2025-07-19 14:24:25] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1549/10376 (15%) +[UE1] [2025-07-19 14:24:26] [ 5] 64.00-65.00 sec 11.4 MBytes 95.6 Mbits/sec 0.077 ms 1408/9658 (15%) +[UE1] [2025-07-19 14:24:27] [ 5] 65.00-66.00 sec 11.4 MBytes 95.6 Mbits/sec 0.077 ms 2624/10874 (24%) +[UE1] [2025-07-19 14:24:28] [ 5] 66.00-67.00 sec 11.4 MBytes 95.6 Mbits/sec 0.080 ms 2484/10738 (23%) +[UE1] [2025-07-19 14:24:29] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1415/10242 (14%) +[UE1] [2025-07-19 14:24:30] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1441/10264 (14%) +[UE1] [2025-07-19 14:24:31] [ 5] 69.00-70.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 1600/10288 (16%) +[UE1] [2025-07-19 14:24:32] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1562/10390 (15%) +[UE1] [2025-07-19 14:24:33] [ 5] 71.00-72.00 sec 12.5 MBytes 105 Mbits/sec 0.134 ms 1558/10601 (15%) +[UE1] [2025-07-19 14:24:34] [ 5] 72.00-73.00 sec 12.3 MBytes 103 Mbits/sec 0.089 ms 1300/10192 (13%) +[UE1] [2025-07-19 14:24:35] [ 5] 73.00-74.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1636/10460 (16%) +[UE1] [2025-07-19 14:24:36] [ 5] 74.00-75.00 sec 11.4 MBytes 95.6 Mbits/sec 0.111 ms 1563/9819 (16%) +[UE1] [2025-07-19 14:24:37] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1758/10592 (17%) +[UE1] [2025-07-19 14:24:38] [ 5] 76.00-77.00 sec 12.0 MBytes 101 Mbits/sec 0.126 ms 1934/10622 (18%) +[UE1] [2025-07-19 14:24:39] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.121 ms 1501/10318 (15%) +[UE1] [2025-07-19 14:24:40] [ 5] 78.00-79.00 sec 12.2 MBytes 102 Mbits/sec 0.168 ms 1517/10351 (15%) +[UE1] [2025-07-19 14:24:41] [ 5] 79.00-80.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1604/10292 (16%) +[UE1] [2025-07-19 14:24:42] [ 5] 80.00-81.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1422/10238 (14%) +[UE1] [2025-07-19 14:24:43] [ 5] 81.00-82.00 sec 12.0 MBytes 101 Mbits/sec 0.066 ms 1609/10294 (16%) +[UE1] [2025-07-19 14:24:44] [ 5] 82.00-83.00 sec 11.6 MBytes 97.2 Mbits/sec 0.044 ms 1558/9953 (16%) +[UE1] [2025-07-19 14:24:45] [ 5] 83.00-84.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 2216/10898 (20%) +[UE1] [2025-07-19 14:24:46] [ 5] 84.00-85.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1606/10432 (15%) +[UE1] [2025-07-19 14:24:47] [ 5] 85.00-86.00 sec 11.4 MBytes 95.5 Mbits/sec 0.082 ms 1400/9647 (15%) +[UE1] [2025-07-19 14:24:48] [ 5] 86.00-87.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 2363/11197 (21%) +[UE1] [2025-07-19 14:24:49] [ 5] 87.00-88.00 sec 12.0 MBytes 101 Mbits/sec 0.124 ms 1691/10371 (16%) +[UE1] [2025-07-19 14:24:50] [ 5] 88.00-89.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1463/10288 (14%) +[UE1] [2025-07-19 14:24:51] [ 5] 89.00-90.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 1503/10193 (15%) +[UE1] [2025-07-19 14:24:52] [ 5] 90.00-91.00 sec 12.6 MBytes 106 Mbits/sec 0.115 ms 1383/10495 (13%) +[UE1] [2025-07-19 14:24:53] [ 5] 91.00-92.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1515/10495 (14%) +[UE1] [2025-07-19 14:24:54] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1490/10312 (14%) +[UE1] [2025-07-19 14:24:55] [ 5] 93.00-94.00 sec 11.4 MBytes 95.5 Mbits/sec 0.074 ms 1524/9772 (16%) +[UE1] [2025-07-19 14:24:56] [ 5] 94.00-95.00 sec 12.8 MBytes 107 Mbits/sec 0.088 ms 1755/11017 (16%) +[UE1] [2025-07-19 14:24:57] [ 5] 95.00-96.00 sec 12.2 MBytes 102 Mbits/sec 0.166 ms 1493/10322 (14%) +[UE1] [2025-07-19 14:24:58] [ 5] 96.00-97.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 1563/10245 (15%) +[UE1] [2025-07-19 14:24:59] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.125 ms 1442/10276 (14%) +[UE1] [2025-07-19 14:25:00] [ 5] 98.00-99.00 sec 12.0 MBytes 100 Mbits/sec 0.087 ms 1663/10325 (16%) +[UE1] [2025-07-19 14:25:02] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1697/10540 (16%) +[UE1] [2025-07-19 14:25:03] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.196 ms 0/2704 (0%) +[UE1] [2025-07-19 14:25:04] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:05] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:06] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2591 (0%) +[UE1] [2025-07-19 14:25:07] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:08] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:09] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:10] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:11] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:12] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2591 (0%) +[UE1] [2025-07-19 14:25:13] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.178 ms 0/2587 (0%) +[UE1] [2025-07-19 14:25:14] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2592 (0%) +[UE1] [2025-07-19 14:25:15] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.106 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:16] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:17] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:18] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.225 ms 0/2588 (0%) +[UE1] [2025-07-19 14:25:19] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2592 (0%) +[UE1] [2025-07-19 14:25:20] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:21] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:22] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:23] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:24] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:25] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:26] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.267 ms 0/2587 (0%) +[UE1] [2025-07-19 14:25:27] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:28] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:29] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2592 (0%) +[UE1] [2025-07-19 14:25:30] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:31] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2591 (0%) +[UE1] [2025-07-19 14:25:32] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:33] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.149 ms 0/2587 (0%) +[UE1] [2025-07-19 14:25:34] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2593 (0%) +[UE1] [2025-07-19 14:25:35] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:36] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:37] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:38] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2591 (0%) +[UE1] [2025-07-19 14:25:39] [ 5] 36.00-37.00 sec 3.57 MBytes 30.0 Mbits/sec 0.166 ms 0/2588 (0%) +[UE1] [2025-07-19 14:25:40] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:41] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:42] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:43] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:44] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:45] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.299 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:46] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:47] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:48] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2591 (0%) +[UE1] [2025-07-19 14:25:49] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:50] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:51] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:52] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2591 (0%) +[UE1] [2025-07-19 14:25:53] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE1] [2025-07-19 14:25:54] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:55] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.305 ms 0/2587 (0%) +[UE1] [2025-07-19 14:25:56] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2592 (0%) +[UE1] [2025-07-19 14:25:57] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:58] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE1] [2025-07-19 14:25:59] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:00] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:01] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:02] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.304 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:03] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:04] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:05] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:06] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:07] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.299 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:08] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.316 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:09] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:10] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2591 (0%) +[UE1] [2025-07-19 14:26:11] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.392 ms 0/2587 (0%) +[UE1] [2025-07-19 14:26:12] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2592 (0%) +[UE1] [2025-07-19 14:26:13] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:14] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:15] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:16] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:17] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:18] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:19] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:20] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:21] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2591 (0%) +[UE1] [2025-07-19 14:26:22] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:23] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:24] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.212 ms 0/2588 (0%) +[UE1] [2025-07-19 14:26:25] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.291 ms 0/2591 (0%) +[UE1] [2025-07-19 14:26:26] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:27] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:28] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:29] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:30] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.109 ms 0/2591 (0%) +[UE1] [2025-07-19 14:26:31] [ 5] 88.00-89.00 sec 3.57 MBytes 30.0 Mbits/sec 0.198 ms 0/2588 (0%) +[UE1] [2025-07-19 14:26:32] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2591 (0%) +[UE1] [2025-07-19 14:26:33] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:34] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:35] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:36] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:37] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:38] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:39] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE1] [2025-07-19 14:26:40] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2591 (0%) +[UE1] [2025-07-19 14:26:41] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:42] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 14:26:44] [ 5] 0.00-1.00 sec 9.79 MBytes 82.1 Mbits/sec 0.110 ms 0/7088 (0%) +[UE1] [2025-07-19 14:26:45] [ 5] 1.00-2.00 sec 12.3 MBytes 103 Mbits/sec 0.160 ms 0/8920 (0%) +[UE1] [2025-07-19 14:26:46] [ 5] 2.00-3.00 sec 11.2 MBytes 94.1 Mbits/sec 0.076 ms 442/8565 (5.2%) +[UE1] [2025-07-19 14:26:47] [ 5] 3.00-4.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1685/10512 (16%) +[UE1] [2025-07-19 14:26:48] [ 5] 4.00-5.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1430/10122 (14%) +[UE1] [2025-07-19 14:26:49] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.133 ms 1450/10270 (14%) +[UE1] [2025-07-19 14:26:50] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1514/10341 (15%) +[UE1] [2025-07-19 14:26:51] [ 5] 7.00-8.00 sec 12.3 MBytes 103 Mbits/sec 0.084 ms 1646/10526 (16%) +[UE1] [2025-07-19 14:26:52] [ 5] 8.00-9.00 sec 11.9 MBytes 100 Mbits/sec 0.085 ms 1420/10051 (14%) +[UE1] [2025-07-19 14:26:53] [ 5] 9.00-10.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1978/10662 (19%) +[UE1] [2025-07-19 14:26:54] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1608/10444 (15%) +[UE1] [2025-07-19 14:26:55] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1674/10493 (16%) +[UE1] [2025-07-19 14:26:56] [ 5] 12.00-13.00 sec 12.0 MBytes 101 Mbits/sec 0.100 ms 1513/10197 (15%) +[UE1] [2025-07-19 14:26:57] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1652/10487 (16%) +[UE1] [2025-07-19 14:26:58] [ 5] 14.00-15.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1480/10300 (14%) +[UE1] [2025-07-19 14:26:59] [ 5] 15.00-16.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1496/10180 (15%) +[UE1] [2025-07-19 14:27:00] [ 5] 16.00-17.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1595/10430 (15%) +[UE1] [2025-07-19 14:27:01] [ 5] 17.00-18.00 sec 12.0 MBytes 100 Mbits/sec 0.111 ms 1684/10357 (16%) +[UE1] [2025-07-19 14:27:02] [ 5] 18.00-19.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1712/10542 (16%) +[UE1] [2025-07-19 14:27:03] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1477/10312 (14%) +[UE1] [2025-07-19 14:27:04] [ 5] 20.00-21.00 sec 12.0 MBytes 100 Mbits/sec 0.083 ms 1684/10350 (16%) +[UE1] [2025-07-19 14:27:05] [ 5] 21.00-22.00 sec 12.2 MBytes 102 Mbits/sec 0.111 ms 1549/10387 (15%) +[UE1] [2025-07-19 14:27:06] [ 5] 22.00-23.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1486/10178 (15%) +[UE1] [2025-07-19 14:27:07] [ 5] 23.00-24.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1726/10535 (16%) +[UE1] [2025-07-19 14:27:08] [ 5] 24.00-25.00 sec 12.0 MBytes 101 Mbits/sec 0.103 ms 1391/10085 (14%) +[UE1] [2025-07-19 14:27:09] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1662/10497 (16%) +[UE1] [2025-07-19 14:27:10] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1534/10343 (15%) +[UE1] [2025-07-19 14:27:11] [ 5] 27.00-28.00 sec 11.4 MBytes 95.4 Mbits/sec 0.122 ms 2418/10650 (23%) +[UE1] [2025-07-19 14:27:12] [ 5] 28.00-29.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1563/10407 (15%) +[UE1] [2025-07-19 14:27:13] [ 5] 29.00-30.00 sec 12.0 MBytes 101 Mbits/sec 0.100 ms 1474/10169 (14%) +[UE1] [2025-07-19 14:27:14] [ 5] 30.00-31.00 sec 11.7 MBytes 98.1 Mbits/sec 0.074 ms 1489/9961 (15%) +[UE1] [2025-07-19 14:27:15] [ 5] 31.00-32.00 sec 12.2 MBytes 103 Mbits/sec 0.110 ms 1719/10569 (16%) +[UE1] [2025-07-19 14:27:16] [ 5] 32.00-33.00 sec 11.7 MBytes 97.8 Mbits/sec 0.080 ms 1547/9991 (15%) +[UE1] [2025-07-19 14:27:17] [ 5] 33.00-34.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 1790/10801 (17%) +[UE1] [2025-07-19 14:27:18] [ 5] 34.00-35.00 sec 12.5 MBytes 105 Mbits/sec 0.121 ms 1449/10511 (14%) +[UE1] [2025-07-19 14:27:19] [ 5] 35.00-36.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1464/10295 (14%) +[UE1] [2025-07-19 14:27:20] [ 5] 36.00-37.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1606/10286 (16%) +[UE1] [2025-07-19 14:27:21] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1372/10200 (13%) +[UE1] [2025-07-19 14:27:22] [ 5] 38.00-39.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1515/10485 (14%) +[UE1] [2025-07-19 14:27:23] [ 5] 39.00-40.00 sec 11.2 MBytes 94.0 Mbits/sec 0.115 ms 2011/10126 (20%) +[UE1] [2025-07-19 14:27:24] [ 5] 40.00-41.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1599/10283 (16%) +[UE1] [2025-07-19 14:27:25] [ 5] 41.00-42.00 sec 12.2 MBytes 102 Mbits/sec 0.116 ms 1598/10426 (15%) +[UE1] [2025-07-19 14:27:26] [ 5] 42.00-43.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1865/10691 (17%) +[UE1] [2025-07-19 14:27:27] [ 5] 43.00-44.00 sec 12.0 MBytes 101 Mbits/sec 0.086 ms 1731/10415 (17%) +[UE1] [2025-07-19 14:27:28] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1405/10240 (14%) +[UE1] [2025-07-19 14:27:29] [ 5] 45.00-46.00 sec 12.0 MBytes 100 Mbits/sec 0.128 ms 1497/10170 (15%) +[UE1] [2025-07-19 14:27:30] [ 5] 46.00-47.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1454/10285 (14%) +[UE1] [2025-07-19 14:27:31] [ 5] 47.00-48.00 sec 10.8 MBytes 90.5 Mbits/sec 2.764 ms 1517/9331 (16%) +[UE1] [2025-07-19 14:27:32] [ 5] 48.00-49.00 sec 12.8 MBytes 107 Mbits/sec 0.075 ms 2666/11917 (22%) +[UE1] [2025-07-19 14:27:33] [ 5] 49.00-50.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 1478/10172 (15%) +[UE1] [2025-07-19 14:27:34] [ 5] 50.00-51.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1519/10337 (15%) +[UE1] [2025-07-19 14:27:35] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1353/10180 (13%) +[UE1] [2025-07-19 14:27:36] [ 5] 52.00-53.00 sec 12.0 MBytes 101 Mbits/sec 0.083 ms 1638/10332 (16%) +[UE1] [2025-07-19 14:27:37] [ 5] 53.00-54.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1673/10490 (16%) +[UE1] [2025-07-19 14:27:38] [ 5] 54.00-55.00 sec 12.0 MBytes 101 Mbits/sec 0.087 ms 1685/10373 (16%) +[UE1] [2025-07-19 14:27:39] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1474/10307 (14%) +[UE1] [2025-07-19 14:27:40] [ 5] 56.00-57.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1572/10390 (15%) +[UE1] [2025-07-19 14:27:41] [ 5] 57.00-58.00 sec 12.0 MBytes 101 Mbits/sec 0.096 ms 1539/10233 (15%) +[UE1] [2025-07-19 14:27:42] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1497/10324 (15%) +[UE1] [2025-07-19 14:27:43] [ 5] 59.00-60.00 sec 12.0 MBytes 100 Mbits/sec 0.110 ms 1480/10154 (15%) +[UE1] [2025-07-19 14:27:44] [ 5] 60.00-61.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1936/10767 (18%) +[UE1] [2025-07-19 14:27:45] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1520/10353 (15%) +[UE1] [2025-07-19 14:27:46] [ 5] 62.00-63.00 sec 11.4 MBytes 95.6 Mbits/sec 0.073 ms 1301/9549 (14%) +[UE1] [2025-07-19 14:27:47] [ 5] 63.00-64.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 2255/10940 (21%) +[UE1] [2025-07-19 14:27:48] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1677/10504 (16%) +[UE1] [2025-07-19 14:27:49] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1669/10496 (16%) +[UE1] [2025-07-19 14:27:50] [ 5] 66.00-67.00 sec 12.0 MBytes 101 Mbits/sec 0.082 ms 1720/10412 (17%) +[UE1] [2025-07-19 14:27:51] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1472/10291 (14%) +[UE1] [2025-07-19 14:27:52] [ 5] 68.00-69.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1490/10174 (15%) +[UE1] [2025-07-19 14:27:53] [ 5] 69.00-70.00 sec 12.2 MBytes 102 Mbits/sec 0.121 ms 1432/10268 (14%) +[UE1] [2025-07-19 14:27:54] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1662/10481 (16%) +[UE1] [2025-07-19 14:27:55] [ 5] 71.00-72.00 sec 12.1 MBytes 102 Mbits/sec 0.122 ms 1408/10206 (14%) +[UE1] [2025-07-19 14:27:56] [ 5] 72.00-73.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1583/10304 (15%) +[UE1] [2025-07-19 14:27:57] [ 5] 73.00-74.00 sec 12.0 MBytes 100 Mbits/sec 0.106 ms 1762/10428 (17%) +[UE1] [2025-07-19 14:27:58] [ 5] 74.00-75.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1527/10364 (15%) +[UE1] [2025-07-19 14:27:59] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1563/10399 (15%) +[UE1] [2025-07-19 14:28:00] [ 5] 76.00-77.00 sec 12.0 MBytes 100 Mbits/sec 0.117 ms 1771/10436 (17%) +[UE1] [2025-07-19 14:28:01] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1518/10356 (15%) +[UE1] [2025-07-19 14:28:02] [ 5] 78.00-79.00 sec 11.4 MBytes 95.4 Mbits/sec 0.080 ms 2224/10462 (21%) +[UE1] [2025-07-19 14:28:03] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1666/10501 (16%) +[UE1] [2025-07-19 14:28:04] [ 5] 80.00-81.00 sec 12.0 MBytes 101 Mbits/sec 0.119 ms 1407/10086 (14%) +[UE1] [2025-07-19 14:28:05] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.102 ms 1475/10300 (14%) +[UE1] [2025-07-19 14:28:06] [ 5] 82.00-83.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1535/10362 (15%) +[UE1] [2025-07-19 14:28:07] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1611/10446 (15%) +[UE1] [2025-07-19 14:28:08] [ 5] 84.00-85.00 sec 12.6 MBytes 106 Mbits/sec 0.088 ms 1588/10718 (15%) +[UE1] [2025-07-19 14:28:09] [ 5] 85.00-86.00 sec 12.2 MBytes 102 Mbits/sec 0.102 ms 1557/10366 (15%) +[UE1] [2025-07-19 14:28:10] [ 5] 86.00-87.00 sec 12.0 MBytes 101 Mbits/sec 0.083 ms 1400/10094 (14%) +[UE1] [2025-07-19 14:28:11] [ 5] 87.00-88.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1768/10604 (17%) +[UE1] [2025-07-19 14:28:12] [ 5] 88.00-89.00 sec 12.0 MBytes 100 Mbits/sec 0.087 ms 1479/10145 (15%) +[UE1] [2025-07-19 14:28:13] [ 5] 89.00-90.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1585/10421 (15%) +[UE1] [2025-07-19 14:28:14] [ 5] 90.00-91.00 sec 11.4 MBytes 95.4 Mbits/sec 0.072 ms 1360/9599 (14%) +[UE1] [2025-07-19 14:28:15] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.099 ms 2327/11158 (21%) +[UE1] [2025-07-19 14:28:16] [ 5] 92.00-93.00 sec 12.0 MBytes 101 Mbits/sec 0.101 ms 1441/10121 (14%) +[UE1] [2025-07-19 14:28:17] [ 5] 93.00-94.00 sec 11.6 MBytes 97.3 Mbits/sec 0.080 ms 1473/9874 (15%) +[UE1] [2025-07-19 14:28:18] [ 5] 94.00-95.00 sec 12.0 MBytes 101 Mbits/sec 0.115 ms 2294/10986 (21%) +[UE1] [2025-07-19 14:28:19] [ 5] 95.00-96.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1558/10378 (15%) +[UE1] [2025-07-19 14:28:20] [ 5] 96.00-97.00 sec 11.4 MBytes 95.5 Mbits/sec 0.076 ms 1429/9675 (15%) +[UE1] [2025-07-19 14:28:21] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 2120/10950 (19%) +[UE1] [2025-07-19 14:28:22] [ 5] 98.00-99.00 sec 11.4 MBytes 95.5 Mbits/sec 0.106 ms 1431/9678 (15%) +[UE1] [2025-07-19 14:28:24] [ 5] 99.00-100.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 2086/11347 (18%) +[UE1] [2025-07-19 14:28:25] [ 5] 0.00-1.00 sec 3.74 MBytes 31.4 Mbits/sec 0.227 ms 0/2710 (0%) +[UE1] [2025-07-19 14:28:26] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.167 ms 0/2588 (0%) +[UE1] [2025-07-19 14:28:27] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2591 (0%) +[UE1] [2025-07-19 14:28:28] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.294 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:29] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:30] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:31] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2591 (0%) +[UE1] [2025-07-19 14:28:32] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:33] [ 5] 8.00-9.00 sec 3.57 MBytes 30.0 Mbits/sec 0.175 ms 0/2587 (0%) +[UE1] [2025-07-19 14:28:34] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2593 (0%) +[UE1] [2025-07-19 14:28:35] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:36] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:37] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.172 ms 0/2587 (0%) +[UE1] [2025-07-19 14:28:38] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:39] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.120 ms 0/2593 (0%) +[UE1] [2025-07-19 14:28:40] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:41] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.165 ms 0/2588 (0%) +[UE1] [2025-07-19 14:28:42] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:43] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2592 (0%) +[UE1] [2025-07-19 14:28:44] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:45] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:46] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:47] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.158 ms 0/2587 (0%) +[UE1] [2025-07-19 14:28:48] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.115 ms 0/2593 (0%) +[UE1] [2025-07-19 14:28:49] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:50] [ 5] 25.00-26.00 sec 3.57 MBytes 30.0 Mbits/sec 0.293 ms 0/2587 (0%) +[UE1] [2025-07-19 14:28:51] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2592 (0%) +[UE1] [2025-07-19 14:28:52] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:53] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:54] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.124 ms 0/2592 (0%) +[UE1] [2025-07-19 14:28:55] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.151 ms 0/2588 (0%) +[UE1] [2025-07-19 14:28:56] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2592 (0%) +[UE1] [2025-07-19 14:28:57] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 14:28:58] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2589 (0%) +[UE1] [2025-07-19 14:28:59] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:00] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:01] [ 5] 36.00-37.00 sec 3.57 MBytes 30.0 Mbits/sec 0.167 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:02] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:03] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:04] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:05] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.147 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:06] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2593 (0%) +[UE1] [2025-07-19 14:29:07] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.188 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:08] [ 5] 43.00-44.00 sec 3.57 MBytes 29.9 Mbits/sec 0.378 ms 0/2584 (0%) +[UE1] [2025-07-19 14:29:09] [ 5] 44.00-45.00 sec 3.58 MBytes 30.1 Mbits/sec 0.198 ms 0/2596 (0%) +[UE1] [2025-07-19 14:29:10] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:11] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2589 (0%) +[UE1] [2025-07-19 14:29:12] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:13] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.289 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:14] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.205 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:15] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:16] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.119 ms 0/2588 (0%) +[UE1] [2025-07-19 14:29:17] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:18] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:19] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:20] [ 5] 55.00-56.00 sec 3.57 MBytes 29.9 Mbits/sec 0.352 ms 0/2585 (0%) +[UE1] [2025-07-19 14:29:21] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2594 (0%) +[UE1] [2025-07-19 14:29:22] [ 5] 57.00-58.00 sec 3.57 MBytes 30.0 Mbits/sec 0.253 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:23] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2591 (0%) +[UE1] [2025-07-19 14:29:24] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:25] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2589 (0%) +[UE1] [2025-07-19 14:29:26] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:27] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.185 ms 0/2588 (0%) +[UE1] [2025-07-19 14:29:28] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:29] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.267 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:30] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.286 ms 0/2593 (0%) +[UE1] [2025-07-19 14:29:31] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2589 (0%) +[UE1] [2025-07-19 14:29:32] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:33] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:34] [ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 0.178 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:35] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:36] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:37] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:38] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:39] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.332 ms 0/2589 (0%) +[UE1] [2025-07-19 14:29:40] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.174 ms 0/2588 (0%) +[UE1] [2025-07-19 14:29:41] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:42] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:43] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:44] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2589 (0%) +[UE1] [2025-07-19 14:29:45] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.323 ms 0/2589 (0%) +[UE1] [2025-07-19 14:29:46] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2591 (0%) +[UE1] [2025-07-19 14:29:47] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.158 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:48] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:49] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:50] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:51] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE1] [2025-07-19 14:29:52] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2591 (0%) +[UE1] [2025-07-19 14:29:53] [ 5] 88.00-89.00 sec 3.57 MBytes 30.0 Mbits/sec 0.153 ms 0/2588 (0%) +[UE1] [2025-07-19 14:29:54] [ 5] 89.00-90.00 sec 3.57 MBytes 30.0 Mbits/sec 0.309 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:55] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2594 (0%) +[UE1] [2025-07-19 14:29:56] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.204 ms 0/2587 (0%) +[UE1] [2025-07-19 14:29:57] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE1] [2025-07-19 14:29:58] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2592 (0%) +[UE1] [2025-07-19 14:29:59] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 14:30:00] [ 5] 95.00-96.00 sec 3.57 MBytes 30.0 Mbits/sec 0.264 ms 0/2587 (0%) +[UE1] [2025-07-19 14:30:01] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE1] [2025-07-19 14:30:02] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2592 (0%) +[UE1] [2025-07-19 14:30:03] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2590 (0%) +[UE1] [2025-07-19 14:30:04] [ 5] 99.00-100.00 sec 3.57 MBytes 30.0 Mbits/sec 0.232 ms 0/2586 (0%) +[UE1] [2025-07-19 14:30:07] [ 5] 0.00-1.00 sec 9.36 MBytes 78.5 Mbits/sec 0.179 ms 0/6775 (0%) +[UE1] [2025-07-19 14:30:08] [ 5] 1.00-2.00 sec 12.0 MBytes 100 Mbits/sec 0.136 ms 0/8659 (0%) +[UE1] [2025-07-19 14:30:09] [ 5] 2.00-3.00 sec 11.4 MBytes 95.3 Mbits/sec 0.095 ms 1039/9262 (11%) +[UE1] [2025-07-19 14:30:10] [ 5] 3.00-4.00 sec 10.3 MBytes 86.3 Mbits/sec 0.123 ms 1501/8954 (17%) +[UE1] [2025-07-19 14:30:11] [ 5] 4.00-5.00 sec 12.4 MBytes 104 Mbits/sec 0.094 ms 2739/11721 (23%) +[UE1] [2025-07-19 14:30:12] [ 5] 5.00-6.00 sec 11.8 MBytes 99.2 Mbits/sec 0.089 ms 1602/10163 (16%) +[UE1] [2025-07-19 14:30:13] [ 5] 6.00-7.00 sec 11.7 MBytes 98.0 Mbits/sec 0.098 ms 1598/10057 (16%) +[UE1] [2025-07-19 14:30:14] [ 5] 7.00-8.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1821/10794 (17%) +[UE1] [2025-07-19 14:30:15] [ 5] 8.00-9.00 sec 11.2 MBytes 94.3 Mbits/sec 0.109 ms 1613/9757 (17%) +[UE1] [2025-07-19 14:30:16] [ 5] 9.00-10.00 sec 11.7 MBytes 98.0 Mbits/sec 0.087 ms 2079/10538 (20%) +[UE1] [2025-07-19 14:30:17] [ 5] 10.00-11.00 sec 11.8 MBytes 98.9 Mbits/sec 0.110 ms 2167/10708 (20%) +[UE1] [2025-07-19 14:30:18] [ 5] 11.00-12.00 sec 11.7 MBytes 97.8 Mbits/sec 0.077 ms 1769/10213 (17%) +[UE1] [2025-07-19 14:30:19] [ 5] 12.00-13.00 sec 11.9 MBytes 99.4 Mbits/sec 0.118 ms 1837/10421 (18%) +[UE1] [2025-07-19 14:30:20] [ 5] 13.00-14.00 sec 11.8 MBytes 99.0 Mbits/sec 0.090 ms 1598/10146 (16%) +[UE1] [2025-07-19 14:30:21] [ 5] 14.00-15.00 sec 12.4 MBytes 104 Mbits/sec 0.105 ms 1800/10793 (17%) +[UE1] [2025-07-19 14:30:22] [ 5] 15.00-16.00 sec 11.6 MBytes 97.6 Mbits/sec 0.076 ms 1682/10108 (17%) +[UE1] [2025-07-19 14:30:23] [ 5] 16.00-17.00 sec 11.8 MBytes 99.3 Mbits/sec 0.101 ms 1788/10362 (17%) +[UE1] [2025-07-19 14:30:24] [ 5] 17.00-18.00 sec 11.7 MBytes 98.6 Mbits/sec 0.128 ms 1725/10233 (17%) +[UE1] [2025-07-19 14:30:25] [ 5] 18.00-19.00 sec 12.5 MBytes 105 Mbits/sec 0.091 ms 1723/10777 (16%) +[UE1] [2025-07-19 14:30:26] [ 5] 19.00-20.00 sec 9.70 MBytes 81.3 Mbits/sec 0.080 ms 1403/8425 (17%) +[UE1] [2025-07-19 14:30:27] [ 5] 20.00-21.00 sec 11.7 MBytes 97.8 Mbits/sec 0.081 ms 3788/12233 (31%) +[UE1] [2025-07-19 14:30:28] [ 5] 21.00-22.00 sec 11.8 MBytes 99.3 Mbits/sec 0.111 ms 1524/10094 (15%) +[UE1] [2025-07-19 14:30:29] [ 5] 22.00-23.00 sec 11.8 MBytes 99.1 Mbits/sec 0.078 ms 1812/10365 (17%) +[UE1] [2025-07-19 14:30:30] [ 5] 23.00-24.00 sec 12.4 MBytes 104 Mbits/sec 0.114 ms 1631/10643 (15%) +[UE1] [2025-07-19 14:30:31] [ 5] 24.00-25.00 sec 11.1 MBytes 92.7 Mbits/sec 0.117 ms 1631/9635 (17%) +[UE1] [2025-07-19 14:30:32] [ 5] 25.00-26.00 sec 11.8 MBytes 99.1 Mbits/sec 0.104 ms 1911/10464 (18%) +[UE1] [2025-07-19 14:30:33] [ 5] 26.00-27.00 sec 11.7 MBytes 98.0 Mbits/sec 0.073 ms 2392/10851 (22%) +[UE1] [2025-07-19 14:30:34] [ 5] 27.00-28.00 sec 11.8 MBytes 99.1 Mbits/sec 0.066 ms 1809/10365 (17%) +[UE1] [2025-07-19 14:30:35] [ 5] 28.00-29.00 sec 11.7 MBytes 97.8 Mbits/sec 0.100 ms 1735/10173 (17%) +[UE1] [2025-07-19 14:30:36] [ 5] 29.00-30.00 sec 11.8 MBytes 99.3 Mbits/sec 0.094 ms 1854/10422 (18%) +[UE1] [2025-07-19 14:30:37] [ 5] 30.00-31.00 sec 11.8 MBytes 99.3 Mbits/sec 0.104 ms 1653/10223 (16%) +[UE1] [2025-07-19 14:30:38] [ 5] 31.00-32.00 sec 11.6 MBytes 97.6 Mbits/sec 0.095 ms 1969/10393 (19%) +[UE1] [2025-07-19 14:30:39] [ 5] 32.00-33.00 sec 11.8 MBytes 99.4 Mbits/sec 0.094 ms 1797/10378 (17%) +[UE1] [2025-07-19 14:30:40] [ 5] 33.00-34.00 sec 11.6 MBytes 97.6 Mbits/sec 0.070 ms 1726/10148 (17%) +[UE1] [2025-07-19 14:30:41] [ 5] 34.00-35.00 sec 11.9 MBytes 99.5 Mbits/sec 0.568 ms 1796/10389 (17%) +[UE1] [2025-07-19 14:30:42] [ 5] 35.00-36.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1805/10778 (17%) +[UE1] [2025-07-19 14:30:43] [ 5] 36.00-37.00 sec 11.7 MBytes 97.9 Mbits/sec 0.122 ms 1696/10148 (17%) +[UE1] [2025-07-19 14:30:44] [ 5] 37.00-38.00 sec 11.8 MBytes 98.9 Mbits/sec 0.146 ms 1656/10193 (16%) +[UE1] [2025-07-19 14:30:45] [ 5] 38.00-39.00 sec 12.4 MBytes 104 Mbits/sec 0.126 ms 1814/10829 (17%) +[UE1] [2025-07-19 14:30:46] [ 5] 39.00-40.00 sec 11.8 MBytes 99.1 Mbits/sec 0.083 ms 1621/10179 (16%) +[UE1] [2025-07-19 14:30:47] [ 5] 40.00-41.00 sec 11.6 MBytes 97.6 Mbits/sec 0.081 ms 1643/10068 (16%) +[UE1] [2025-07-19 14:30:48] [ 5] 41.00-42.00 sec 11.8 MBytes 99.4 Mbits/sec 0.076 ms 1800/10379 (17%) +[UE1] [2025-07-19 14:30:49] [ 5] 42.00-43.00 sec 11.8 MBytes 99.4 Mbits/sec 0.086 ms 1748/10327 (17%) +[UE1] [2025-07-19 14:30:50] [ 5] 43.00-44.00 sec 12.2 MBytes 103 Mbits/sec 0.082 ms 1979/10836 (18%) +[UE1] [2025-07-19 14:30:51] [ 5] 44.00-45.00 sec 11.8 MBytes 99.1 Mbits/sec 0.093 ms 1573/10129 (16%) +[UE1] [2025-07-19 14:30:52] [ 5] 45.00-46.00 sec 11.8 MBytes 99.3 Mbits/sec 0.109 ms 1757/10325 (17%) +[UE1] [2025-07-19 14:30:53] [ 5] 46.00-47.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1732/10730 (16%) +[UE1] [2025-07-19 14:30:54] [ 5] 47.00-48.00 sec 11.7 MBytes 97.9 Mbits/sec 0.094 ms 1633/10084 (16%) +[UE1] [2025-07-19 14:30:55] [ 5] 48.00-49.00 sec 11.8 MBytes 98.9 Mbits/sec 0.096 ms 1737/10276 (17%) +[UE1] [2025-07-19 14:30:56] [ 5] 49.00-50.00 sec 11.7 MBytes 97.7 Mbits/sec 0.089 ms 1666/10103 (16%) +[UE1] [2025-07-19 14:30:57] [ 5] 50.00-51.00 sec 11.9 MBytes 99.6 Mbits/sec 0.085 ms 1749/10349 (17%) +[UE1] [2025-07-19 14:30:58] [ 5] 51.00-52.00 sec 11.8 MBytes 98.9 Mbits/sec 0.102 ms 1888/10427 (18%) +[UE1] [2025-07-19 14:30:59] [ 5] 52.00-53.00 sec 11.7 MBytes 97.7 Mbits/sec 0.085 ms 1791/10228 (18%) +[UE1] [2025-07-19 14:31:00] [ 5] 53.00-54.00 sec 11.9 MBytes 99.5 Mbits/sec 0.074 ms 1716/10309 (17%) +[UE1] [2025-07-19 14:31:01] [ 5] 54.00-55.00 sec 11.6 MBytes 97.3 Mbits/sec 0.083 ms 2048/10451 (20%) +[UE1] [2025-07-19 14:31:02] [ 5] 55.00-56.00 sec 11.8 MBytes 99.4 Mbits/sec 0.089 ms 1841/10421 (18%) +[UE1] [2025-07-19 14:31:03] [ 5] 56.00-57.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1823/10816 (17%) +[UE1] [2025-07-19 14:31:04] [ 5] 57.00-58.00 sec 10.5 MBytes 87.9 Mbits/sec 0.106 ms 1553/9142 (17%) +[UE1] [2025-07-19 14:31:05] [ 5] 58.00-59.00 sec 11.6 MBytes 97.5 Mbits/sec 0.113 ms 2804/11218 (25%) +[UE1] [2025-07-19 14:31:06] [ 5] 59.00-60.00 sec 11.8 MBytes 99.3 Mbits/sec 0.102 ms 1712/10288 (17%) +[UE1] [2025-07-19 14:31:07] [ 5] 60.00-61.00 sec 11.8 MBytes 99.3 Mbits/sec 0.076 ms 1792/10364 (17%) +[UE1] [2025-07-19 14:31:08] [ 5] 61.00-62.00 sec 11.6 MBytes 97.6 Mbits/sec 0.108 ms 1813/10241 (18%) +[UE1] [2025-07-19 14:31:09] [ 5] 62.00-63.00 sec 11.8 MBytes 99.3 Mbits/sec 0.074 ms 1910/10485 (18%) +[UE1] [2025-07-19 14:31:10] [ 5] 63.00-64.00 sec 11.1 MBytes 92.9 Mbits/sec 0.094 ms 1685/9706 (17%) +[UE1] [2025-07-19 14:31:11] [ 5] 64.00-65.00 sec 11.8 MBytes 99.2 Mbits/sec 0.077 ms 2768/11330 (24%) +[UE1] [2025-07-19 14:31:12] [ 5] 65.00-66.00 sec 11.6 MBytes 97.6 Mbits/sec 0.081 ms 1852/10282 (18%) +[UE1] [2025-07-19 14:31:13] [ 5] 66.00-67.00 sec 11.9 MBytes 99.5 Mbits/sec 0.105 ms 1671/10262 (16%) +[UE1] [2025-07-19 14:31:14] [ 5] 67.00-68.00 sec 11.6 MBytes 97.3 Mbits/sec 0.083 ms 1714/10114 (17%) +[UE1] [2025-07-19 14:31:15] [ 5] 68.00-69.00 sec 11.9 MBytes 99.4 Mbits/sec 0.085 ms 1815/10400 (17%) +[UE1] [2025-07-19 14:31:16] [ 5] 69.00-70.00 sec 12.4 MBytes 104 Mbits/sec 0.100 ms 1816/10812 (17%) +[UE1] [2025-07-19 14:31:17] [ 5] 70.00-71.00 sec 11.8 MBytes 99.1 Mbits/sec 0.099 ms 1744/10297 (17%) +[UE1] [2025-07-19 14:31:18] [ 5] 71.00-72.00 sec 11.7 MBytes 97.8 Mbits/sec 0.082 ms 1578/10023 (16%) +[UE1] [2025-07-19 14:31:19] [ 5] 72.00-73.00 sec 12.4 MBytes 104 Mbits/sec 0.096 ms 1724/10701 (16%) +[UE1] [2025-07-19 14:31:20] [ 5] 73.00-74.00 sec 11.1 MBytes 92.7 Mbits/sec 0.122 ms 1672/9677 (17%) +[UE1] [2025-07-19 14:31:21] [ 5] 74.00-75.00 sec 11.3 MBytes 94.7 Mbits/sec 0.081 ms 2708/10884 (25%) +[UE1] [2025-07-19 14:31:22] [ 5] 75.00-76.00 sec 11.7 MBytes 97.7 Mbits/sec 0.096 ms 1681/10118 (17%) +[UE1] [2025-07-19 14:31:23] [ 5] 76.00-77.00 sec 11.8 MBytes 99.0 Mbits/sec 0.120 ms 1850/10396 (18%) +[UE1] [2025-07-19 14:31:24] [ 5] 77.00-78.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1860/10850 (17%) +[UE1] [2025-07-19 14:31:25] [ 5] 78.00-79.00 sec 11.1 MBytes 93.1 Mbits/sec 0.095 ms 1614/9654 (17%) +[UE1] [2025-07-19 14:31:26] [ 5] 79.00-80.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1998/10961 (18%) +[UE1] [2025-07-19 14:31:27] [ 5] 80.00-81.00 sec 11.8 MBytes 99.4 Mbits/sec 0.126 ms 1682/10262 (16%) +[UE1] [2025-07-19 14:31:28] [ 5] 81.00-82.00 sec 11.7 MBytes 97.8 Mbits/sec 0.091 ms 1759/10199 (17%) +[UE1] [2025-07-19 14:31:29] [ 5] 82.00-83.00 sec 11.8 MBytes 99.0 Mbits/sec 0.113 ms 1834/10375 (18%) +[UE1] [2025-07-19 14:31:30] [ 5] 83.00-84.00 sec 11.7 MBytes 98.0 Mbits/sec 0.078 ms 1862/10318 (18%) +[UE1] [2025-07-19 14:31:31] [ 5] 84.00-85.00 sec 10.5 MBytes 87.7 Mbits/sec 0.122 ms 1654/9229 (18%) +[UE1] [2025-07-19 14:31:32] [ 5] 85.00-86.00 sec 11.8 MBytes 99.2 Mbits/sec 0.130 ms 2756/11321 (24%) +[UE1] [2025-07-19 14:31:33] [ 5] 86.00-87.00 sec 11.9 MBytes 100 Mbits/sec 0.158 ms 1833/10484 (17%) +[UE1] [2025-07-19 14:31:34] [ 5] 87.00-88.00 sec 12.1 MBytes 102 Mbits/sec 0.080 ms 1831/10625 (17%) +[UE1] [2025-07-19 14:31:35] [ 5] 88.00-89.00 sec 11.8 MBytes 99.1 Mbits/sec 0.086 ms 1662/10214 (16%) +[UE1] [2025-07-19 14:31:36] [ 5] 89.00-90.00 sec 11.8 MBytes 99.3 Mbits/sec 0.112 ms 1771/10343 (17%) +[UE1] [2025-07-19 14:31:37] [ 5] 90.00-91.00 sec 11.7 MBytes 97.9 Mbits/sec 0.102 ms 1599/10051 (16%) +[UE1] [2025-07-19 14:31:38] [ 5] 91.00-92.00 sec 11.8 MBytes 99.0 Mbits/sec 0.085 ms 1952/10497 (19%) +[UE1] [2025-07-19 14:31:39] [ 5] 92.00-93.00 sec 11.7 MBytes 97.8 Mbits/sec 0.110 ms 1793/10240 (18%) +[UE1] [2025-07-19 14:31:40] [ 5] 93.00-94.00 sec 12.4 MBytes 104 Mbits/sec 0.110 ms 1998/11001 (18%) +[UE1] [2025-07-19 14:31:41] [ 5] 94.00-95.00 sec 10.6 MBytes 89.2 Mbits/sec 0.079 ms 1456/9153 (16%) +[UE1] [2025-07-19 14:31:42] [ 5] 95.00-96.00 sec 11.7 MBytes 97.8 Mbits/sec 0.108 ms 2814/11256 (25%) +[UE1] [2025-07-19 14:31:43] [ 5] 96.00-97.00 sec 11.6 MBytes 97.7 Mbits/sec 0.112 ms 1730/10162 (17%) +[UE1] [2025-07-19 14:31:44] [ 5] 97.00-98.00 sec 11.8 MBytes 99.3 Mbits/sec 0.079 ms 1725/10295 (17%) +[UE1] [2025-07-19 14:31:45] [ 5] 98.00-99.00 sec 11.8 MBytes 99.3 Mbits/sec 0.080 ms 1787/10361 (17%) +[UE1] [2025-07-19 14:31:46] [ 5] 99.00-100.00 sec 11.6 MBytes 97.7 Mbits/sec 0.087 ms 2108/10539 (20%) +[UE1] [2025-07-19 14:31:48] [ 5] 0.00-1.00 sec 3.75 MBytes 31.5 Mbits/sec 0.178 ms 0/2717 (0%) +[UE1] [2025-07-19 14:31:49] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2588 (0%) +[UE1] [2025-07-19 14:31:50] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2593 (0%) +[UE1] [2025-07-19 14:31:51] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2589 (0%) +[UE1] [2025-07-19 14:31:52] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE1] [2025-07-19 14:31:53] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 14:31:54] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE1] [2025-07-19 14:31:55] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE1] [2025-07-19 14:31:56] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.340 ms 0/2590 (0%) +[UE1] [2025-07-19 14:31:57] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.300 ms 0/2589 (0%) +[UE1] [2025-07-19 14:31:58] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:31:59] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:00] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2591 (0%) +[UE1] [2025-07-19 14:32:01] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:02] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:03] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2591 (0%) +[UE1] [2025-07-19 14:32:04] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:05] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:06] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:07] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:08] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:09] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:10] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:11] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:12] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:13] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:14] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2588 (0%) +[UE1] [2025-07-19 14:32:15] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2591 (0%) +[UE1] [2025-07-19 14:32:16] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2591 (0%) +[UE1] [2025-07-19 14:32:17] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:18] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:19] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE1] [2025-07-19 14:32:20] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.230 ms 0/2588 (0%) +[UE1] [2025-07-19 14:32:21] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:22] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:23] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2592 (0%) +[UE1] [2025-07-19 14:32:24] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:25] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:26] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:27] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:28] [ 5] 40.00-41.00 sec 3.57 MBytes 29.9 Mbits/sec 0.299 ms 0/2582 (0%) +[UE1] [2025-07-19 14:32:29] [ 5] 41.00-42.00 sec 3.58 MBytes 30.1 Mbits/sec 0.140 ms 0/2595 (0%) +[UE1] [2025-07-19 14:32:30] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2592 (0%) +[UE1] [2025-07-19 14:32:31] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:32] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:33] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:34] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.271 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:35] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:36] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:37] [ 5] 49.00-50.00 sec 3.57 MBytes 29.9 Mbits/sec 0.155 ms 0/2585 (0%) +[UE1] [2025-07-19 14:32:38] [ 5] 50.00-51.00 sec 3.58 MBytes 30.1 Mbits/sec 0.186 ms 0/2595 (0%) +[UE1] [2025-07-19 14:32:39] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:40] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.251 ms 0/2588 (0%) +[UE1] [2025-07-19 14:32:41] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2592 (0%) +[UE1] [2025-07-19 14:32:42] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.103 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:43] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:44] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:45] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:46] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:47] [ 5] 59.00-60.00 sec 3.57 MBytes 29.9 Mbits/sec 0.252 ms 0/2584 (0%) +[UE1] [2025-07-19 14:32:48] [ 5] 60.00-61.00 sec 3.58 MBytes 30.1 Mbits/sec 0.187 ms 0/2595 (0%) +[UE1] [2025-07-19 14:32:49] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.195 ms 0/2588 (0%) +[UE1] [2025-07-19 14:32:50] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2592 (0%) +[UE1] [2025-07-19 14:32:51] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.293 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:52] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:53] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:54] [ 5] 66.00-67.00 sec 3.57 MBytes 30.0 Mbits/sec 0.195 ms 0/2587 (0%) +[UE1] [2025-07-19 14:32:55] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.290 ms 0/2593 (0%) +[UE1] [2025-07-19 14:32:56] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.109 ms 0/2589 (0%) +[UE1] [2025-07-19 14:32:57] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.271 ms 0/2590 (0%) +[UE1] [2025-07-19 14:32:58] [ 5] 70.00-71.00 sec 3.57 MBytes 30.0 Mbits/sec 0.243 ms 0/2587 (0%) +[UE1] [2025-07-19 14:32:59] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2594 (0%) +[UE1] [2025-07-19 14:33:00] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.271 ms 0/2588 (0%) +[UE1] [2025-07-19 14:33:01] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:02] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:03] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.190 ms 0/2588 (0%) +[UE1] [2025-07-19 14:33:04] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2592 (0%) +[UE1] [2025-07-19 14:33:05] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2589 (0%) +[UE1] [2025-07-19 14:33:06] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:07] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:08] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:09] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2589 (0%) +[UE1] [2025-07-19 14:33:10] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:11] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:12] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:13] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:14] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE1] [2025-07-19 14:33:15] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2591 (0%) +[UE1] [2025-07-19 14:33:16] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:17] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2589 (0%) +[UE1] [2025-07-19 14:33:18] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.344 ms 0/2587 (0%) +[UE1] [2025-07-19 14:33:19] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.368 ms 0/2592 (0%) +[UE1] [2025-07-19 14:33:20] [ 5] 92.00-93.00 sec 3.57 MBytes 30.0 Mbits/sec 0.162 ms 0/2587 (0%) +[UE1] [2025-07-19 14:33:21] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2593 (0%) +[UE1] [2025-07-19 14:33:22] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE1] [2025-07-19 14:33:23] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.279 ms 0/2592 (0%) +[UE1] [2025-07-19 14:33:24] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.269 ms 0/2588 (0%) +[UE1] [2025-07-19 14:33:25] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:26] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:27] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2590 (0%) +[UE1] [2025-07-19 14:33:29] [ 5] 0.00-1.00 sec 8.04 MBytes 67.4 Mbits/sec 0.112 ms 0/5820 (0%) +[UE1] [2025-07-19 14:33:30] [ 5] 1.00-2.00 sec 11.2 MBytes 94.3 Mbits/sec 0.077 ms 112/8255 (1.4%) +[UE1] [2025-07-19 14:33:31] [ 5] 2.00-3.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1549/10371 (15%) +[UE1] [2025-07-19 14:33:32] [ 5] 3.00-4.00 sec 12.0 MBytes 101 Mbits/sec 0.128 ms 1509/10198 (15%) +[UE1] [2025-07-19 14:33:33] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.134 ms 1693/10521 (16%) +[UE1] [2025-07-19 14:33:34] [ 5] 5.00-6.00 sec 12.0 MBytes 101 Mbits/sec 0.095 ms 1587/10274 (15%) +[UE1] [2025-07-19 14:33:35] [ 5] 6.00-7.00 sec 12.5 MBytes 105 Mbits/sec 0.096 ms 1567/10610 (15%) +[UE1] [2025-07-19 14:33:36] [ 5] 7.00-8.00 sec 12.4 MBytes 104 Mbits/sec 0.105 ms 1420/10428 (14%) +[UE1] [2025-07-19 14:33:37] [ 5] 8.00-9.00 sec 11.7 MBytes 98.2 Mbits/sec 0.079 ms 1477/9953 (15%) +[UE1] [2025-07-19 14:33:38] [ 5] 9.00-10.00 sec 12.5 MBytes 105 Mbits/sec 0.087 ms 1668/10739 (16%) +[UE1] [2025-07-19 14:33:39] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1370/10188 (13%) +[UE1] [2025-07-19 14:33:40] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1601/10424 (15%) +[UE1] [2025-07-19 14:33:41] [ 5] 12.00-13.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1550/10248 (15%) +[UE1] [2025-07-19 14:33:42] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1541/10358 (15%) +[UE1] [2025-07-19 14:33:43] [ 5] 14.00-15.00 sec 12.0 MBytes 101 Mbits/sec 0.094 ms 1694/10378 (16%) +[UE1] [2025-07-19 14:33:44] [ 5] 15.00-16.00 sec 11.6 MBytes 97.3 Mbits/sec 0.075 ms 1537/9938 (15%) +[UE1] [2025-07-19 14:33:45] [ 5] 16.00-17.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 2057/10741 (19%) +[UE1] [2025-07-19 14:33:46] [ 5] 17.00-18.00 sec 10.8 MBytes 90.5 Mbits/sec 0.070 ms 1379/9192 (15%) +[UE1] [2025-07-19 14:33:47] [ 5] 18.00-19.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 2737/11703 (23%) +[UE1] [2025-07-19 14:33:48] [ 5] 19.00-20.00 sec 11.8 MBytes 98.9 Mbits/sec 0.097 ms 1462/10003 (15%) +[UE1] [2025-07-19 14:33:49] [ 5] 20.00-21.00 sec 12.8 MBytes 107 Mbits/sec 0.124 ms 1655/10915 (15%) +[UE1] [2025-07-19 14:33:50] [ 5] 21.00-22.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1422/10247 (14%) +[UE1] [2025-07-19 14:33:51] [ 5] 22.00-23.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1534/10221 (15%) +[UE1] [2025-07-19 14:33:52] [ 5] 23.00-24.00 sec 12.4 MBytes 104 Mbits/sec 0.124 ms 1532/10508 (15%) +[UE1] [2025-07-19 14:33:53] [ 5] 24.00-25.00 sec 12.0 MBytes 101 Mbits/sec 0.086 ms 1635/10311 (16%) +[UE1] [2025-07-19 14:33:54] [ 5] 25.00-26.00 sec 11.4 MBytes 95.6 Mbits/sec 0.104 ms 1265/9518 (13%) +[UE1] [2025-07-19 14:33:55] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 2161/10992 (20%) +[UE1] [2025-07-19 14:33:56] [ 5] 27.00-28.00 sec 12.8 MBytes 107 Mbits/sec 0.078 ms 1523/10777 (14%) +[UE1] [2025-07-19 14:33:57] [ 5] 28.00-29.00 sec 12.0 MBytes 101 Mbits/sec 0.110 ms 1411/10105 (14%) +[UE1] [2025-07-19 14:33:58] [ 5] 29.00-30.00 sec 10.8 MBytes 90.4 Mbits/sec 0.111 ms 1382/9187 (15%) +[UE1] [2025-07-19 14:33:59] [ 5] 30.00-31.00 sec 12.0 MBytes 101 Mbits/sec 0.086 ms 2461/11151 (22%) +[UE1] [2025-07-19 14:34:00] [ 5] 31.00-32.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1622/10447 (16%) +[UE1] [2025-07-19 14:34:01] [ 5] 32.00-33.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1686/10510 (16%) +[UE1] [2025-07-19 14:34:02] [ 5] 33.00-34.00 sec 12.0 MBytes 101 Mbits/sec 0.102 ms 1584/10273 (15%) +[UE1] [2025-07-19 14:34:03] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1835/10660 (17%) +[UE1] [2025-07-19 14:34:04] [ 5] 35.00-36.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 1527/10352 (15%) +[UE1] [2025-07-19 14:34:05] [ 5] 36.00-37.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1584/10273 (15%) +[UE1] [2025-07-19 14:34:06] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1618/10443 (15%) +[UE1] [2025-07-19 14:34:07] [ 5] 38.00-39.00 sec 10.8 MBytes 90.6 Mbits/sec 0.075 ms 1361/9182 (15%) +[UE1] [2025-07-19 14:34:08] [ 5] 39.00-40.00 sec 12.0 MBytes 101 Mbits/sec 0.118 ms 2506/11190 (22%) +[UE1] [2025-07-19 14:34:09] [ 5] 40.00-41.00 sec 11.4 MBytes 95.4 Mbits/sec 0.092 ms 1633/9871 (17%) +[UE1] [2025-07-19 14:34:10] [ 5] 41.00-42.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 2010/10833 (19%) +[UE1] [2025-07-19 14:34:11] [ 5] 42.00-43.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1664/10499 (16%) +[UE1] [2025-07-19 14:34:12] [ 5] 43.00-44.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1777/10458 (17%) +[UE1] [2025-07-19 14:34:13] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1534/10356 (15%) +[UE1] [2025-07-19 14:34:14] [ 5] 45.00-46.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1653/10345 (16%) +[UE1] [2025-07-19 14:34:15] [ 5] 46.00-47.00 sec 12.2 MBytes 102 Mbits/sec 0.069 ms 1460/10284 (14%) +[UE1] [2025-07-19 14:34:16] [ 5] 47.00-48.00 sec 12.8 MBytes 107 Mbits/sec 0.083 ms 1478/10741 (14%) +[UE1] [2025-07-19 14:34:17] [ 5] 48.00-49.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1549/10387 (15%) +[UE1] [2025-07-19 14:34:18] [ 5] 49.00-50.00 sec 12.0 MBytes 101 Mbits/sec 0.116 ms 1509/10201 (15%) +[UE1] [2025-07-19 14:34:19] [ 5] 50.00-51.00 sec 11.6 MBytes 97.4 Mbits/sec 0.135 ms 1554/9967 (16%) +[UE1] [2025-07-19 14:34:20] [ 5] 51.00-52.00 sec 12.5 MBytes 105 Mbits/sec 0.120 ms 1621/10699 (15%) +[UE1] [2025-07-19 14:34:21] [ 5] 52.00-53.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1555/10402 (15%) +[UE1] [2025-07-19 14:34:22] [ 5] 53.00-54.00 sec 11.4 MBytes 95.3 Mbits/sec 0.075 ms 1509/9739 (15%) +[UE1] [2025-07-19 14:34:23] [ 5] 54.00-55.00 sec 12.8 MBytes 107 Mbits/sec 0.081 ms 1827/11088 (16%) +[UE1] [2025-07-19 14:34:24] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1475/10323 (14%) +[UE1] [2025-07-19 14:34:25] [ 5] 56.00-57.00 sec 12.0 MBytes 100 Mbits/sec 0.113 ms 1570/10236 (15%) +[UE1] [2025-07-19 14:34:26] [ 5] 57.00-58.00 sec 11.5 MBytes 96.8 Mbits/sec 0.108 ms 1643/9997 (16%) +[UE1] [2025-07-19 14:34:27] [ 5] 58.00-59.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 2083/10781 (19%) +[UE1] [2025-07-19 14:34:28] [ 5] 59.00-60.00 sec 12.2 MBytes 103 Mbits/sec 0.097 ms 1574/10424 (15%) +[UE1] [2025-07-19 14:34:29] [ 5] 60.00-61.00 sec 12.0 MBytes 101 Mbits/sec 0.093 ms 1481/10165 (15%) +[UE1] [2025-07-19 14:34:30] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1446/10274 (14%) +[UE1] [2025-07-19 14:34:31] [ 5] 62.00-63.00 sec 11.4 MBytes 95.8 Mbits/sec 0.076 ms 1662/9928 (17%) +[UE1] [2025-07-19 14:34:32] [ 5] 63.00-64.00 sec 12.8 MBytes 107 Mbits/sec 0.080 ms 1788/11033 (16%) +[UE1] [2025-07-19 14:34:33] [ 5] 64.00-65.00 sec 11.4 MBytes 95.7 Mbits/sec 0.120 ms 1441/9699 (15%) +[UE1] [2025-07-19 14:34:34] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 2000/10828 (18%) +[UE1] [2025-07-19 14:34:35] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1484/10310 (14%) +[UE1] [2025-07-19 14:34:36] [ 5] 67.00-68.00 sec 12.0 MBytes 101 Mbits/sec 0.076 ms 1405/10090 (14%) +[UE1] [2025-07-19 14:34:37] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1626/10461 (16%) +[UE1] [2025-07-19 14:34:38] [ 5] 69.00-70.00 sec 12.0 MBytes 100 Mbits/sec 0.114 ms 1597/10262 (16%) +[UE1] [2025-07-19 14:34:39] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1603/10441 (15%) +[UE1] [2025-07-19 14:34:40] [ 5] 71.00-72.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1491/10319 (14%) +[UE1] [2025-07-19 14:34:41] [ 5] 72.00-73.00 sec 12.0 MBytes 100 Mbits/sec 0.092 ms 1598/10271 (16%) +[UE1] [2025-07-19 14:34:42] [ 5] 73.00-74.00 sec 12.8 MBytes 107 Mbits/sec 0.088 ms 1678/10939 (15%) +[UE1] [2025-07-19 14:34:43] [ 5] 74.00-75.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1530/10364 (15%) +[UE1] [2025-07-19 14:34:44] [ 5] 75.00-76.00 sec 11.4 MBytes 95.5 Mbits/sec 0.086 ms 1335/9578 (14%) +[UE1] [2025-07-19 14:34:45] [ 5] 76.00-77.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1865/10703 (17%) +[UE1] [2025-07-19 14:34:46] [ 5] 77.00-78.00 sec 11.4 MBytes 95.4 Mbits/sec 0.124 ms 1533/9771 (16%) +[UE1] [2025-07-19 14:34:47] [ 5] 78.00-79.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 2212/11035 (20%) +[UE1] [2025-07-19 14:34:48] [ 5] 79.00-80.00 sec 12.0 MBytes 101 Mbits/sec 0.109 ms 1708/10399 (16%) +[UE1] [2025-07-19 14:34:49] [ 5] 80.00-81.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1437/10255 (14%) +[UE1] [2025-07-19 14:34:50] [ 5] 81.00-82.00 sec 12.0 MBytes 101 Mbits/sec 0.107 ms 1680/10370 (16%) +[UE1] [2025-07-19 14:34:51] [ 5] 82.00-83.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1515/10353 (15%) +[UE1] [2025-07-19 14:34:52] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1593/10411 (15%) +[UE1] [2025-07-19 14:34:53] [ 5] 84.00-85.00 sec 12.6 MBytes 106 Mbits/sec 0.085 ms 1530/10650 (14%) +[UE1] [2025-07-19 14:34:54] [ 5] 85.00-86.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1505/10330 (15%) +[UE1] [2025-07-19 14:34:55] [ 5] 86.00-87.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1536/10519 (15%) +[UE1] [2025-07-19 14:34:56] [ 5] 87.00-88.00 sec 11.8 MBytes 98.8 Mbits/sec 0.102 ms 1642/10173 (16%) +[UE1] [2025-07-19 14:34:57] [ 5] 88.00-89.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1290/10114 (13%) +[UE1] [2025-07-19 14:34:58] [ 5] 89.00-90.00 sec 12.0 MBytes 101 Mbits/sec 0.101 ms 1676/10366 (16%) +[UE1] [2025-07-19 14:34:59] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1608/10432 (15%) +[UE1] [2025-07-19 14:35:00] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1347/10172 (13%) +[UE1] [2025-07-19 14:35:01] [ 5] 92.00-93.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 1632/10321 (16%) +[UE1] [2025-07-19 14:35:02] [ 5] 93.00-94.00 sec 12.2 MBytes 103 Mbits/sec 0.788 ms 1607/10457 (15%) +[UE1] [2025-07-19 14:35:03] [ 5] 94.00-95.00 sec 12.0 MBytes 100 Mbits/sec 0.119 ms 1433/10089 (14%) +[UE1] [2025-07-19 14:35:04] [ 5] 95.00-96.00 sec 12.8 MBytes 107 Mbits/sec 0.095 ms 1754/11028 (16%) +[UE1] [2025-07-19 14:35:05] [ 5] 96.00-97.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1302/10124 (13%) +[UE1] [2025-07-19 14:35:06] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1560/10389 (15%) +[UE1] [2025-07-19 14:35:07] [ 5] 98.00-99.00 sec 11.6 MBytes 97.4 Mbits/sec 0.089 ms 1580/9985 (16%) +[UE1] [2025-07-19 14:35:09] [ 5] 99.00-100.00 sec 12.6 MBytes 105 Mbits/sec 0.093 ms 1819/10917 (17%) +[UE1] [2025-07-19 14:35:10] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.137 ms 0/2712 (0%) +[UE1] [2025-07-19 14:35:11] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:12] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2589 (0%) +[UE1] [2025-07-19 14:35:13] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.174 ms 0/2588 (0%) +[UE1] [2025-07-19 14:35:14] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:15] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2592 (0%) +[UE1] [2025-07-19 14:35:16] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.121 ms 0/2587 (0%) +[UE1] [2025-07-19 14:35:17] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2593 (0%) +[UE1] [2025-07-19 14:35:18] [ 5] 8.00-9.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2588 (0%) +[UE1] [2025-07-19 14:35:19] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE1] [2025-07-19 14:35:20] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:21] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.231 ms 0/2587 (0%) +[UE1] [2025-07-19 14:35:22] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.137 ms 0/2586 (0%) +[UE1] [2025-07-19 14:35:23] [ 5] 13.00-14.00 sec 3.58 MBytes 30.1 Mbits/sec 0.255 ms 0/2596 (0%) +[UE1] [2025-07-19 14:35:24] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:25] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:26] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.186 ms 0/2587 (0%) +[UE1] [2025-07-19 14:35:27] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:28] [ 5] 18.00-19.00 sec 3.57 MBytes 29.9 Mbits/sec 0.444 ms 0/2584 (0%) +[UE1] [2025-07-19 14:35:29] [ 5] 19.00-20.00 sec 3.58 MBytes 30.1 Mbits/sec 0.220 ms 0/2596 (0%) +[UE1] [2025-07-19 14:35:30] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2591 (0%) +[UE1] [2025-07-19 14:35:31] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.127 ms 0/2586 (0%) +[UE1] [2025-07-19 14:35:32] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2594 (0%) +[UE1] [2025-07-19 14:35:33] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:34] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:35] [ 5] 25.00-26.00 sec 3.57 MBytes 30.0 Mbits/sec 0.286 ms 0/2587 (0%) +[UE1] [2025-07-19 14:35:36] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:37] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2591 (0%) +[UE1] [2025-07-19 14:35:38] [ 5] 28.00-29.00 sec 3.57 MBytes 30.0 Mbits/sec 0.197 ms 0/2588 (0%) +[UE1] [2025-07-19 14:35:39] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:40] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.310 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:41] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2591 (0%) +[UE1] [2025-07-19 14:35:42] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2589 (0%) +[UE1] [2025-07-19 14:35:43] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2592 (0%) +[UE1] [2025-07-19 14:35:44] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:45] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.203 ms 0/2587 (0%) +[UE1] [2025-07-19 14:35:46] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.277 ms 0/2589 (0%) +[UE1] [2025-07-19 14:35:47] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2591 (0%) +[UE1] [2025-07-19 14:35:48] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2589 (0%) +[UE1] [2025-07-19 14:35:49] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2593 (0%) +[UE1] [2025-07-19 14:35:50] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.194 ms 0/2587 (0%) +[UE1] [2025-07-19 14:35:51] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.277 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:52] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:53] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2589 (0%) +[UE1] [2025-07-19 14:35:54] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2590 (0%) +[UE1] [2025-07-19 14:35:55] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2592 (0%) +[UE1] [2025-07-19 14:35:56] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.159 ms 0/2588 (0%) +[UE1] [2025-07-19 14:35:57] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2592 (0%) +[UE1] [2025-07-19 14:35:58] [ 5] 48.00-49.00 sec 3.57 MBytes 30.0 Mbits/sec 0.139 ms 0/2588 (0%) +[UE1] [2025-07-19 14:35:59] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:00] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.330 ms 0/2592 (0%) +[UE1] [2025-07-19 14:36:01] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.343 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:02] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2593 (0%) +[UE1] [2025-07-19 14:36:03] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.124 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:04] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:05] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE1] [2025-07-19 14:36:06] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:07] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:08] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2591 (0%) +[UE1] [2025-07-19 14:36:09] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:10] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.211 ms 0/2588 (0%) +[UE1] [2025-07-19 14:36:11] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:12] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:13] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2592 (0%) +[UE1] [2025-07-19 14:36:14] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.195 ms 0/2588 (0%) +[UE1] [2025-07-19 14:36:15] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:16] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2591 (0%) +[UE1] [2025-07-19 14:36:17] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:18] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:19] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2591 (0%) +[UE1] [2025-07-19 14:36:20] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:21] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2591 (0%) +[UE1] [2025-07-19 14:36:22] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.185 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:23] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2593 (0%) +[UE1] [2025-07-19 14:36:24] [ 5] 74.00-75.00 sec 3.57 MBytes 30.0 Mbits/sec 0.236 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:25] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2593 (0%) +[UE1] [2025-07-19 14:36:26] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:27] [ 5] 77.00-78.00 sec 3.57 MBytes 29.9 Mbits/sec 0.218 ms 0/2585 (0%) +[UE1] [2025-07-19 14:36:28] [ 5] 78.00-79.00 sec 3.58 MBytes 30.1 Mbits/sec 0.170 ms 0/2595 (0%) +[UE1] [2025-07-19 14:36:29] [ 5] 79.00-80.00 sec 3.57 MBytes 30.0 Mbits/sec 0.150 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:30] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:31] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:32] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2592 (0%) +[UE1] [2025-07-19 14:36:33] [ 5] 83.00-84.00 sec 3.57 MBytes 30.0 Mbits/sec 0.285 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:34] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:35] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2591 (0%) +[UE1] [2025-07-19 14:36:36] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.258 ms 0/2586 (0%) +[UE1] [2025-07-19 14:36:37] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2592 (0%) +[UE1] [2025-07-19 14:36:38] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.421 ms 0/2591 (0%) +[UE1] [2025-07-19 14:36:39] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2592 (0%) +[UE1] [2025-07-19 14:36:40] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:41] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2589 (0%) +[UE1] [2025-07-19 14:36:42] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.108 ms 0/2593 (0%) +[UE1] [2025-07-19 14:36:43] [ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 0.233 ms 0/2587 (0%) +[UE1] [2025-07-19 14:36:44] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:45] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:46] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2592 (0%) +[UE1] [2025-07-19 14:36:47] [ 5] 97.00-98.00 sec 3.57 MBytes 29.9 Mbits/sec 0.204 ms 0/2585 (0%) +[UE1] [2025-07-19 14:36:48] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2592 (0%) +[UE1] [2025-07-19 14:36:49] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2590 (0%) +[UE1] [2025-07-19 14:36:51] [ 5] 0.00-1.00 sec 9.25 MBytes 77.6 Mbits/sec 0.177 ms 0/6696 (0%) +[UE1] [2025-07-19 14:36:52] [ 5] 1.00-2.00 sec 12.0 MBytes 101 Mbits/sec 0.183 ms 0/8719 (0%) +[UE1] [2025-07-19 14:36:53] [ 5] 2.00-3.00 sec 11.0 MBytes 91.9 Mbits/sec 0.085 ms 922/8856 (10%) +[UE1] [2025-07-19 14:36:54] [ 5] 3.00-4.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1615/10445 (15%) +[UE1] [2025-07-19 14:36:55] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1597/10414 (15%) +[UE1] [2025-07-19 14:36:56] [ 5] 5.00-6.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 1578/10851 (15%) +[UE1] [2025-07-19 14:36:57] [ 5] 6.00-7.00 sec 11.4 MBytes 95.5 Mbits/sec 0.104 ms 1372/9620 (14%) +[UE1] [2025-07-19 14:36:58] [ 5] 7.00-8.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1991/10809 (18%) +[UE1] [2025-07-19 14:36:59] [ 5] 8.00-9.00 sec 12.0 MBytes 101 Mbits/sec 0.083 ms 1509/10207 (15%) +[UE1] [2025-07-19 14:37:00] [ 5] 9.00-10.00 sec 11.4 MBytes 95.5 Mbits/sec 0.072 ms 1791/10035 (18%) +[UE1] [2025-07-19 14:37:01] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1673/10506 (16%) +[UE1] [2025-07-19 14:37:02] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1623/10440 (16%) +[UE1] [2025-07-19 14:37:03] [ 5] 12.00-13.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1494/10182 (15%) +[UE1] [2025-07-19 14:37:04] [ 5] 13.00-14.00 sec 12.8 MBytes 107 Mbits/sec 0.121 ms 1773/11026 (16%) +[UE1] [2025-07-19 14:37:05] [ 5] 14.00-15.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1311/10146 (13%) +[UE1] [2025-07-19 14:37:06] [ 5] 15.00-16.00 sec 12.8 MBytes 107 Mbits/sec 0.071 ms 1306/10572 (12%) +[UE1] [2025-07-19 14:37:07] [ 5] 16.00-17.00 sec 12.0 MBytes 100 Mbits/sec 0.086 ms 1381/10054 (14%) +[UE1] [2025-07-19 14:37:08] [ 5] 17.00-18.00 sec 12.2 MBytes 102 Mbits/sec 0.099 ms 1551/10389 (15%) +[UE1] [2025-07-19 14:37:09] [ 5] 18.00-19.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1493/10185 (15%) +[UE1] [2025-07-19 14:37:10] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1461/10270 (14%) +[UE1] [2025-07-19 14:37:11] [ 5] 20.00-21.00 sec 10.8 MBytes 90.6 Mbits/sec 0.078 ms 1746/9568 (18%) +[UE1] [2025-07-19 14:37:12] [ 5] 21.00-22.00 sec 12.1 MBytes 102 Mbits/sec 0.121 ms 2353/11130 (21%) +[UE1] [2025-07-19 14:37:13] [ 5] 22.00-23.00 sec 12.8 MBytes 108 Mbits/sec 0.120 ms 1645/10949 (15%) +[UE1] [2025-07-19 14:37:14] [ 5] 23.00-24.00 sec 12.0 MBytes 101 Mbits/sec 0.116 ms 1573/10267 (15%) +[UE1] [2025-07-19 14:37:15] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1579/10396 (15%) +[UE1] [2025-07-19 14:37:16] [ 5] 25.00-26.00 sec 12.0 MBytes 101 Mbits/sec 0.074 ms 1413/10101 (14%) +[UE1] [2025-07-19 14:37:17] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1372/10205 (13%) +[UE1] [2025-07-19 14:37:18] [ 5] 27.00-28.00 sec 12.0 MBytes 100 Mbits/sec 0.093 ms 2062/10737 (19%) +[UE1] [2025-07-19 14:37:19] [ 5] 28.00-29.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1338/10169 (13%) +[UE1] [2025-07-19 14:37:20] [ 5] 29.00-30.00 sec 12.4 MBytes 104 Mbits/sec 0.071 ms 1467/10441 (14%) +[UE1] [2025-07-19 14:37:21] [ 5] 30.00-31.00 sec 11.2 MBytes 93.8 Mbits/sec 0.114 ms 1535/9635 (16%) +[UE1] [2025-07-19 14:37:22] [ 5] 31.00-32.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1925/10624 (18%) +[UE1] [2025-07-19 14:37:23] [ 5] 32.00-33.00 sec 12.2 MBytes 102 Mbits/sec 0.116 ms 1670/10489 (16%) +[UE1] [2025-07-19 14:37:24] [ 5] 33.00-34.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1508/10335 (15%) +[UE1] [2025-07-19 14:37:25] [ 5] 34.00-35.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1729/10414 (17%) +[UE1] [2025-07-19 14:37:26] [ 5] 35.00-36.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1528/10355 (15%) +[UE1] [2025-07-19 14:37:27] [ 5] 36.00-37.00 sec 12.0 MBytes 101 Mbits/sec 0.082 ms 1572/10256 (15%) +[UE1] [2025-07-19 14:37:28] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1452/10287 (14%) +[UE1] [2025-07-19 14:37:29] [ 5] 38.00-39.00 sec 12.8 MBytes 107 Mbits/sec 0.086 ms 1693/10938 (15%) +[UE1] [2025-07-19 14:37:30] [ 5] 39.00-40.00 sec 11.4 MBytes 95.7 Mbits/sec 0.096 ms 1403/9661 (15%) +[UE1] [2025-07-19 14:37:31] [ 5] 40.00-41.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1742/10578 (16%) +[UE1] [2025-07-19 14:37:32] [ 5] 41.00-42.00 sec 11.0 MBytes 92.5 Mbits/sec 0.139 ms 1461/9444 (15%) +[UE1] [2025-07-19 14:37:33] [ 5] 42.00-43.00 sec 11.7 MBytes 98.5 Mbits/sec 0.071 ms 2608/11112 (23%) +[UE1] [2025-07-19 14:37:34] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1759/10587 (17%) +[UE1] [2025-07-19 14:37:35] [ 5] 44.00-45.00 sec 12.0 MBytes 101 Mbits/sec 0.104 ms 1521/10209 (15%) +[UE1] [2025-07-19 14:37:36] [ 5] 45.00-46.00 sec 13.0 MBytes 109 Mbits/sec 0.097 ms 1632/11033 (15%) +[UE1] [2025-07-19 14:37:37] [ 5] 46.00-47.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 1480/10156 (15%) +[UE1] [2025-07-19 14:37:38] [ 5] 47.00-48.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1473/10300 (14%) +[UE1] [2025-07-19 14:37:39] [ 5] 48.00-49.00 sec 12.0 MBytes 101 Mbits/sec 0.068 ms 1384/10078 (14%) +[UE1] [2025-07-19 14:37:40] [ 5] 49.00-50.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1572/10389 (15%) +[UE1] [2025-07-19 14:37:41] [ 5] 50.00-51.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1643/10471 (16%) +[UE1] [2025-07-19 14:37:42] [ 5] 51.00-52.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1545/10238 (15%) +[UE1] [2025-07-19 14:37:43] [ 5] 52.00-53.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1644/10462 (16%) +[UE1] [2025-07-19 14:37:44] [ 5] 53.00-54.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1561/10249 (15%) +[UE1] [2025-07-19 14:37:45] [ 5] 54.00-55.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1708/10541 (16%) +[UE1] [2025-07-19 14:37:46] [ 5] 55.00-56.00 sec 12.8 MBytes 107 Mbits/sec 0.105 ms 1373/10644 (13%) +[UE1] [2025-07-19 14:37:47] [ 5] 56.00-57.00 sec 12.2 MBytes 102 Mbits/sec 0.117 ms 1414/10223 (14%) +[UE1] [2025-07-19 14:37:48] [ 5] 57.00-58.00 sec 12.0 MBytes 101 Mbits/sec 0.082 ms 1494/10188 (15%) +[UE1] [2025-07-19 14:37:49] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1566/10402 (15%) +[UE1] [2025-07-19 14:37:50] [ 5] 59.00-60.00 sec 12.0 MBytes 100 Mbits/sec 0.100 ms 1647/10314 (16%) +[UE1] [2025-07-19 14:37:51] [ 5] 60.00-61.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1357/10193 (13%) +[UE1] [2025-07-19 14:37:52] [ 5] 61.00-62.00 sec 11.4 MBytes 95.4 Mbits/sec 0.090 ms 1470/9709 (15%) +[UE1] [2025-07-19 14:37:53] [ 5] 62.00-63.00 sec 12.2 MBytes 102 Mbits/sec 0.056 ms 2528/11358 (22%) +[UE1] [2025-07-19 14:37:54] [ 5] 63.00-64.00 sec 12.0 MBytes 101 Mbits/sec 0.107 ms 1551/10231 (15%) +[UE1] [2025-07-19 14:37:55] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1414/10242 (14%) +[UE1] [2025-07-19 14:37:56] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1774/10612 (17%) +[UE1] [2025-07-19 14:37:57] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1437/10263 (14%) +[UE1] [2025-07-19 14:37:58] [ 5] 67.00-68.00 sec 12.0 MBytes 100 Mbits/sec 0.101 ms 1528/10203 (15%) +[UE1] [2025-07-19 14:37:59] [ 5] 68.00-69.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1437/10124 (14%) +[UE1] [2025-07-19 14:38:00] [ 5] 69.00-70.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1589/10412 (15%) +[UE1] [2025-07-19 14:38:01] [ 5] 70.00-71.00 sec 11.4 MBytes 95.7 Mbits/sec 0.079 ms 1499/9758 (15%) +[UE1] [2025-07-19 14:38:02] [ 5] 71.00-72.00 sec 11.4 MBytes 95.4 Mbits/sec 0.089 ms 2342/10580 (22%) +[UE1] [2025-07-19 14:38:03] [ 5] 72.00-73.00 sec 11.6 MBytes 97.4 Mbits/sec 0.095 ms 2654/11062 (24%) +[UE1] [2025-07-19 14:38:04] [ 5] 73.00-74.00 sec 12.8 MBytes 107 Mbits/sec 0.078 ms 1434/10688 (13%) +[UE1] [2025-07-19 14:38:05] [ 5] 74.00-75.00 sec 12.0 MBytes 101 Mbits/sec 0.107 ms 1453/10129 (14%) +[UE1] [2025-07-19 14:38:06] [ 5] 75.00-76.00 sec 11.8 MBytes 98.7 Mbits/sec 0.076 ms 1628/10149 (16%) +[UE1] [2025-07-19 14:38:07] [ 5] 76.00-77.00 sec 11.8 MBytes 99.2 Mbits/sec 0.091 ms 1633/10197 (16%) +[UE1] [2025-07-19 14:38:08] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1730/10558 (16%) +[UE1] [2025-07-19 14:38:09] [ 5] 78.00-79.00 sec 12.0 MBytes 101 Mbits/sec 0.092 ms 1378/10066 (14%) +[UE1] [2025-07-19 14:38:10] [ 5] 79.00-80.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 1610/10869 (15%) +[UE1] [2025-07-19 14:38:11] [ 5] 80.00-81.00 sec 10.8 MBytes 90.6 Mbits/sec 0.094 ms 1223/9041 (14%) +[UE1] [2025-07-19 14:38:12] [ 5] 81.00-82.00 sec 12.8 MBytes 107 Mbits/sec 0.107 ms 2557/11819 (22%) +[UE1] [2025-07-19 14:38:13] [ 5] 82.00-83.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1479/10301 (14%) +[UE1] [2025-07-19 14:38:14] [ 5] 83.00-84.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1364/10048 (14%) +[UE1] [2025-07-19 14:38:15] [ 5] 84.00-85.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1351/10348 (13%) +[UE1] [2025-07-19 14:38:16] [ 5] 85.00-86.00 sec 12.6 MBytes 105 Mbits/sec 0.087 ms 1556/10650 (15%) +[UE1] [2025-07-19 14:38:17] [ 5] 86.00-87.00 sec 12.0 MBytes 100 Mbits/sec 0.092 ms 1547/10222 (15%) +[UE1] [2025-07-19 14:38:18] [ 5] 87.00-88.00 sec 11.6 MBytes 97.4 Mbits/sec 0.098 ms 1445/9850 (15%) +[UE1] [2025-07-19 14:38:19] [ 5] 88.00-89.00 sec 12.8 MBytes 107 Mbits/sec 0.119 ms 1871/11123 (17%) +[UE1] [2025-07-19 14:38:20] [ 5] 89.00-90.00 sec 12.0 MBytes 101 Mbits/sec 0.099 ms 1474/10155 (15%) +[UE1] [2025-07-19 14:38:21] [ 5] 90.00-91.00 sec 10.8 MBytes 90.5 Mbits/sec 0.093 ms 1365/9180 (15%) +[UE1] [2025-07-19 14:38:22] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 2593/11418 (23%) +[UE1] [2025-07-19 14:38:23] [ 5] 92.00-93.00 sec 12.0 MBytes 101 Mbits/sec 0.118 ms 1443/10134 (14%) +[UE1] [2025-07-19 14:38:24] [ 5] 93.00-94.00 sec 12.8 MBytes 107 Mbits/sec 0.086 ms 1580/10853 (15%) +[UE1] [2025-07-19 14:38:25] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.094 ms 1374/10194 (13%) +[UE1] [2025-07-19 14:38:26] [ 5] 95.00-96.00 sec 12.0 MBytes 101 Mbits/sec 0.118 ms 1429/10113 (14%) +[UE1] [2025-07-19 14:38:27] [ 5] 96.00-97.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1522/10357 (15%) +[UE1] [2025-07-19 14:38:28] [ 5] 97.00-98.00 sec 12.8 MBytes 107 Mbits/sec 0.089 ms 1454/10699 (14%) +[UE1] [2025-07-19 14:38:29] [ 5] 98.00-99.00 sec 11.4 MBytes 95.6 Mbits/sec 0.126 ms 1438/9689 (15%) +[UE1] [2025-07-19 14:38:31] [ 5] 99.00-100.00 sec 10.8 MBytes 90.6 Mbits/sec 0.079 ms 1502/9322 (16%) +[UE1] [2025-07-19 14:38:32] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.182 ms 0/2712 (0%) +[UE1] [2025-07-19 14:38:33] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:34] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:35] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:36] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:37] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:38] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2589 (0%) +[UE1] [2025-07-19 14:38:39] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:40] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE1] [2025-07-19 14:38:41] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:42] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:43] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:44] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:45] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.191 ms 0/2588 (0%) +[UE1] [2025-07-19 14:38:46] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2591 (0%) +[UE1] [2025-07-19 14:38:47] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.293 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:48] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.281 ms 0/2592 (0%) +[UE1] [2025-07-19 14:38:49] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:50] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.238 ms 0/2587 (0%) +[UE1] [2025-07-19 14:38:51] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:52] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:53] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:54] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.291 ms 0/2589 (0%) +[UE1] [2025-07-19 14:38:55] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.323 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:56] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2591 (0%) +[UE1] [2025-07-19 14:38:57] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2589 (0%) +[UE1] [2025-07-19 14:38:58] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE1] [2025-07-19 14:38:59] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:00] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:01] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2592 (0%) +[UE1] [2025-07-19 14:39:02] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:03] [ 5] 31.00-32.00 sec 3.57 MBytes 30.0 Mbits/sec 0.205 ms 0/2588 (0%) +[UE1] [2025-07-19 14:39:04] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:05] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:06] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.268 ms 0/2588 (0%) +[UE1] [2025-07-19 14:39:07] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:08] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:09] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:10] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:11] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:12] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:13] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:14] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:15] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:16] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:17] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:18] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2592 (0%) +[UE1] [2025-07-19 14:39:19] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.115 ms 0/2587 (0%) +[UE1] [2025-07-19 14:39:20] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:21] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.294 ms 0/2586 (0%) +[UE1] [2025-07-19 14:39:22] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2593 (0%) +[UE1] [2025-07-19 14:39:23] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:24] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:25] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:26] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.390 ms 0/2587 (0%) +[UE1] [2025-07-19 14:39:27] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2592 (0%) +[UE1] [2025-07-19 14:39:28] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:29] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:30] [ 5] 58.00-59.00 sec 3.55 MBytes 29.8 Mbits/sec 0.224 ms 15/2588 (0.58%) +[UE1] [2025-07-19 14:39:31] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:32] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:33] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:34] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:35] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2592 (0%) +[UE1] [2025-07-19 14:39:36] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.175 ms 0/2587 (0%) +[UE1] [2025-07-19 14:39:37] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:38] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:39] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:40] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.358 ms 0/2587 (0%) +[UE1] [2025-07-19 14:39:41] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2593 (0%) +[UE1] [2025-07-19 14:39:42] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:43] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:44] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.223 ms 0/2588 (0%) +[UE1] [2025-07-19 14:39:45] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:46] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2591 (0%) +[UE1] [2025-07-19 14:39:47] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.245 ms 0/2588 (0%) +[UE1] [2025-07-19 14:39:48] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:49] [ 5] 77.00-78.00 sec 3.57 MBytes 30.0 Mbits/sec 0.168 ms 0/2588 (0%) +[UE1] [2025-07-19 14:39:50] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2592 (0%) +[UE1] [2025-07-19 14:39:51] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.104 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:52] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:53] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:54] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.121 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:55] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2592 (0%) +[UE1] [2025-07-19 14:39:56] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE1] [2025-07-19 14:39:57] [ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 0.255 ms 0/2588 (0%) +[UE1] [2025-07-19 14:39:58] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE1] [2025-07-19 14:39:59] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.552 ms 0/2586 (0%) +[UE1] [2025-07-19 14:40:00] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.296 ms 0/2592 (0%) +[UE1] [2025-07-19 14:40:01] [ 5] 89.00-90.00 sec 3.58 MBytes 30.1 Mbits/sec 0.200 ms 0/2593 (0%) +[UE1] [2025-07-19 14:40:02] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2589 (0%) +[UE1] [2025-07-19 14:40:03] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE1] [2025-07-19 14:40:04] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2589 (0%) +[UE1] [2025-07-19 14:40:05] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2592 (0%) +[UE1] [2025-07-19 14:40:06] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE1] [2025-07-19 14:40:07] [ 5] 95.00-96.00 sec 3.57 MBytes 29.9 Mbits/sec 0.216 ms 0/2585 (0%) +[UE1] [2025-07-19 14:40:08] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.283 ms 0/2592 (0%) +[UE1] [2025-07-19 14:40:09] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE1] [2025-07-19 14:40:10] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.304 ms 0/2588 (0%) +[UE1] [2025-07-19 14:40:12] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2591 (0%) +[UE1] [2025-07-19 14:40:14] [ 5] 0.00-1.00 sec 9.32 MBytes 78.2 Mbits/sec 0.153 ms 0/6752 (0%) +[UE1] [2025-07-19 14:40:15] [ 5] 1.00-2.00 sec 12.3 MBytes 103 Mbits/sec 0.193 ms 0/8874 (0%) +[UE1] [2025-07-19 14:40:16] [ 5] 2.00-3.00 sec 11.5 MBytes 96.3 Mbits/sec 0.076 ms 793/9104 (8.7%) +[UE1] [2025-07-19 14:40:17] [ 5] 3.00-4.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1447/10282 (14%) +[UE1] [2025-07-19 14:40:18] [ 5] 4.00-5.00 sec 11.4 MBytes 95.8 Mbits/sec 0.072 ms 1539/9805 (16%) +[UE1] [2025-07-19 14:40:19] [ 5] 5.00-6.00 sec 12.8 MBytes 107 Mbits/sec 0.077 ms 2043/11288 (18%) +[UE1] [2025-07-19 14:40:20] [ 5] 6.00-7.00 sec 10.8 MBytes 90.5 Mbits/sec 0.078 ms 1229/9045 (14%) +[UE1] [2025-07-19 14:40:21] [ 5] 7.00-8.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 2307/10987 (21%) +[UE1] [2025-07-19 14:40:22] [ 5] 8.00-9.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1520/10343 (15%) +[UE1] [2025-07-19 14:40:23] [ 5] 9.00-10.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1902/10737 (18%) +[UE1] [2025-07-19 14:40:24] [ 5] 10.00-11.00 sec 12.0 MBytes 101 Mbits/sec 0.091 ms 1536/10217 (15%) +[UE1] [2025-07-19 14:40:25] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1772/10595 (17%) +[UE1] [2025-07-19 14:40:26] [ 5] 12.00-13.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1431/10129 (14%) +[UE1] [2025-07-19 14:40:27] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1570/10388 (15%) +[UE1] [2025-07-19 14:40:28] [ 5] 14.00-15.00 sec 11.4 MBytes 95.7 Mbits/sec 0.080 ms 1426/9687 (15%) +[UE1] [2025-07-19 14:40:29] [ 5] 15.00-16.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 2330/11153 (21%) +[UE1] [2025-07-19 14:40:30] [ 5] 16.00-17.00 sec 12.7 MBytes 107 Mbits/sec 0.118 ms 1415/10611 (13%) +[UE1] [2025-07-19 14:40:31] [ 5] 17.00-18.00 sec 10.9 MBytes 91.3 Mbits/sec 0.103 ms 1978/9864 (20%) +[UE1] [2025-07-19 14:40:32] [ 5] 18.00-19.00 sec 12.0 MBytes 100 Mbits/sec 0.102 ms 1991/10660 (19%) +[UE1] [2025-07-19 14:40:33] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1537/10367 (15%) +[UE1] [2025-07-19 14:40:34] [ 5] 20.00-21.00 sec 11.4 MBytes 95.6 Mbits/sec 0.081 ms 1583/9837 (16%) +[UE1] [2025-07-19 14:40:35] [ 5] 21.00-22.00 sec 12.7 MBytes 106 Mbits/sec 0.096 ms 1784/10951 (16%) +[UE1] [2025-07-19 14:40:36] [ 5] 22.00-23.00 sec 12.3 MBytes 103 Mbits/sec 0.063 ms 1443/10361 (14%) +[UE1] [2025-07-19 14:40:37] [ 5] 23.00-24.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 1490/10173 (15%) +[UE1] [2025-07-19 14:40:38] [ 5] 24.00-25.00 sec 11.4 MBytes 95.6 Mbits/sec 0.089 ms 1351/9608 (14%) +[UE1] [2025-07-19 14:40:39] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 2262/11083 (20%) +[UE1] [2025-07-19 14:40:40] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1542/10374 (15%) +[UE1] [2025-07-19 14:40:41] [ 5] 27.00-28.00 sec 12.0 MBytes 101 Mbits/sec 0.103 ms 1511/10189 (15%) +[UE1] [2025-07-19 14:40:42] [ 5] 28.00-29.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1518/10340 (15%) +[UE1] [2025-07-19 14:40:43] [ 5] 29.00-30.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1531/10362 (15%) +[UE1] [2025-07-19 14:40:44] [ 5] 30.00-31.00 sec 12.6 MBytes 106 Mbits/sec 0.070 ms 1609/10722 (15%) +[UE1] [2025-07-19 14:40:45] [ 5] 31.00-32.00 sec 11.6 MBytes 97.3 Mbits/sec 0.107 ms 1444/9845 (15%) +[UE1] [2025-07-19 14:40:46] [ 5] 32.00-33.00 sec 12.0 MBytes 101 Mbits/sec 0.103 ms 2041/10723 (19%) +[UE1] [2025-07-19 14:40:47] [ 5] 33.00-34.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1480/10309 (14%) +[UE1] [2025-07-19 14:40:48] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1467/10295 (14%) +[UE1] [2025-07-19 14:40:49] [ 5] 35.00-36.00 sec 12.6 MBytes 106 Mbits/sec 0.093 ms 1539/10653 (14%) +[UE1] [2025-07-19 14:40:50] [ 5] 36.00-37.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1482/10305 (14%) +[UE1] [2025-07-19 14:40:51] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1362/10197 (13%) +[UE1] [2025-07-19 14:40:52] [ 5] 38.00-39.00 sec 12.0 MBytes 101 Mbits/sec 0.100 ms 1352/10033 (13%) +[UE1] [2025-07-19 14:40:53] [ 5] 39.00-40.00 sec 10.8 MBytes 90.6 Mbits/sec 0.103 ms 1491/9312 (16%) +[UE1] [2025-07-19 14:40:54] [ 5] 40.00-41.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 3078/11902 (26%) +[UE1] [2025-07-19 14:40:55] [ 5] 41.00-42.00 sec 12.0 MBytes 101 Mbits/sec 0.123 ms 1468/10150 (14%) +[UE1] [2025-07-19 14:40:56] [ 5] 42.00-43.00 sec 11.6 MBytes 97.2 Mbits/sec 0.105 ms 1492/9885 (15%) +[UE1] [2025-07-19 14:40:57] [ 5] 43.00-44.00 sec 12.0 MBytes 101 Mbits/sec 0.113 ms 1929/10617 (18%) +[UE1] [2025-07-19 14:40:58] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1656/10479 (16%) +[UE1] [2025-07-19 14:40:59] [ 5] 45.00-46.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1593/10281 (15%) +[UE1] [2025-07-19 14:41:00] [ 5] 46.00-47.00 sec 12.7 MBytes 106 Mbits/sec 0.048 ms 1570/10743 (15%) +[UE1] [2025-07-19 14:41:01] [ 5] 47.00-48.00 sec 12.5 MBytes 105 Mbits/sec 0.076 ms 1610/10665 (15%) +[UE1] [2025-07-19 14:41:02] [ 5] 48.00-49.00 sec 11.8 MBytes 98.9 Mbits/sec 0.098 ms 1318/9858 (13%) +[UE1] [2025-07-19 14:41:03] [ 5] 49.00-50.00 sec 12.2 MBytes 102 Mbits/sec 0.100 ms 1513/10338 (15%) +[UE1] [2025-07-19 14:41:04] [ 5] 50.00-51.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1500/10331 (15%) +[UE1] [2025-07-19 14:41:05] [ 5] 51.00-52.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1670/10353 (16%) +[UE1] [2025-07-19 14:41:06] [ 5] 52.00-53.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1623/10448 (16%) +[UE1] [2025-07-19 14:41:07] [ 5] 53.00-54.00 sec 12.0 MBytes 101 Mbits/sec 0.117 ms 1336/10022 (13%) +[UE1] [2025-07-19 14:41:08] [ 5] 54.00-55.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1762/10590 (17%) +[UE1] [2025-07-19 14:41:09] [ 5] 55.00-56.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 1438/10693 (13%) +[UE1] [2025-07-19 14:41:10] [ 5] 56.00-57.00 sec 12.2 MBytes 102 Mbits/sec 0.119 ms 1395/10229 (14%) +[UE1] [2025-07-19 14:41:11] [ 5] 57.00-58.00 sec 12.0 MBytes 101 Mbits/sec 0.092 ms 1530/10230 (15%) +[UE1] [2025-07-19 14:41:12] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1475/10294 (14%) +[UE1] [2025-07-19 14:41:13] [ 5] 59.00-60.00 sec 12.2 MBytes 102 Mbits/sec 0.120 ms 1526/10346 (15%) +[UE1] [2025-07-19 14:41:14] [ 5] 60.00-61.00 sec 12.0 MBytes 101 Mbits/sec 2.344 ms 1565/10269 (15%) +[UE1] [2025-07-19 14:41:15] [ 5] 61.00-62.00 sec 12.8 MBytes 107 Mbits/sec 0.071 ms 1519/10752 (14%) +[UE1] [2025-07-19 14:41:16] [ 5] 62.00-63.00 sec 12.2 MBytes 102 Mbits/sec 0.104 ms 1379/10214 (14%) +[UE1] [2025-07-19 14:41:17] [ 5] 63.00-64.00 sec 12.0 MBytes 101 Mbits/sec 0.108 ms 1402/10090 (14%) +[UE1] [2025-07-19 14:41:18] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1468/10291 (14%) +[UE1] [2025-07-19 14:41:19] [ 5] 65.00-66.00 sec 12.0 MBytes 101 Mbits/sec 0.119 ms 1747/10435 (17%) +[UE1] [2025-07-19 14:41:20] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1514/10335 (15%) +[UE1] [2025-07-19 14:41:21] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 2110/10939 (19%) +[UE1] [2025-07-19 14:41:22] [ 5] 68.00-69.00 sec 12.0 MBytes 101 Mbits/sec 0.100 ms 1411/10100 (14%) +[UE1] [2025-07-19 14:41:23] [ 5] 69.00-70.00 sec 12.8 MBytes 107 Mbits/sec 0.112 ms 1422/10676 (13%) +[UE1] [2025-07-19 14:41:24] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1268/10099 (13%) +[UE1] [2025-07-19 14:41:25] [ 5] 71.00-72.00 sec 12.0 MBytes 101 Mbits/sec 0.117 ms 1520/10203 (15%) +[UE1] [2025-07-19 14:41:26] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 1621/10445 (16%) +[UE1] [2025-07-19 14:41:27] [ 5] 73.00-74.00 sec 12.2 MBytes 102 Mbits/sec 0.102 ms 1403/10234 (14%) +[UE1] [2025-07-19 14:41:28] [ 5] 74.00-75.00 sec 12.6 MBytes 106 Mbits/sec 0.109 ms 1677/10804 (16%) +[UE1] [2025-07-19 14:41:29] [ 5] 75.00-76.00 sec 12.4 MBytes 104 Mbits/sec 0.101 ms 1236/10205 (12%) +[UE1] [2025-07-19 14:41:30] [ 5] 76.00-77.00 sec 11.2 MBytes 93.8 Mbits/sec 0.117 ms 1294/9393 (14%) +[UE1] [2025-07-19 14:41:31] [ 5] 77.00-78.00 sec 10.8 MBytes 90.5 Mbits/sec 0.081 ms 1747/9559 (18%) +[UE1] [2025-07-19 14:41:32] [ 5] 78.00-79.00 sec 12.2 MBytes 102 Mbits/sec 0.117 ms 3109/11957 (26%) +[UE1] [2025-07-19 14:41:33] [ 5] 79.00-80.00 sec 12.0 MBytes 100 Mbits/sec 0.102 ms 1623/10289 (16%) +[UE1] [2025-07-19 14:41:34] [ 5] 80.00-81.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1508/10333 (15%) +[UE1] [2025-07-19 14:41:35] [ 5] 81.00-82.00 sec 12.3 MBytes 103 Mbits/sec 0.081 ms 1680/10578 (16%) +[UE1] [2025-07-19 14:41:36] [ 5] 82.00-83.00 sec 11.9 MBytes 99.8 Mbits/sec 0.099 ms 1706/10322 (17%) +[UE1] [2025-07-19 14:41:37] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.119 ms 1604/10428 (15%) +[UE1] [2025-07-19 14:41:38] [ 5] 84.00-85.00 sec 12.0 MBytes 101 Mbits/sec 0.095 ms 1456/10146 (14%) +[UE1] [2025-07-19 14:41:39] [ 5] 85.00-86.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1388/10212 (14%) +[UE1] [2025-07-19 14:41:40] [ 5] 86.00-87.00 sec 12.8 MBytes 107 Mbits/sec 0.121 ms 1431/10698 (13%) +[UE1] [2025-07-19 14:41:41] [ 5] 87.00-88.00 sec 10.8 MBytes 90.4 Mbits/sec 0.113 ms 1341/9149 (15%) +[UE1] [2025-07-19 14:41:42] [ 5] 88.00-89.00 sec 11.4 MBytes 95.7 Mbits/sec 0.124 ms 2327/10586 (22%) +[UE1] [2025-07-19 14:41:43] [ 5] 89.00-90.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 2245/11071 (20%) +[UE1] [2025-07-19 14:41:44] [ 5] 90.00-91.00 sec 12.8 MBytes 107 Mbits/sec 0.074 ms 1521/10775 (14%) +[UE1] [2025-07-19 14:41:45] [ 5] 91.00-92.00 sec 11.4 MBytes 96.0 Mbits/sec 1.004 ms 1328/9612 (14%) +[UE1] [2025-07-19 14:41:46] [ 5] 92.00-93.00 sec 12.7 MBytes 107 Mbits/sec 0.106 ms 1697/10923 (16%) +[UE1] [2025-07-19 14:41:47] [ 5] 93.00-94.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1582/10411 (15%) +[UE1] [2025-07-19 14:41:48] [ 5] 94.00-95.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1474/10161 (15%) +[UE1] [2025-07-19 14:41:49] [ 5] 95.00-96.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1530/10353 (15%) +[UE1] [2025-07-19 14:41:50] [ 5] 96.00-97.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 1449/10138 (14%) +[UE1] [2025-07-19 14:41:51] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1410/10237 (14%) +[UE1] [2025-07-19 14:41:52] [ 5] 98.00-99.00 sec 11.4 MBytes 95.5 Mbits/sec 0.078 ms 2025/10268 (20%) +[UE1] [2025-07-19 14:41:54] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.069 ms 1918/10756 (18%) +[UE1] [2025-07-19 14:41:55] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.142 ms 0/2704 (0%) +[UE1] [2025-07-19 14:41:56] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2588 (0%) +[UE1] [2025-07-19 14:41:57] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2592 (0%) +[UE1] [2025-07-19 14:41:58] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE1] [2025-07-19 14:41:59] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:00] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:01] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:02] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:03] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:04] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:05] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2591 (0%) +[UE1] [2025-07-19 14:42:06] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2586 (0%) +[UE1] [2025-07-19 14:42:07] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2593 (0%) +[UE1] [2025-07-19 14:42:08] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:09] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:10] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:11] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:12] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:13] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:14] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:15] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.282 ms 0/2588 (0%) +[UE1] [2025-07-19 14:42:16] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.105 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:17] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2593 (0%) +[UE1] [2025-07-19 14:42:18] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:19] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:20] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:21] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:22] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.288 ms 0/2588 (0%) +[UE1] [2025-07-19 14:42:23] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2591 (0%) +[UE1] [2025-07-19 14:42:24] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:25] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:26] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:27] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.151 ms 0/2587 (0%) +[UE1] [2025-07-19 14:42:28] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2593 (0%) +[UE1] [2025-07-19 14:42:29] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:30] [ 5] 35.00-36.00 sec 3.53 MBytes 29.6 Mbits/sec 0.597 ms 0/2557 (0%) +[UE1] [2025-07-19 14:42:31] [ 5] 36.00-37.00 sec 3.62 MBytes 30.4 Mbits/sec 0.234 ms 0/2620 (0%) +[UE1] [2025-07-19 14:42:32] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2592 (0%) +[UE1] [2025-07-19 14:42:33] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:34] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:35] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.288 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:36] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:37] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.202 ms 0/2587 (0%) +[UE1] [2025-07-19 14:42:38] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.271 ms 0/2593 (0%) +[UE1] [2025-07-19 14:42:39] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:40] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:41] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:42] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:43] [ 5] 48.00-49.00 sec 3.57 MBytes 30.0 Mbits/sec 0.261 ms 0/2588 (0%) +[UE1] [2025-07-19 14:42:44] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2592 (0%) +[UE1] [2025-07-19 14:42:45] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:46] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:47] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.299 ms 0/2588 (0%) +[UE1] [2025-07-19 14:42:48] [ 5] 53.00-54.00 sec 3.57 MBytes 29.9 Mbits/sec 0.185 ms 0/2585 (0%) +[UE1] [2025-07-19 14:42:49] [ 5] 54.00-55.00 sec 3.59 MBytes 30.1 Mbits/sec 0.220 ms 0/2598 (0%) +[UE1] [2025-07-19 14:42:50] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:51] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:52] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:53] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:54] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.311 ms 0/2591 (0%) +[UE1] [2025-07-19 14:42:55] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2589 (0%) +[UE1] [2025-07-19 14:42:56] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.360 ms 0/2587 (0%) +[UE1] [2025-07-19 14:42:57] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2592 (0%) +[UE1] [2025-07-19 14:42:58] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2590 (0%) +[UE1] [2025-07-19 14:42:59] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:00] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:01] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:02] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:03] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2589 (0%) +[UE1] [2025-07-19 14:43:04] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:05] [ 5] 70.00-71.00 sec 3.57 MBytes 29.9 Mbits/sec 0.363 ms 0/2582 (0%) +[UE1] [2025-07-19 14:43:06] [ 5] 71.00-72.00 sec 3.59 MBytes 30.1 Mbits/sec 0.213 ms 0/2598 (0%) +[UE1] [2025-07-19 14:43:07] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.325 ms 0/2587 (0%) +[UE1] [2025-07-19 14:43:08] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2592 (0%) +[UE1] [2025-07-19 14:43:09] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.364 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:10] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:11] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:12] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE1] [2025-07-19 14:43:13] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:14] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:15] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:16] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:17] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2589 (0%) +[UE1] [2025-07-19 14:43:18] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:19] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:20] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:21] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2587 (0%) +[UE1] [2025-07-19 14:43:22] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2592 (0%) +[UE1] [2025-07-19 14:43:23] [ 5] 88.00-89.00 sec 3.57 MBytes 29.9 Mbits/sec 0.197 ms 0/2582 (0%) +[UE1] [2025-07-19 14:43:24] [ 5] 89.00-90.00 sec 3.58 MBytes 30.1 Mbits/sec 0.224 ms 0/2595 (0%) +[UE1] [2025-07-19 14:43:25] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:26] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2593 (0%) +[UE1] [2025-07-19 14:43:27] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE1] [2025-07-19 14:43:28] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.326 ms 0/2590 (0%) +[UE1] [2025-07-19 14:43:29] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2587 (0%) +[UE1] [2025-07-19 14:43:30] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2593 (0%) +[UE1] [2025-07-19 14:43:31] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2588 (0%) +[UE1] [2025-07-19 14:43:32] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2592 (0%) +[UE1] [2025-07-19 14:43:33] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2589 (0%) +[UE1] [2025-07-19 14:43:34] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE2_iperfc.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE2_iperfc.log new file mode 100644 index 000000000..dc908e785 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE2_iperfc.log @@ -0,0 +1,5000 @@ +[UE3] [2025-07-19 11:34:39] [ 5] 0.00-1.00 sec 7.23 MBytes 60.6 Mbits/sec 0.164 ms 0/5233 (0%) +[UE3] [2025-07-19 11:34:40] [ 5] 1.00-2.00 sec 9.62 MBytes 80.7 Mbits/sec 0.089 ms 644/7611 (8.5%) +[UE3] [2025-07-19 11:34:41] [ 5] 2.00-3.00 sec 11.0 MBytes 92.5 Mbits/sec 0.116 ms 2597/10582 (25%) +[UE3] [2025-07-19 11:34:42] [ 5] 3.00-4.00 sec 10.1 MBytes 85.0 Mbits/sec 0.092 ms 2706/10046 (27%) +[UE3] [2025-07-19 11:34:43] [ 5] 4.00-5.00 sec 10.3 MBytes 86.7 Mbits/sec 0.109 ms 2695/10177 (26%) +[UE3] [2025-07-19 11:34:44] [ 5] 5.00-6.00 sec 10.1 MBytes 85.0 Mbits/sec 0.097 ms 2686/10022 (27%) +[UE3] [2025-07-19 11:34:45] [ 5] 6.00-7.00 sec 11.0 MBytes 92.0 Mbits/sec 0.118 ms 3161/11098 (28%) +[UE3] [2025-07-19 11:34:46] [ 5] 7.00-8.00 sec 10.1 MBytes 85.0 Mbits/sec 0.077 ms 2680/10016 (27%) +[UE3] [2025-07-19 11:34:47] [ 5] 8.00-9.00 sec 10.3 MBytes 86.8 Mbits/sec 0.077 ms 2783/10275 (27%) +[UE3] [2025-07-19 11:34:48] [ 5] 9.00-10.00 sec 10.1 MBytes 85.1 Mbits/sec 0.085 ms 2834/10183 (28%) +[UE3] [2025-07-19 11:34:49] [ 5] 10.00-11.00 sec 10.9 MBytes 91.8 Mbits/sec 0.103 ms 2948/10872 (27%) +[UE3] [2025-07-19 11:34:50] [ 5] 11.00-12.00 sec 9.67 MBytes 81.2 Mbits/sec 0.128 ms 2677/9683 (28%) +[UE3] [2025-07-19 11:34:51] [ 5] 12.00-13.00 sec 11.0 MBytes 91.8 Mbits/sec 0.079 ms 3179/11110 (29%) +[UE3] [2025-07-19 11:34:52] [ 5] 13.00-14.00 sec 10.1 MBytes 85.0 Mbits/sec 0.075 ms 2567/9902 (26%) +[UE3] [2025-07-19 11:34:53] [ 5] 14.00-15.00 sec 10.4 MBytes 86.8 Mbits/sec 0.080 ms 2941/10437 (28%) +[UE3] [2025-07-19 11:34:54] [ 5] 15.00-16.00 sec 10.1 MBytes 85.0 Mbits/sec 0.076 ms 2822/10163 (28%) +[UE3] [2025-07-19 11:34:55] [ 5] 16.00-17.00 sec 11.0 MBytes 91.9 Mbits/sec 0.098 ms 2943/10875 (27%) +[UE3] [2025-07-19 11:34:56] [ 5] 17.00-18.00 sec 9.51 MBytes 79.8 Mbits/sec 3.010 ms 2634/9523 (28%) +[UE3] [2025-07-19 11:34:57] [ 5] 18.00-19.00 sec 11.0 MBytes 91.9 Mbits/sec 0.122 ms 3245/11179 (29%) +[UE3] [2025-07-19 11:34:58] [ 5] 19.00-20.00 sec 10.3 MBytes 86.7 Mbits/sec 0.071 ms 2777/10264 (27%) +[UE3] [2025-07-19 11:34:59] [ 5] 20.00-21.00 sec 9.55 MBytes 80.1 Mbits/sec 0.112 ms 2469/9388 (26%) +[UE3] [2025-07-19 11:35:00] [ 5] 21.00-22.00 sec 10.1 MBytes 85.0 Mbits/sec 0.114 ms 3506/10846 (32%) +[UE3] [2025-07-19 11:35:01] [ 5] 22.00-23.00 sec 11.0 MBytes 91.9 Mbits/sec 0.096 ms 3143/11075 (28%) +[UE3] [2025-07-19 11:35:02] [ 5] 23.00-24.00 sec 10.3 MBytes 86.7 Mbits/sec 0.072 ms 2752/10240 (27%) +[UE3] [2025-07-19 11:35:03] [ 5] 24.00-25.00 sec 10.1 MBytes 85.0 Mbits/sec 0.073 ms 2751/10091 (27%) +[UE3] [2025-07-19 11:35:04] [ 5] 25.00-26.00 sec 10.1 MBytes 85.1 Mbits/sec 0.122 ms 2701/10048 (27%) +[UE3] [2025-07-19 11:35:05] [ 5] 26.00-27.00 sec 9.72 MBytes 81.6 Mbits/sec 0.069 ms 2624/9665 (27%) +[UE3] [2025-07-19 11:35:06] [ 5] 27.00-28.00 sec 9.54 MBytes 80.1 Mbits/sec 0.100 ms 3587/10499 (34%) +[UE3] [2025-07-19 11:35:07] [ 5] 28.00-29.00 sec 10.1 MBytes 85.0 Mbits/sec 0.111 ms 3736/11070 (34%) +[UE3] [2025-07-19 11:35:08] [ 5] 29.00-30.00 sec 10.3 MBytes 86.1 Mbits/sec 0.093 ms 3040/10474 (29%) +[UE3] [2025-07-19 11:35:09] [ 5] 30.00-31.00 sec 10.3 MBytes 86.8 Mbits/sec 0.074 ms 2975/10469 (28%) +[UE3] [2025-07-19 11:35:10] [ 5] 31.00-32.00 sec 10.1 MBytes 85.0 Mbits/sec 0.076 ms 3008/10348 (29%) +[UE3] [2025-07-19 11:35:11] [ 5] 32.00-33.00 sec 10.3 MBytes 86.7 Mbits/sec 0.126 ms 2961/10444 (28%) +[UE3] [2025-07-19 11:35:12] [ 5] 33.00-34.00 sec 10.2 MBytes 85.3 Mbits/sec 0.122 ms 2935/10298 (29%) +[UE3] [2025-07-19 11:35:13] [ 5] 34.00-35.00 sec 10.3 MBytes 86.8 Mbits/sec 0.093 ms 3019/10511 (29%) +[UE3] [2025-07-19 11:35:14] [ 5] 35.00-36.00 sec 10.1 MBytes 85.0 Mbits/sec 0.085 ms 2782/10123 (27%) +[UE3] [2025-07-19 11:35:15] [ 5] 36.00-37.00 sec 10.3 MBytes 86.7 Mbits/sec 0.110 ms 2849/10331 (28%) +[UE3] [2025-07-19 11:35:16] [ 5] 37.00-38.00 sec 10.1 MBytes 85.1 Mbits/sec 0.098 ms 2892/10237 (28%) +[UE3] [2025-07-19 11:35:17] [ 5] 38.00-39.00 sec 9.52 MBytes 79.9 Mbits/sec 0.119 ms 2674/9569 (28%) +[UE3] [2025-07-19 11:35:18] [ 5] 39.00-40.00 sec 10.3 MBytes 86.8 Mbits/sec 0.063 ms 3451/10940 (32%) +[UE3] [2025-07-19 11:35:19] [ 5] 40.00-41.00 sec 10.1 MBytes 85.0 Mbits/sec 0.076 ms 3259/10595 (31%) +[UE3] [2025-07-19 11:35:20] [ 5] 41.00-42.00 sec 10.3 MBytes 86.8 Mbits/sec 0.101 ms 3201/10694 (30%) +[UE3] [2025-07-19 11:35:21] [ 5] 42.00-43.00 sec 10.2 MBytes 85.2 Mbits/sec 0.124 ms 2868/10222 (28%) +[UE3] [2025-07-19 11:35:22] [ 5] 43.00-44.00 sec 10.3 MBytes 86.6 Mbits/sec 0.078 ms 2897/10380 (28%) +[UE3] [2025-07-19 11:35:23] [ 5] 44.00-45.00 sec 10.1 MBytes 85.0 Mbits/sec 0.077 ms 2969/10305 (29%) +[UE3] [2025-07-19 11:35:24] [ 5] 45.00-46.00 sec 9.73 MBytes 81.6 Mbits/sec 0.088 ms 2732/9776 (28%) +[UE3] [2025-07-19 11:35:25] [ 5] 46.00-47.00 sec 10.2 MBytes 85.2 Mbits/sec 0.110 ms 3144/10500 (30%) +[UE3] [2025-07-19 11:35:26] [ 5] 47.00-48.00 sec 10.1 MBytes 85.2 Mbits/sec 0.071 ms 3028/10378 (29%) +[UE3] [2025-07-19 11:35:27] [ 5] 48.00-49.00 sec 10.3 MBytes 86.8 Mbits/sec 0.082 ms 3145/10635 (30%) +[UE3] [2025-07-19 11:35:28] [ 5] 49.00-50.00 sec 10.1 MBytes 85.1 Mbits/sec 0.086 ms 3047/10392 (29%) +[UE3] [2025-07-19 11:35:29] [ 5] 50.00-51.00 sec 10.3 MBytes 86.7 Mbits/sec 0.087 ms 2905/10388 (28%) +[UE3] [2025-07-19 11:35:30] [ 5] 51.00-52.00 sec 9.53 MBytes 79.9 Mbits/sec 0.081 ms 2952/9853 (30%) +[UE3] [2025-07-19 11:35:31] [ 5] 52.00-53.00 sec 9.53 MBytes 79.9 Mbits/sec 0.074 ms 3368/10268 (33%) +[UE3] [2025-07-19 11:35:32] [ 5] 53.00-54.00 sec 10.3 MBytes 86.8 Mbits/sec 0.082 ms 3155/10648 (30%) +[UE3] [2025-07-19 11:35:33] [ 5] 54.00-55.00 sec 10.1 MBytes 85.0 Mbits/sec 0.078 ms 3250/10586 (31%) +[UE3] [2025-07-19 11:35:34] [ 5] 55.00-56.00 sec 10.3 MBytes 86.7 Mbits/sec 0.093 ms 3185/10667 (30%) +[UE3] [2025-07-19 11:35:35] [ 5] 56.00-57.00 sec 10.1 MBytes 85.0 Mbits/sec 0.102 ms 3023/10364 (29%) +[UE3] [2025-07-19 11:35:36] [ 5] 57.00-58.00 sec 9.56 MBytes 80.2 Mbits/sec 0.109 ms 2600/9523 (27%) +[UE3] [2025-07-19 11:35:37] [ 5] 58.00-59.00 sec 10.3 MBytes 86.7 Mbits/sec 0.072 ms 3139/10626 (30%) +[UE3] [2025-07-19 11:35:38] [ 5] 59.00-60.00 sec 9.52 MBytes 79.9 Mbits/sec 0.107 ms 2772/9668 (29%) +[UE3] [2025-07-19 11:35:39] [ 5] 60.00-61.00 sec 10.1 MBytes 85.0 Mbits/sec 0.117 ms 3757/11093 (34%) +[UE3] [2025-07-19 11:35:40] [ 5] 61.00-62.00 sec 10.3 MBytes 86.8 Mbits/sec 0.106 ms 2974/10466 (28%) +[UE3] [2025-07-19 11:35:41] [ 5] 62.00-63.00 sec 10.1 MBytes 85.0 Mbits/sec 0.083 ms 2891/10232 (28%) +[UE3] [2025-07-19 11:35:42] [ 5] 63.00-64.00 sec 10.3 MBytes 86.8 Mbits/sec 0.083 ms 3321/10811 (31%) +[UE3] [2025-07-19 11:35:43] [ 5] 64.00-65.00 sec 9.53 MBytes 80.0 Mbits/sec 0.104 ms 2819/9722 (29%) +[UE3] [2025-07-19 11:35:44] [ 5] 65.00-66.00 sec 10.3 MBytes 86.7 Mbits/sec 0.081 ms 3310/10800 (31%) +[UE3] [2025-07-19 11:35:45] [ 5] 66.00-67.00 sec 10.1 MBytes 84.5 Mbits/sec 0.129 ms 2935/10226 (29%) +[UE3] [2025-07-19 11:35:46] [ 5] 67.00-68.00 sec 10.3 MBytes 86.7 Mbits/sec 0.102 ms 3159/10646 (30%) +[UE3] [2025-07-19 11:35:47] [ 5] 68.00-69.00 sec 9.55 MBytes 80.1 Mbits/sec 0.120 ms 2619/9535 (27%) +[UE3] [2025-07-19 11:35:48] [ 5] 69.00-70.00 sec 10.5 MBytes 87.7 Mbits/sec 0.139 ms 3431/11007 (31%) +[UE3] [2025-07-19 11:35:49] [ 5] 70.00-71.00 sec 10.0 MBytes 84.0 Mbits/sec 0.094 ms 2783/10037 (28%) +[UE3] [2025-07-19 11:35:50] [ 5] 71.00-72.00 sec 10.4 MBytes 86.9 Mbits/sec 0.264 ms 3087/10592 (29%) +[UE3] [2025-07-19 11:35:51] [ 5] 72.00-73.00 sec 10.1 MBytes 84.8 Mbits/sec 0.115 ms 2747/10062 (27%) +[UE3] [2025-07-19 11:35:52] [ 5] 73.00-74.00 sec 10.4 MBytes 86.9 Mbits/sec 0.121 ms 3071/10573 (29%) +[UE3] [2025-07-19 11:35:53] [ 5] 74.00-75.00 sec 10.1 MBytes 85.0 Mbits/sec 0.076 ms 3298/10637 (31%) +[UE3] [2025-07-19 11:35:54] [ 5] 75.00-76.00 sec 10.3 MBytes 86.6 Mbits/sec 0.124 ms 3010/10486 (29%) +[UE3] [2025-07-19 11:35:55] [ 5] 76.00-77.00 sec 9.54 MBytes 80.1 Mbits/sec 0.098 ms 2916/9828 (30%) +[UE3] [2025-07-19 11:35:56] [ 5] 77.00-78.00 sec 10.1 MBytes 85.1 Mbits/sec 0.104 ms 3067/10417 (29%) +[UE3] [2025-07-19 11:35:58] [ 5] 78.00-79.00 sec 10.3 MBytes 86.6 Mbits/sec 0.076 ms 3209/10687 (30%) +[UE3] [2025-07-19 11:35:58] [ 5] 79.00-80.00 sec 10.1 MBytes 85.0 Mbits/sec 0.073 ms 2876/10212 (28%) +[UE3] [2025-07-19 11:35:59] [ 5] 80.00-81.00 sec 10.3 MBytes 86.8 Mbits/sec 0.077 ms 2947/10441 (28%) +[UE3] [2025-07-19 11:36:00] [ 5] 81.00-82.00 sec 9.55 MBytes 80.1 Mbits/sec 0.086 ms 2749/9665 (28%) +[UE3] [2025-07-19 11:36:01] [ 5] 82.00-83.00 sec 10.1 MBytes 85.0 Mbits/sec 0.087 ms 3354/10690 (31%) +[UE3] [2025-07-19 11:36:02] [ 5] 83.00-84.00 sec 10.3 MBytes 86.8 Mbits/sec 0.098 ms 2979/10473 (28%) +[UE3] [2025-07-19 11:36:03] [ 5] 84.00-85.00 sec 7.49 MBytes 62.8 Mbits/sec 0.111 ms 2330/7754 (30%) +[UE3] [2025-07-19 11:36:04] [ 5] 85.00-86.00 sec 4.66 MBytes 39.1 Mbits/sec 0.075 ms 1304/4679 (28%) +[UE3] [2025-07-19 11:36:05] [ 5] 86.00-87.00 sec 8.94 MBytes 75.0 Mbits/sec 0.119 ms 9895/16369 (60%) +[UE3] [2025-07-19 11:36:06] [ 5] 87.00-88.00 sec 9.52 MBytes 79.9 Mbits/sec 0.124 ms 5176/12071 (43%) +[UE3] [2025-07-19 11:36:07] [ 5] 88.00-89.00 sec 9.52 MBytes 79.9 Mbits/sec 0.114 ms 3638/10534 (35%) +[UE3] [2025-07-19 11:36:08] [ 5] 89.00-90.00 sec 9.75 MBytes 81.8 Mbits/sec 0.094 ms 3465/10528 (33%) +[UE3] [2025-07-19 11:36:09] [ 5] 90.00-91.00 sec 9.50 MBytes 79.7 Mbits/sec 0.123 ms 3278/10160 (32%) +[UE3] [2025-07-19 11:36:10] [ 5] 91.00-92.00 sec 9.56 MBytes 80.2 Mbits/sec 0.093 ms 3256/10179 (32%) +[UE3] [2025-07-19 11:36:11] [ 5] 92.00-93.00 sec 9.52 MBytes 79.9 Mbits/sec 0.091 ms 3574/10469 (34%) +[UE3] [2025-07-19 11:36:12] [ 5] 93.00-94.00 sec 10.1 MBytes 85.0 Mbits/sec 0.078 ms 3676/11017 (33%) +[UE3] [2025-07-19 11:36:13] [ 5] 94.00-95.00 sec 9.72 MBytes 81.5 Mbits/sec 0.112 ms 3012/10051 (30%) +[UE3] [2025-07-19 11:36:14] [ 5] 95.00-96.00 sec 10.1 MBytes 85.1 Mbits/sec 0.092 ms 3254/10602 (31%) +[UE3] [2025-07-19 11:36:15] [ 5] 96.00-97.00 sec 8.91 MBytes 74.7 Mbits/sec 0.091 ms 2920/9373 (31%) +[UE3] [2025-07-19 11:36:16] [ 5] 97.00-98.00 sec 10.1 MBytes 85.1 Mbits/sec 0.081 ms 3791/11138 (34%) +[UE3] [2025-07-19 11:36:17] [ 5] 98.00-99.00 sec 10.4 MBytes 86.9 Mbits/sec 0.075 ms 3271/10775 (30%) +[UE3] [2025-07-19 11:36:19] [ 5] 99.00-100.00 sec 9.53 MBytes 79.9 Mbits/sec 0.111 ms 2997/9897 (30%) +[UE3] [2025-07-19 11:36:21] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.193 ms 0/2697 (0%) +[UE3] [2025-07-19 11:36:22] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.227 ms 0/2587 (0%) +[UE3] [2025-07-19 11:36:23] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.110 ms 0/2592 (0%) +[UE3] [2025-07-19 11:36:24] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.357 ms 0/2592 (0%) +[UE3] [2025-07-19 11:36:25] [ 5] 4.00-5.00 sec 3.57 MBytes 30.0 Mbits/sec 0.162 ms 0/2588 (0%) +[UE3] [2025-07-19 11:36:26] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:27] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE3] [2025-07-19 11:36:28] [ 5] 7.00-8.00 sec 3.55 MBytes 29.8 Mbits/sec 0.344 ms 19/2588 (0.73%) +[UE3] [2025-07-19 11:36:29] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:30] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2594 (0%) +[UE3] [2025-07-19 11:36:31] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.285 ms 0/2587 (0%) +[UE3] [2025-07-19 11:36:32] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:33] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.138 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:34] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:35] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:36] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE3] [2025-07-19 11:36:37] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2591 (0%) +[UE3] [2025-07-19 11:36:38] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2589 (0%) +[UE3] [2025-07-19 11:36:39] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE3] [2025-07-19 11:36:40] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2592 (0%) +[UE3] [2025-07-19 11:36:41] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.154 ms 0/2588 (0%) +[UE3] [2025-07-19 11:36:42] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.138 ms 0/2593 (0%) +[UE3] [2025-07-19 11:36:43] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.195 ms 0/2587 (0%) +[UE3] [2025-07-19 11:36:44] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:45] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:46] [ 5] 25.00-26.00 sec 3.57 MBytes 29.9 Mbits/sec 0.273 ms 0/2584 (0%) +[UE3] [2025-07-19 11:36:47] [ 5] 26.00-27.00 sec 3.58 MBytes 30.1 Mbits/sec 0.213 ms 0/2595 (0%) +[UE3] [2025-07-19 11:36:48] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:49] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:50] [ 5] 29.00-30.00 sec 3.57 MBytes 30.0 Mbits/sec 0.220 ms 0/2587 (0%) +[UE3] [2025-07-19 11:36:51] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.298 ms 0/2592 (0%) +[UE3] [2025-07-19 11:36:52] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:53] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE3] [2025-07-19 11:36:54] [ 5] 33.00-34.00 sec 3.57 MBytes 30.0 Mbits/sec 0.226 ms 0/2588 (0%) +[UE3] [2025-07-19 11:36:55] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2591 (0%) +[UE3] [2025-07-19 11:36:56] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2592 (0%) +[UE3] [2025-07-19 11:36:57] [ 5] 36.00-37.00 sec 3.57 MBytes 30.0 Mbits/sec 0.183 ms 0/2588 (0%) +[UE3] [2025-07-19 11:36:58] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.194 ms 0/2586 (0%) +[UE3] [2025-07-19 11:36:59] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2593 (0%) +[UE3] [2025-07-19 11:37:00] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:01] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.109 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:02] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:03] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.087 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:04] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.239 ms 0/2588 (0%) +[UE3] [2025-07-19 11:37:05] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2593 (0%) +[UE3] [2025-07-19 11:37:06] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:07] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:08] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:09] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:10] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.297 ms 0/2588 (0%) +[UE3] [2025-07-19 11:37:11] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2592 (0%) +[UE3] [2025-07-19 11:37:12] [ 5] 51.00-52.00 sec 3.57 MBytes 29.9 Mbits/sec 0.348 ms 0/2584 (0%) +[UE3] [2025-07-19 11:37:13] [ 5] 52.00-53.00 sec 3.58 MBytes 30.1 Mbits/sec 0.158 ms 0/2595 (0%) +[UE3] [2025-07-19 11:37:14] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:15] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:16] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:17] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:18] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:19] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:20] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:21] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.271 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:22] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.300 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:23] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.172 ms 0/2588 (0%) +[UE3] [2025-07-19 11:37:24] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.138 ms 0/2592 (0%) +[UE3] [2025-07-19 11:37:25] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:26] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:27] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.100 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:28] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:29] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:30] [ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 0.246 ms 0/2588 (0%) +[UE3] [2025-07-19 11:37:31] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:32] [ 5] 71.00-72.00 sec 3.57 MBytes 30.0 Mbits/sec 0.130 ms 0/2588 (0%) +[UE3] [2025-07-19 11:37:33] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:34] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:35] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.306 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:36] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2588 (0%) +[UE3] [2025-07-19 11:37:37] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:38] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:39] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:40] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:41] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:42] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:43] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.112 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:44] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:45] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:46] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:47] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:48] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.298 ms 0/2587 (0%) +[UE3] [2025-07-19 11:37:49] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2593 (0%) +[UE3] [2025-07-19 11:37:50] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:51] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.111 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:52] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.113 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:53] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.350 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:54] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:55] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2591 (0%) +[UE3] [2025-07-19 11:37:56] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:57] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE3] [2025-07-19 11:37:58] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2589 (0%) +[UE3] [2025-07-19 11:37:59] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2591 (0%) +[UE3] [2025-07-19 11:38:00] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2589 (0%) +[UE3] [2025-07-19 11:38:02] [ 5] 0.00-1.00 sec 6.71 MBytes 56.2 Mbits/sec 0.174 ms 0/4856 (0%) +[UE3] [2025-07-19 11:38:03] [ 5] 1.00-2.00 sec 9.22 MBytes 77.4 Mbits/sec 0.079 ms 916/7596 (12%) +[UE3] [2025-07-19 11:38:04] [ 5] 2.00-3.00 sec 9.54 MBytes 80.0 Mbits/sec 0.098 ms 2985/9890 (30%) +[UE3] [2025-07-19 11:38:05] [ 5] 3.00-4.00 sec 10.4 MBytes 86.9 Mbits/sec 0.089 ms 3413/10911 (31%) +[UE3] [2025-07-19 11:38:06] [ 5] 4.00-5.00 sec 9.51 MBytes 79.8 Mbits/sec 0.072 ms 2956/9843 (30%) +[UE3] [2025-07-19 11:38:07] [ 5] 5.00-6.00 sec 9.54 MBytes 80.0 Mbits/sec 0.108 ms 3188/10094 (32%) +[UE3] [2025-07-19 11:38:08] [ 5] 6.00-7.00 sec 10.3 MBytes 86.7 Mbits/sec 0.116 ms 3598/11083 (32%) +[UE3] [2025-07-19 11:38:09] [ 5] 7.00-8.00 sec 10.1 MBytes 85.0 Mbits/sec 0.077 ms 2823/10161 (28%) +[UE3] [2025-07-19 11:38:10] [ 5] 8.00-9.00 sec 10.2 MBytes 85.2 Mbits/sec 0.105 ms 3163/10517 (30%) +[UE3] [2025-07-19 11:38:11] [ 5] 9.00-10.00 sec 9.70 MBytes 81.4 Mbits/sec 0.074 ms 3029/10056 (30%) +[UE3] [2025-07-19 11:38:12] [ 5] 10.00-11.00 sec 9.56 MBytes 80.2 Mbits/sec 0.113 ms 3054/9977 (31%) +[UE3] [2025-07-19 11:38:13] [ 5] 11.00-12.00 sec 9.54 MBytes 80.0 Mbits/sec 3.764 ms 3600/10506 (34%) +[UE3] [2025-07-19 11:38:14] [ 5] 12.00-13.00 sec 10.1 MBytes 84.9 Mbits/sec 0.086 ms 3257/10590 (31%) +[UE3] [2025-07-19 11:38:15] [ 5] 13.00-14.00 sec 9.73 MBytes 81.6 Mbits/sec 0.109 ms 3152/10200 (31%) +[UE3] [2025-07-19 11:38:16] [ 5] 14.00-15.00 sec 9.34 MBytes 78.3 Mbits/sec 0.092 ms 3050/9813 (31%) +[UE3] [2025-07-19 11:38:17] [ 5] 15.00-16.00 sec 9.71 MBytes 81.5 Mbits/sec 0.106 ms 3985/11019 (36%) +[UE3] [2025-07-19 11:38:18] [ 5] 16.00-17.00 sec 9.54 MBytes 80.0 Mbits/sec 0.094 ms 2976/9885 (30%) +[UE3] [2025-07-19 11:38:19] [ 5] 17.00-18.00 sec 9.54 MBytes 80.0 Mbits/sec 0.093 ms 3165/10070 (31%) +[UE3] [2025-07-19 11:38:20] [ 5] 18.00-19.00 sec 10.3 MBytes 86.7 Mbits/sec 0.117 ms 3955/11442 (35%) +[UE3] [2025-07-19 11:38:21] [ 5] 19.00-20.00 sec 10.1 MBytes 85.1 Mbits/sec 0.099 ms 3077/10424 (30%) +[UE3] [2025-07-19 11:38:22] [ 5] 20.00-21.00 sec 10.3 MBytes 86.7 Mbits/sec 0.038 ms 3166/10649 (30%) +[UE3] [2025-07-19 11:38:23] [ 5] 21.00-22.00 sec 9.53 MBytes 79.9 Mbits/sec 0.113 ms 2845/9746 (29%) +[UE3] [2025-07-19 11:38:24] [ 5] 22.00-23.00 sec 10.1 MBytes 85.1 Mbits/sec 0.078 ms 3160/10510 (30%) +[UE3] [2025-07-19 11:38:25] [ 5] 23.00-24.00 sec 9.51 MBytes 79.8 Mbits/sec 0.112 ms 3035/9925 (31%) +[UE3] [2025-07-19 11:38:26] [ 5] 24.00-25.00 sec 10.3 MBytes 86.8 Mbits/sec 0.077 ms 3548/11042 (32%) +[UE3] [2025-07-19 11:38:27] [ 5] 25.00-26.00 sec 9.54 MBytes 80.1 Mbits/sec 0.073 ms 3037/9949 (31%) +[UE3] [2025-07-19 11:38:28] [ 5] 26.00-27.00 sec 9.52 MBytes 79.9 Mbits/sec 0.112 ms 2874/9769 (29%) +[UE3] [2025-07-19 11:38:29] [ 5] 27.00-28.00 sec 9.54 MBytes 80.0 Mbits/sec 0.101 ms 3463/10371 (33%) +[UE3] [2025-07-19 11:38:30] [ 5] 28.00-29.00 sec 9.52 MBytes 79.8 Mbits/sec 0.117 ms 3588/10481 (34%) +[UE3] [2025-07-19 11:38:31] [ 5] 29.00-30.00 sec 10.4 MBytes 86.9 Mbits/sec 0.086 ms 3615/11114 (33%) +[UE3] [2025-07-19 11:38:32] [ 5] 30.00-31.00 sec 9.52 MBytes 79.8 Mbits/sec 3.664 ms 2991/9884 (30%) +[UE3] [2025-07-19 11:38:33] [ 5] 31.00-32.00 sec 10.3 MBytes 86.7 Mbits/sec 0.111 ms 3231/10713 (30%) +[UE3] [2025-07-19 11:38:34] [ 5] 32.00-33.00 sec 9.57 MBytes 80.3 Mbits/sec 0.117 ms 3119/10047 (31%) +[UE3] [2025-07-19 11:38:35] [ 5] 33.00-34.00 sec 10.1 MBytes 85.0 Mbits/sec 0.109 ms 3304/10640 (31%) +[UE3] [2025-07-19 11:38:36] [ 5] 34.00-35.00 sec 9.52 MBytes 79.8 Mbits/sec 0.106 ms 3044/9935 (31%) +[UE3] [2025-07-19 11:38:37] [ 5] 35.00-36.00 sec 10.3 MBytes 86.8 Mbits/sec 0.095 ms 3373/10868 (31%) +[UE3] [2025-07-19 11:38:38] [ 5] 36.00-37.00 sec 9.52 MBytes 79.9 Mbits/sec 0.126 ms 3015/9909 (30%) +[UE3] [2025-07-19 11:38:39] [ 5] 37.00-38.00 sec 10.2 MBytes 85.2 Mbits/sec 0.101 ms 3413/10767 (32%) +[UE3] [2025-07-19 11:38:40] [ 5] 38.00-39.00 sec 10.3 MBytes 86.7 Mbits/sec 0.124 ms 3117/10604 (29%) +[UE3] [2025-07-19 11:38:41] [ 5] 39.00-40.00 sec 9.51 MBytes 79.8 Mbits/sec 0.115 ms 3020/9907 (30%) +[UE3] [2025-07-19 11:38:42] [ 5] 40.00-41.00 sec 9.57 MBytes 80.3 Mbits/sec 0.077 ms 3291/10219 (32%) +[UE3] [2025-07-19 11:38:43] [ 5] 41.00-42.00 sec 9.51 MBytes 79.8 Mbits/sec 0.073 ms 3310/10196 (32%) +[UE3] [2025-07-19 11:38:44] [ 5] 42.00-43.00 sec 10.3 MBytes 86.8 Mbits/sec 0.081 ms 3382/10876 (31%) +[UE3] [2025-07-19 11:38:45] [ 5] 43.00-44.00 sec 9.52 MBytes 79.9 Mbits/sec 0.122 ms 3007/9904 (30%) +[UE3] [2025-07-19 11:38:46] [ 5] 44.00-45.00 sec 9.54 MBytes 80.0 Mbits/sec 0.075 ms 3315/10223 (32%) +[UE3] [2025-07-19 11:38:47] [ 5] 45.00-46.00 sec 10.3 MBytes 86.7 Mbits/sec 0.102 ms 3482/10965 (32%) +[UE3] [2025-07-19 11:38:48] [ 5] 46.00-47.00 sec 10.1 MBytes 85.0 Mbits/sec 0.081 ms 3038/10373 (29%) +[UE3] [2025-07-19 11:38:49] [ 5] 47.00-48.00 sec 9.54 MBytes 80.0 Mbits/sec 0.086 ms 3232/10142 (32%) +[UE3] [2025-07-19 11:38:50] [ 5] 48.00-49.00 sec 9.54 MBytes 80.1 Mbits/sec 0.114 ms 3059/9971 (31%) +[UE3] [2025-07-19 11:38:51] [ 5] 49.00-50.00 sec 10.3 MBytes 86.6 Mbits/sec 0.115 ms 3427/10907 (31%) +[UE3] [2025-07-19 11:38:52] [ 5] 50.00-51.00 sec 9.53 MBytes 80.0 Mbits/sec 0.100 ms 2924/9825 (30%) +[UE3] [2025-07-19 11:38:53] [ 5] 51.00-52.00 sec 9.53 MBytes 79.9 Mbits/sec 0.111 ms 3330/10230 (33%) +[UE3] [2025-07-19 11:38:54] [ 5] 52.00-53.00 sec 10.2 MBytes 85.2 Mbits/sec 0.109 ms 3756/11107 (34%) +[UE3] [2025-07-19 11:38:55] [ 5] 53.00-54.00 sec 9.72 MBytes 81.6 Mbits/sec 0.077 ms 3023/10063 (30%) +[UE3] [2025-07-19 11:38:56] [ 5] 54.00-55.00 sec 10.1 MBytes 84.9 Mbits/sec 0.089 ms 3190/10523 (30%) +[UE3] [2025-07-19 11:38:57] [ 5] 55.00-56.00 sec 8.95 MBytes 75.1 Mbits/sec 0.084 ms 2968/9449 (31%) +[UE3] [2025-07-19 11:38:58] [ 5] 56.00-57.00 sec 9.52 MBytes 79.9 Mbits/sec 0.082 ms 3994/10889 (37%) +[UE3] [2025-07-19 11:38:59] [ 5] 57.00-58.00 sec 10.3 MBytes 86.8 Mbits/sec 0.103 ms 3387/10881 (31%) +[UE3] [2025-07-19 11:39:00] [ 5] 58.00-59.00 sec 10.1 MBytes 84.9 Mbits/sec 0.085 ms 3117/10446 (30%) +[UE3] [2025-07-19 11:39:01] [ 5] 59.00-60.00 sec 8.93 MBytes 74.9 Mbits/sec 0.107 ms 2779/9247 (30%) +[UE3] [2025-07-19 11:39:02] [ 5] 60.00-61.00 sec 10.1 MBytes 84.9 Mbits/sec 0.086 ms 4190/11523 (36%) +[UE3] [2025-07-19 11:39:03] [ 5] 61.00-62.00 sec 9.56 MBytes 80.2 Mbits/sec 0.072 ms 2617/9543 (27%) +[UE3] [2025-07-19 11:39:04] [ 5] 62.00-63.00 sec 9.72 MBytes 81.5 Mbits/sec 0.075 ms 3196/10234 (31%) +[UE3] [2025-07-19 11:39:05] [ 5] 63.00-64.00 sec 9.54 MBytes 80.0 Mbits/sec 0.113 ms 3924/10829 (36%) +[UE3] [2025-07-19 11:39:06] [ 5] 64.00-65.00 sec 10.1 MBytes 85.0 Mbits/sec 0.108 ms 3252/10588 (31%) +[UE3] [2025-07-19 11:39:07] [ 5] 65.00-66.00 sec 8.92 MBytes 74.8 Mbits/sec 0.098 ms 3017/9478 (32%) +[UE3] [2025-07-19 11:39:08] [ 5] 66.00-67.00 sec 10.3 MBytes 86.8 Mbits/sec 0.097 ms 3845/11335 (34%) +[UE3] [2025-07-19 11:39:09] [ 5] 67.00-68.00 sec 9.56 MBytes 80.2 Mbits/sec 0.098 ms 3138/10059 (31%) +[UE3] [2025-07-19 11:39:10] [ 5] 68.00-69.00 sec 10.1 MBytes 84.9 Mbits/sec 0.117 ms 3370/10698 (32%) +[UE3] [2025-07-19 11:39:11] [ 5] 69.00-70.00 sec 9.53 MBytes 79.9 Mbits/sec 0.097 ms 2988/9886 (30%) +[UE3] [2025-07-19 11:39:12] [ 5] 70.00-71.00 sec 10.3 MBytes 86.7 Mbits/sec 0.117 ms 3376/10864 (31%) +[UE3] [2025-07-19 11:39:13] [ 5] 71.00-72.00 sec 10.1 MBytes 85.1 Mbits/sec 0.103 ms 3134/10484 (30%) +[UE3] [2025-07-19 11:39:14] [ 5] 72.00-73.00 sec 9.54 MBytes 80.0 Mbits/sec 0.071 ms 2822/9727 (29%) +[UE3] [2025-07-19 11:39:15] [ 5] 73.00-74.00 sec 9.71 MBytes 81.5 Mbits/sec 0.064 ms 3113/10147 (31%) +[UE3] [2025-07-19 11:39:16] [ 5] 74.00-75.00 sec 9.55 MBytes 80.1 Mbits/sec 0.099 ms 3635/10552 (34%) +[UE3] [2025-07-19 11:39:17] [ 5] 75.00-76.00 sec 9.54 MBytes 80.0 Mbits/sec 0.112 ms 3089/9994 (31%) +[UE3] [2025-07-19 11:39:18] [ 5] 76.00-77.00 sec 9.51 MBytes 79.8 Mbits/sec 0.112 ms 3522/10411 (34%) +[UE3] [2025-07-19 11:39:19] [ 5] 77.00-78.00 sec 10.1 MBytes 85.1 Mbits/sec 0.094 ms 3561/10911 (33%) +[UE3] [2025-07-19 11:39:20] [ 5] 78.00-79.00 sec 9.54 MBytes 80.0 Mbits/sec 0.107 ms 3007/9912 (30%) +[UE3] [2025-07-19 11:39:21] [ 5] 79.00-80.00 sec 10.3 MBytes 86.7 Mbits/sec 0.081 ms 3446/10934 (32%) +[UE3] [2025-07-19 11:39:22] [ 5] 80.00-81.00 sec 9.51 MBytes 79.8 Mbits/sec 0.083 ms 3184/10070 (32%) +[UE3] [2025-07-19 11:39:23] [ 5] 81.00-82.00 sec 10.3 MBytes 86.7 Mbits/sec 0.090 ms 3440/10927 (31%) +[UE3] [2025-07-19 11:39:24] [ 5] 82.00-83.00 sec 9.55 MBytes 80.2 Mbits/sec 0.103 ms 2971/9890 (30%) +[UE3] [2025-07-19 11:39:25] [ 5] 83.00-84.00 sec 8.92 MBytes 74.8 Mbits/sec 0.110 ms 2845/9301 (31%) +[UE3] [2025-07-19 11:39:26] [ 5] 84.00-85.00 sec 9.53 MBytes 79.9 Mbits/sec 0.109 ms 4247/11147 (38%) +[UE3] [2025-07-19 11:39:27] [ 5] 85.00-86.00 sec 9.53 MBytes 79.9 Mbits/sec 3.383 ms 3426/10324 (33%) +[UE3] [2025-07-19 11:39:28] [ 5] 86.00-87.00 sec 9.54 MBytes 80.1 Mbits/sec 0.092 ms 3135/10044 (31%) +[UE3] [2025-07-19 11:39:29] [ 5] 87.00-88.00 sec 10.2 MBytes 85.2 Mbits/sec 0.103 ms 3851/11209 (34%) +[UE3] [2025-07-19 11:39:30] [ 5] 88.00-89.00 sec 9.72 MBytes 81.6 Mbits/sec 0.086 ms 3061/10102 (30%) +[UE3] [2025-07-19 11:39:31] [ 5] 89.00-90.00 sec 9.46 MBytes 79.3 Mbits/sec 0.077 ms 3169/10018 (32%) +[UE3] [2025-07-19 11:39:32] [ 5] 90.00-91.00 sec 10.3 MBytes 86.7 Mbits/sec 0.050 ms 3615/11098 (33%) +[UE3] [2025-07-19 11:39:33] [ 5] 91.00-92.00 sec 8.72 MBytes 73.1 Mbits/sec 0.111 ms 2917/9231 (32%) +[UE3] [2025-07-19 11:39:34] [ 5] 92.00-93.00 sec 9.73 MBytes 81.6 Mbits/sec 0.089 ms 4114/11160 (37%) +[UE3] [2025-07-19 11:39:35] [ 5] 93.00-94.00 sec 10.2 MBytes 85.3 Mbits/sec 0.103 ms 3340/10700 (31%) +[UE3] [2025-07-19 11:39:36] [ 5] 94.00-95.00 sec 9.52 MBytes 79.9 Mbits/sec 0.082 ms 2918/9813 (30%) +[UE3] [2025-07-19 11:39:37] [ 5] 95.00-96.00 sec 10.3 MBytes 86.7 Mbits/sec 0.132 ms 3238/10725 (30%) +[UE3] [2025-07-19 11:39:38] [ 5] 96.00-97.00 sec 9.52 MBytes 79.9 Mbits/sec 0.072 ms 3266/10163 (32%) +[UE3] [2025-07-19 11:39:39] [ 5] 97.00-98.00 sec 9.54 MBytes 80.0 Mbits/sec 0.086 ms 3279/10189 (32%) +[UE3] [2025-07-19 11:39:40] [ 5] 98.00-99.00 sec 10.1 MBytes 85.0 Mbits/sec 0.090 ms 3254/10590 (31%) +[UE3] [2025-07-19 11:39:42] [ 5] 99.00-100.00 sec 10.3 MBytes 86.7 Mbits/sec 0.084 ms 3349/10832 (31%) +[UE3] [2025-07-19 11:39:43] [ 5] 0.00-1.00 sec 3.71 MBytes 31.1 Mbits/sec 0.166 ms 0/2686 (0%) +[UE3] [2025-07-19 11:39:44] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE3] [2025-07-19 11:39:45] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.237 ms 0/2588 (0%) +[UE3] [2025-07-19 11:39:46] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2589 (0%) +[UE3] [2025-07-19 11:39:47] [ 5] 4.00-5.00 sec 3.57 MBytes 30.0 Mbits/sec 0.193 ms 0/2587 (0%) +[UE3] [2025-07-19 11:39:48] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.285 ms 0/2593 (0%) +[UE3] [2025-07-19 11:39:49] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2592 (0%) +[UE3] [2025-07-19 11:39:50] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.244 ms 0/2587 (0%) +[UE3] [2025-07-19 11:39:51] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2592 (0%) +[UE3] [2025-07-19 11:39:52] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.329 ms 0/2590 (0%) +[UE3] [2025-07-19 11:39:53] [ 5] 10.00-11.00 sec 3.57 MBytes 29.9 Mbits/sec 0.380 ms 0/2584 (0%) +[UE3] [2025-07-19 11:39:54] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.119 ms 0/2593 (0%) +[UE3] [2025-07-19 11:39:55] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2593 (0%) +[UE3] [2025-07-19 11:39:56] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2589 (0%) +[UE3] [2025-07-19 11:39:57] [ 5] 14.00-15.00 sec 3.57 MBytes 30.0 Mbits/sec 0.260 ms 0/2588 (0%) +[UE3] [2025-07-19 11:39:58] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2592 (0%) +[UE3] [2025-07-19 11:39:59] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2587 (0%) +[UE3] [2025-07-19 11:40:00] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:01] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2593 (0%) +[UE3] [2025-07-19 11:40:02] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:03] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.197 ms 0/2587 (0%) +[UE3] [2025-07-19 11:40:05] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2591 (0%) +[UE3] [2025-07-19 11:40:05] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:06] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:07] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:08] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:09] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.241 ms 0/2586 (0%) +[UE3] [2025-07-19 11:40:10] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.277 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:11] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:12] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.113 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:13] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2593 (0%) +[UE3] [2025-07-19 11:40:14] [ 5] 31.00-32.00 sec 3.57 MBytes 30.0 Mbits/sec 0.148 ms 0/2586 (0%) +[UE3] [2025-07-19 11:40:15] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:16] [ 5] 33.00-34.00 sec 3.57 MBytes 30.0 Mbits/sec 0.119 ms 0/2588 (0%) +[UE3] [2025-07-19 11:40:17] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2593 (0%) +[UE3] [2025-07-19 11:40:18] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.189 ms 0/2588 (0%) +[UE3] [2025-07-19 11:40:19] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2591 (0%) +[UE3] [2025-07-19 11:40:20] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.216 ms 0/2588 (0%) +[UE3] [2025-07-19 11:40:21] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:22] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:23] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:24] [ 5] 41.00-42.00 sec 3.57 MBytes 30.0 Mbits/sec 0.189 ms 0/2588 (0%) +[UE3] [2025-07-19 11:40:25] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:26] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:27] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2593 (0%) +[UE3] [2025-07-19 11:40:28] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:29] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:30] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.247 ms 0/2587 (0%) +[UE3] [2025-07-19 11:40:31] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.286 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:32] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2591 (0%) +[UE3] [2025-07-19 11:40:33] [ 5] 50.00-51.00 sec 3.57 MBytes 29.9 Mbits/sec 0.315 ms 0/2584 (0%) +[UE3] [2025-07-19 11:40:34] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.284 ms 0/2594 (0%) +[UE3] [2025-07-19 11:40:35] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:36] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2593 (0%) +[UE3] [2025-07-19 11:40:37] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:38] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:39] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.119 ms 0/2587 (0%) +[UE3] [2025-07-19 11:40:40] [ 5] 57.00-58.00 sec 3.57 MBytes 30.0 Mbits/sec 0.242 ms 0/2588 (0%) +[UE3] [2025-07-19 11:40:41] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:42] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:43] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.107 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:44] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:45] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.204 ms 0/2587 (0%) +[UE3] [2025-07-19 11:40:46] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:47] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:48] [ 5] 65.00-66.00 sec 3.57 MBytes 29.9 Mbits/sec 0.099 ms 0/2585 (0%) +[UE3] [2025-07-19 11:40:49] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:50] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:51] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2591 (0%) +[UE3] [2025-07-19 11:40:52] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:53] [ 5] 70.00-71.00 sec 3.57 MBytes 30.0 Mbits/sec 0.174 ms 0/2588 (0%) +[UE3] [2025-07-19 11:40:54] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:55] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2592 (0%) +[UE3] [2025-07-19 11:40:56] [ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 0.146 ms 0/2588 (0%) +[UE3] [2025-07-19 11:40:57] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2589 (0%) +[UE3] [2025-07-19 11:40:58] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2590 (0%) +[UE3] [2025-07-19 11:40:59] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2592 (0%) +[UE3] [2025-07-19 11:41:00] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE3] [2025-07-19 11:41:01] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2589 (0%) +[UE3] [2025-07-19 11:41:02] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2591 (0%) +[UE3] [2025-07-19 11:41:03] [ 5] 80.00-81.00 sec 3.57 MBytes 30.0 Mbits/sec 0.187 ms 0/2588 (0%) +[UE3] [2025-07-19 11:41:04] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 11:41:05] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.292 ms 0/2591 (0%) +[UE3] [2025-07-19 11:41:06] [ 5] 83.00-84.00 sec 3.57 MBytes 30.0 Mbits/sec 0.295 ms 0/2588 (0%) +[UE3] [2025-07-19 11:41:07] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.081 ms 0/2592 (0%) +[UE3] [2025-07-19 11:41:08] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 11:41:09] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2589 (0%) +[UE3] [2025-07-19 11:41:10] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 11:41:11] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2589 (0%) +[UE3] [2025-07-19 11:41:12] [ 5] 89.00-90.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2588 (0%) +[UE3] [2025-07-19 11:41:13] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2592 (0%) +[UE3] [2025-07-19 11:41:14] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.278 ms 0/2588 (0%) +[UE3] [2025-07-19 11:41:15] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE3] [2025-07-19 11:41:16] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2593 (0%) +[UE3] [2025-07-19 11:41:17] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.233 ms 0/2587 (0%) +[UE3] [2025-07-19 11:41:18] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2592 (0%) +[UE3] [2025-07-19 11:41:19] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2591 (0%) +[UE3] [2025-07-19 11:41:20] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.194 ms 0/2586 (0%) +[UE3] [2025-07-19 11:41:21] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2592 (0%) +[UE3] [2025-07-19 11:41:22] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2589 (0%) +[UE3] [2025-07-19 11:41:25] [ 5] 0.00-1.00 sec 7.28 MBytes 61.1 Mbits/sec 0.142 ms 0/5273 (0%) +[UE3] [2025-07-19 11:41:26] [ 5] 1.00-2.00 sec 9.00 MBytes 75.5 Mbits/sec 0.093 ms 565/7085 (8%) +[UE3] [2025-07-19 11:41:27] [ 5] 2.00-3.00 sec 9.52 MBytes 79.8 Mbits/sec 0.083 ms 3134/10027 (31%) +[UE3] [2025-07-19 11:41:28] [ 5] 3.00-4.00 sec 10.1 MBytes 85.0 Mbits/sec 0.074 ms 3436/10776 (32%) +[UE3] [2025-07-19 11:41:29] [ 5] 4.00-5.00 sec 9.72 MBytes 81.5 Mbits/sec 0.099 ms 3006/10045 (30%) +[UE3] [2025-07-19 11:41:30] [ 5] 5.00-6.00 sec 10.1 MBytes 85.1 Mbits/sec 0.115 ms 3245/10594 (31%) +[UE3] [2025-07-19 11:41:31] [ 5] 6.00-7.00 sec 9.53 MBytes 79.9 Mbits/sec 0.095 ms 3235/10134 (32%) +[UE3] [2025-07-19 11:41:32] [ 5] 7.00-8.00 sec 10.3 MBytes 86.8 Mbits/sec 0.109 ms 3393/10886 (31%) +[UE3] [2025-07-19 11:41:33] [ 5] 8.00-9.00 sec 10.1 MBytes 84.9 Mbits/sec 0.072 ms 2981/10314 (29%) +[UE3] [2025-07-19 11:41:34] [ 5] 9.00-10.00 sec 10.3 MBytes 86.8 Mbits/sec 0.087 ms 3121/10613 (29%) +[UE3] [2025-07-19 11:41:35] [ 5] 10.00-11.00 sec 10.2 MBytes 85.2 Mbits/sec 0.126 ms 2912/10271 (28%) +[UE3] [2025-07-19 11:41:36] [ 5] 11.00-12.00 sec 9.53 MBytes 79.9 Mbits/sec 0.074 ms 2881/9781 (29%) +[UE3] [2025-07-19 11:41:37] [ 5] 12.00-13.00 sec 9.53 MBytes 79.9 Mbits/sec 0.089 ms 2852/9753 (29%) +[UE3] [2025-07-19 11:41:38] [ 5] 13.00-14.00 sec 10.3 MBytes 86.7 Mbits/sec 0.079 ms 4038/11521 (35%) +[UE3] [2025-07-19 11:41:39] [ 5] 14.00-15.00 sec 9.54 MBytes 80.0 Mbits/sec 0.081 ms 2812/9717 (29%) +[UE3] [2025-07-19 11:41:40] [ 5] 15.00-16.00 sec 10.3 MBytes 86.8 Mbits/sec 0.079 ms 3261/10753 (30%) +[UE3] [2025-07-19 11:41:41] [ 5] 16.00-17.00 sec 10.1 MBytes 85.0 Mbits/sec 0.102 ms 2936/10272 (29%) +[UE3] [2025-07-19 11:41:42] [ 5] 17.00-18.00 sec 9.53 MBytes 80.0 Mbits/sec 0.073 ms 3016/9919 (30%) +[UE3] [2025-07-19 11:41:43] [ 5] 18.00-19.00 sec 9.54 MBytes 80.0 Mbits/sec 0.085 ms 2993/9900 (30%) +[UE3] [2025-07-19 11:41:44] [ 5] 19.00-20.00 sec 10.3 MBytes 86.8 Mbits/sec 0.104 ms 3970/11464 (35%) +[UE3] [2025-07-19 11:41:45] [ 5] 20.00-21.00 sec 10.1 MBytes 85.1 Mbits/sec 0.127 ms 2949/10294 (29%) +[UE3] [2025-07-19 11:41:46] [ 5] 21.00-22.00 sec 9.92 MBytes 83.2 Mbits/sec 0.126 ms 2973/10156 (29%) +[UE3] [2025-07-19 11:41:47] [ 5] 22.00-23.00 sec 9.33 MBytes 78.3 Mbits/sec 0.125 ms 2907/9662 (30%) +[UE3] [2025-07-19 11:41:48] [ 5] 23.00-24.00 sec 10.1 MBytes 85.1 Mbits/sec 0.088 ms 4104/11453 (36%) +[UE3] [2025-07-19 11:41:49] [ 5] 24.00-25.00 sec 9.52 MBytes 79.9 Mbits/sec 0.082 ms 2938/9832 (30%) +[UE3] [2025-07-19 11:41:50] [ 5] 25.00-26.00 sec 10.3 MBytes 86.7 Mbits/sec 0.081 ms 3094/10576 (29%) +[UE3] [2025-07-19 11:41:51] [ 5] 26.00-27.00 sec 10.2 MBytes 85.2 Mbits/sec 0.121 ms 3195/10549 (30%) +[UE3] [2025-07-19 11:41:52] [ 5] 27.00-28.00 sec 10.1 MBytes 84.7 Mbits/sec 0.114 ms 3058/10366 (30%) +[UE3] [2025-07-19 11:41:53] [ 5] 28.00-29.00 sec 9.79 MBytes 82.1 Mbits/sec 0.077 ms 2940/10029 (29%) +[UE3] [2025-07-19 11:41:54] [ 5] 29.00-30.00 sec 10.1 MBytes 85.0 Mbits/sec 0.111 ms 3132/10466 (30%) +[UE3] [2025-07-19 11:41:55] [ 5] 30.00-31.00 sec 10.4 MBytes 86.9 Mbits/sec 0.097 ms 3130/10631 (29%) +[UE3] [2025-07-19 11:41:56] [ 5] 31.00-32.00 sec 10.1 MBytes 84.9 Mbits/sec 0.093 ms 3142/10474 (30%) +[UE3] [2025-07-19 11:41:57] [ 5] 32.00-33.00 sec 9.73 MBytes 81.6 Mbits/sec 0.076 ms 2860/9906 (29%) +[UE3] [2025-07-19 11:41:58] [ 5] 33.00-34.00 sec 10.1 MBytes 85.1 Mbits/sec 0.118 ms 3086/10435 (30%) +[UE3] [2025-07-19 11:41:59] [ 5] 34.00-35.00 sec 10.1 MBytes 85.1 Mbits/sec 0.117 ms 3216/10566 (30%) +[UE3] [2025-07-19 11:42:00] [ 5] 35.00-36.00 sec 9.72 MBytes 81.5 Mbits/sec 0.084 ms 2926/9962 (29%) +[UE3] [2025-07-19 11:42:01] [ 5] 36.00-37.00 sec 10.1 MBytes 85.0 Mbits/sec 0.087 ms 3125/10462 (30%) +[UE3] [2025-07-19 11:42:02] [ 5] 37.00-38.00 sec 9.55 MBytes 80.1 Mbits/sec 0.096 ms 3234/10149 (32%) +[UE3] [2025-07-19 11:42:03] [ 5] 38.00-39.00 sec 9.54 MBytes 80.0 Mbits/sec 0.128 ms 3147/10054 (31%) +[UE3] [2025-07-19 11:42:04] [ 5] 39.00-40.00 sec 10.3 MBytes 86.7 Mbits/sec 0.119 ms 3707/11189 (33%) +[UE3] [2025-07-19 11:42:05] [ 5] 40.00-41.00 sec 10.3 MBytes 86.8 Mbits/sec 0.075 ms 3289/10783 (31%) +[UE3] [2025-07-19 11:42:06] [ 5] 41.00-42.00 sec 9.53 MBytes 79.9 Mbits/sec 0.094 ms 2748/9649 (28%) +[UE3] [2025-07-19 11:42:07] [ 5] 42.00-43.00 sec 9.52 MBytes 79.8 Mbits/sec 0.190 ms 2870/9763 (29%) +[UE3] [2025-07-19 11:42:08] [ 5] 43.00-44.00 sec 9.54 MBytes 80.0 Mbits/sec 0.070 ms 3902/10808 (36%) +[UE3] [2025-07-19 11:42:09] [ 5] 44.00-45.00 sec 10.2 MBytes 85.3 Mbits/sec 0.074 ms 3163/10523 (30%) +[UE3] [2025-07-19 11:42:10] [ 5] 45.00-46.00 sec 9.52 MBytes 79.9 Mbits/sec 0.121 ms 3080/9976 (31%) +[UE3] [2025-07-19 11:42:11] [ 5] 46.00-47.00 sec 10.3 MBytes 86.7 Mbits/sec 0.094 ms 3392/10874 (31%) +[UE3] [2025-07-19 11:42:12] [ 5] 47.00-48.00 sec 9.51 MBytes 79.8 Mbits/sec 0.075 ms 3006/9896 (30%) +[UE3] [2025-07-19 11:42:13] [ 5] 48.00-49.00 sec 9.56 MBytes 80.2 Mbits/sec 0.109 ms 3067/9989 (31%) +[UE3] [2025-07-19 11:42:14] [ 5] 49.00-50.00 sec 9.51 MBytes 79.8 Mbits/sec 0.076 ms 3903/10789 (36%) +[UE3] [2025-07-19 11:42:15] [ 5] 50.00-51.00 sec 10.3 MBytes 86.5 Mbits/sec 0.117 ms 3252/10735 (30%) +[UE3] [2025-07-19 11:42:16] [ 5] 51.00-52.00 sec 10.2 MBytes 85.3 Mbits/sec 0.133 ms 3284/10637 (31%) +[UE3] [2025-07-19 11:42:17] [ 5] 52.00-53.00 sec 9.74 MBytes 81.7 Mbits/sec 0.113 ms 2910/9963 (29%) +[UE3] [2025-07-19 11:42:18] [ 5] 53.00-54.00 sec 10.1 MBytes 85.1 Mbits/sec 0.079 ms 3159/10504 (30%) +[UE3] [2025-07-19 11:42:19] [ 5] 54.00-55.00 sec 9.53 MBytes 79.9 Mbits/sec 0.102 ms 2935/9836 (30%) +[UE3] [2025-07-19 11:42:20] [ 5] 55.00-56.00 sec 10.3 MBytes 86.7 Mbits/sec 0.111 ms 3394/10877 (31%) +[UE3] [2025-07-19 11:42:21] [ 5] 56.00-57.00 sec 9.54 MBytes 80.1 Mbits/sec 0.075 ms 2978/9890 (30%) +[UE3] [2025-07-19 11:42:22] [ 5] 57.00-58.00 sec 9.73 MBytes 81.6 Mbits/sec 0.264 ms 3626/10674 (34%) +[UE3] [2025-07-19 11:42:23] [ 5] 58.00-59.00 sec 10.1 MBytes 84.9 Mbits/sec 0.074 ms 3097/10428 (30%) +[UE3] [2025-07-19 11:42:24] [ 5] 59.00-60.00 sec 8.73 MBytes 73.3 Mbits/sec 0.111 ms 2733/9057 (30%) +[UE3] [2025-07-19 11:42:25] [ 5] 60.00-61.00 sec 10.3 MBytes 86.8 Mbits/sec 0.135 ms 4356/11850 (37%) +[UE3] [2025-07-19 11:42:26] [ 5] 61.00-62.00 sec 9.52 MBytes 79.9 Mbits/sec 0.074 ms 2993/9890 (30%) +[UE3] [2025-07-19 11:42:27] [ 5] 62.00-63.00 sec 9.53 MBytes 79.9 Mbits/sec 0.076 ms 3019/9917 (30%) +[UE3] [2025-07-19 11:42:28] [ 5] 63.00-64.00 sec 10.1 MBytes 85.1 Mbits/sec 0.097 ms 3955/11305 (35%) +[UE3] [2025-07-19 11:42:29] [ 5] 64.00-65.00 sec 9.72 MBytes 81.5 Mbits/sec 0.080 ms 2922/9958 (29%) +[UE3] [2025-07-19 11:42:30] [ 5] 65.00-66.00 sec 10.1 MBytes 85.0 Mbits/sec 0.107 ms 3223/10561 (31%) +[UE3] [2025-07-19 11:42:31] [ 5] 66.00-67.00 sec 9.55 MBytes 80.1 Mbits/sec 0.122 ms 2864/9778 (29%) +[UE3] [2025-07-19 11:42:32] [ 5] 67.00-68.00 sec 10.3 MBytes 86.8 Mbits/sec 0.108 ms 3478/10973 (32%) +[UE3] [2025-07-19 11:42:33] [ 5] 68.00-69.00 sec 10.1 MBytes 85.1 Mbits/sec 0.102 ms 3097/10441 (30%) +[UE3] [2025-07-19 11:42:34] [ 5] 69.00-70.00 sec 8.90 MBytes 74.7 Mbits/sec 0.070 ms 2841/9287 (31%) +[UE3] [2025-07-19 11:42:35] [ 5] 70.00-71.00 sec 10.1 MBytes 85.1 Mbits/sec 0.135 ms 4110/11459 (36%) +[UE3] [2025-07-19 11:42:36] [ 5] 71.00-72.00 sec 9.74 MBytes 81.7 Mbits/sec 0.113 ms 2948/9998 (29%) +[UE3] [2025-07-19 11:42:37] [ 5] 72.00-73.00 sec 9.53 MBytes 79.9 Mbits/sec 0.105 ms 2984/9884 (30%) +[UE3] [2025-07-19 11:42:38] [ 5] 73.00-74.00 sec 9.54 MBytes 80.0 Mbits/sec 0.089 ms 3678/10588 (35%) +[UE3] [2025-07-19 11:42:39] [ 5] 74.00-75.00 sec 9.52 MBytes 79.9 Mbits/sec 0.059 ms 3209/10104 (32%) +[UE3] [2025-07-19 11:42:40] [ 5] 75.00-76.00 sec 10.3 MBytes 86.8 Mbits/sec 0.125 ms 3893/11387 (34%) +[UE3] [2025-07-19 11:42:41] [ 5] 76.00-77.00 sec 10.1 MBytes 85.0 Mbits/sec 0.080 ms 2835/10170 (28%) +[UE3] [2025-07-19 11:42:42] [ 5] 77.00-78.00 sec 9.54 MBytes 80.0 Mbits/sec 0.110 ms 3073/9981 (31%) +[UE3] [2025-07-19 11:42:43] [ 5] 78.00-79.00 sec 10.3 MBytes 86.8 Mbits/sec 0.111 ms 3248/10742 (30%) +[UE3] [2025-07-19 11:42:44] [ 5] 79.00-80.00 sec 9.50 MBytes 79.7 Mbits/sec 0.078 ms 3153/10035 (31%) +[UE3] [2025-07-19 11:42:45] [ 5] 80.00-81.00 sec 10.2 MBytes 85.2 Mbits/sec 0.098 ms 3373/10727 (31%) +[UE3] [2025-07-19 11:42:46] [ 5] 81.00-82.00 sec 10.4 MBytes 86.8 Mbits/sec 0.103 ms 3213/10710 (30%) +[UE3] [2025-07-19 11:42:47] [ 5] 82.00-83.00 sec 9.53 MBytes 79.9 Mbits/sec 0.073 ms 2740/9640 (28%) +[UE3] [2025-07-19 11:42:48] [ 5] 83.00-84.00 sec 9.95 MBytes 83.5 Mbits/sec 0.281 ms 3274/10478 (31%) +[UE3] [2025-07-19 11:42:49] [ 5] 84.00-85.00 sec 9.48 MBytes 79.5 Mbits/sec 0.135 ms 3092/9958 (31%) +[UE3] [2025-07-19 11:42:50] [ 5] 85.00-86.00 sec 9.97 MBytes 83.7 Mbits/sec 0.084 ms 3547/10766 (33%) +[UE3] [2025-07-19 11:42:51] [ 5] 86.00-87.00 sec 10.1 MBytes 85.1 Mbits/sec 0.119 ms 3021/10371 (29%) +[UE3] [2025-07-19 11:42:52] [ 5] 87.00-88.00 sec 9.50 MBytes 79.7 Mbits/sec 0.081 ms 3251/10133 (32%) +[UE3] [2025-07-19 11:42:53] [ 5] 88.00-89.00 sec 9.56 MBytes 80.2 Mbits/sec 0.100 ms 3147/10071 (31%) +[UE3] [2025-07-19 11:42:54] [ 5] 89.00-90.00 sec 10.3 MBytes 86.7 Mbits/sec 0.101 ms 3452/10934 (32%) +[UE3] [2025-07-19 11:42:55] [ 5] 90.00-91.00 sec 9.54 MBytes 80.0 Mbits/sec 0.094 ms 3119/10026 (31%) +[UE3] [2025-07-19 11:42:56] [ 5] 91.00-92.00 sec 10.3 MBytes 86.7 Mbits/sec 0.092 ms 3207/10690 (30%) +[UE3] [2025-07-19 11:42:57] [ 5] 92.00-93.00 sec 10.1 MBytes 85.0 Mbits/sec 0.114 ms 3171/10510 (30%) +[UE3] [2025-07-19 11:42:58] [ 5] 93.00-94.00 sec 9.54 MBytes 80.0 Mbits/sec 0.078 ms 2880/9785 (29%) +[UE3] [2025-07-19 11:42:59] [ 5] 94.00-95.00 sec 10.3 MBytes 86.8 Mbits/sec 0.093 ms 3817/11309 (34%) +[UE3] [2025-07-19 11:43:00] [ 5] 95.00-96.00 sec 9.52 MBytes 79.9 Mbits/sec 0.104 ms 2810/9704 (29%) +[UE3] [2025-07-19 11:43:01] [ 5] 96.00-97.00 sec 8.94 MBytes 75.0 Mbits/sec 0.108 ms 3253/9727 (33%) +[UE3] [2025-07-19 11:43:02] [ 5] 97.00-98.00 sec 9.52 MBytes 79.9 Mbits/sec 0.072 ms 4020/10915 (37%) +[UE3] [2025-07-19 11:43:03] [ 5] 98.00-99.00 sec 9.52 MBytes 79.9 Mbits/sec 0.077 ms 3029/9924 (31%) +[UE3] [2025-07-19 11:43:05] [ 5] 99.00-100.00 sec 10.1 MBytes 85.1 Mbits/sec 0.078 ms 3706/11056 (34%) +[UE3] [2025-07-19 11:43:06] [ 5] 0.00-1.00 sec 3.71 MBytes 31.1 Mbits/sec 0.265 ms 0/2684 (0%) +[UE3] [2025-07-19 11:43:07] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.292 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:08] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:09] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.400 ms 0/2591 (0%) +[UE3] [2025-07-19 11:43:10] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.111 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:11] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:12] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:13] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:14] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:15] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:16] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2591 (0%) +[UE3] [2025-07-19 11:43:17] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:18] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2591 (0%) +[UE3] [2025-07-19 11:43:19] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.330 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:20] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.279 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:21] [ 5] 15.00-16.00 sec 3.57 MBytes 29.9 Mbits/sec 0.457 ms 0/2583 (0%) +[UE3] [2025-07-19 11:43:22] [ 5] 16.00-17.00 sec 3.58 MBytes 30.1 Mbits/sec 0.173 ms 0/2596 (0%) +[UE3] [2025-07-19 11:43:23] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.253 ms 0/2587 (0%) +[UE3] [2025-07-19 11:43:24] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2593 (0%) +[UE3] [2025-07-19 11:43:25] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:26] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.316 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:27] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:28] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:29] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:30] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:31] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:32] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.246 ms 0/2588 (0%) +[UE3] [2025-07-19 11:43:33] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.116 ms 0/2592 (0%) +[UE3] [2025-07-19 11:43:34] [ 5] 28.00-29.00 sec 3.57 MBytes 30.0 Mbits/sec 0.278 ms 0/2588 (0%) +[UE3] [2025-07-19 11:43:35] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.305 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:36] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2591 (0%) +[UE3] [2025-07-19 11:43:37] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:38] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2587 (0%) +[UE3] [2025-07-19 11:43:39] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2592 (0%) +[UE3] [2025-07-19 11:43:40] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:41] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.302 ms 0/2587 (0%) +[UE3] [2025-07-19 11:43:42] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2593 (0%) +[UE3] [2025-07-19 11:43:43] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.233 ms 0/2588 (0%) +[UE3] [2025-07-19 11:43:44] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.294 ms 0/2591 (0%) +[UE3] [2025-07-19 11:43:45] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:46] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:47] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:48] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:49] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:50] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.119 ms 0/2591 (0%) +[UE3] [2025-07-19 11:43:51] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:52] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:53] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.353 ms 0/2589 (0%) +[UE3] [2025-07-19 11:43:54] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:55] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:56] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2590 (0%) +[UE3] [2025-07-19 11:43:57] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.204 ms 0/2587 (0%) +[UE3] [2025-07-19 11:43:58] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.312 ms 0/2593 (0%) +[UE3] [2025-07-19 11:43:59] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:00] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.238 ms 0/2587 (0%) +[UE3] [2025-07-19 11:44:01] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2592 (0%) +[UE3] [2025-07-19 11:44:02] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.433 ms 0/2587 (0%) +[UE3] [2025-07-19 11:44:03] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.314 ms 0/2589 (0%) +[UE3] [2025-07-19 11:44:04] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2591 (0%) +[UE3] [2025-07-19 11:44:05] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2593 (0%) +[UE3] [2025-07-19 11:44:06] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2588 (0%) +[UE3] [2025-07-19 11:44:07] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:08] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:09] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:10] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:11] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.300 ms 0/2587 (0%) +[UE3] [2025-07-19 11:44:12] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2592 (0%) +[UE3] [2025-07-19 11:44:13] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2591 (0%) +[UE3] [2025-07-19 11:44:14] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.309 ms 0/2588 (0%) +[UE3] [2025-07-19 11:44:15] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:16] [ 5] 70.00-71.00 sec 3.57 MBytes 29.9 Mbits/sec 0.428 ms 0/2585 (0%) +[UE3] [2025-07-19 11:44:17] [ 5] 71.00-72.00 sec 3.58 MBytes 30.1 Mbits/sec 0.274 ms 0/2596 (0%) +[UE3] [2025-07-19 11:44:18] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2589 (0%) +[UE3] [2025-07-19 11:44:19] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.283 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:20] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE3] [2025-07-19 11:44:21] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:22] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.173 ms 0/2587 (0%) +[UE3] [2025-07-19 11:44:23] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2593 (0%) +[UE3] [2025-07-19 11:44:24] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:25] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2589 (0%) +[UE3] [2025-07-19 11:44:26] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:27] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.272 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:28] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:29] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:30] [ 5] 84.00-85.00 sec 3.57 MBytes 30.0 Mbits/sec 0.238 ms 0/2588 (0%) +[UE3] [2025-07-19 11:44:31] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2591 (0%) +[UE3] [2025-07-19 11:44:32] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.280 ms 0/2587 (0%) +[UE3] [2025-07-19 11:44:33] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2592 (0%) +[UE3] [2025-07-19 11:44:34] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:35] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:36] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.119 ms 0/2587 (0%) +[UE3] [2025-07-19 11:44:37] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2593 (0%) +[UE3] [2025-07-19 11:44:38] [ 5] 92.00-93.00 sec 3.57 MBytes 30.0 Mbits/sec 0.148 ms 0/2588 (0%) +[UE3] [2025-07-19 11:44:39] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2589 (0%) +[UE3] [2025-07-19 11:44:40] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.343 ms 0/2589 (0%) +[UE3] [2025-07-19 11:44:41] [ 5] 95.00-96.00 sec 3.57 MBytes 30.0 Mbits/sec 0.337 ms 0/2588 (0%) +[UE3] [2025-07-19 11:44:42] [ 5] 96.00-97.00 sec 3.58 MBytes 30.1 Mbits/sec 0.159 ms 0/2595 (0%) +[UE3] [2025-07-19 11:44:43] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE3] [2025-07-19 11:44:44] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:45] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE3] [2025-07-19 11:44:48] [ 5] 0.00-1.00 sec 7.73 MBytes 64.9 Mbits/sec 0.214 ms 0/5599 (0%) +[UE3] [2025-07-19 11:44:49] [ 5] 1.00-2.00 sec 8.67 MBytes 72.7 Mbits/sec 0.121 ms 250/6525 (3.8%) +[UE3] [2025-07-19 11:44:50] [ 5] 2.00-3.00 sec 10.2 MBytes 85.3 Mbits/sec 0.121 ms 3243/10608 (31%) +[UE3] [2025-07-19 11:44:51] [ 5] 3.00-4.00 sec 10.3 MBytes 86.7 Mbits/sec 0.109 ms 3097/10581 (29%) +[UE3] [2025-07-19 11:44:52] [ 5] 4.00-5.00 sec 10.1 MBytes 85.1 Mbits/sec 0.116 ms 2919/10262 (28%) +[UE3] [2025-07-19 11:44:53] [ 5] 5.00-6.00 sec 9.73 MBytes 81.6 Mbits/sec 0.077 ms 3002/10047 (30%) +[UE3] [2025-07-19 11:44:54] [ 5] 6.00-7.00 sec 10.1 MBytes 85.0 Mbits/sec 0.077 ms 3524/10865 (32%) +[UE3] [2025-07-19 11:44:55] [ 5] 7.00-8.00 sec 9.52 MBytes 79.9 Mbits/sec 0.092 ms 3099/9993 (31%) +[UE3] [2025-07-19 11:44:56] [ 5] 8.00-9.00 sec 10.3 MBytes 86.8 Mbits/sec 0.113 ms 3362/10853 (31%) +[UE3] [2025-07-19 11:44:57] [ 5] 9.00-10.00 sec 10.2 MBytes 85.2 Mbits/sec 0.138 ms 2975/10326 (29%) +[UE3] [2025-07-19 11:44:58] [ 5] 10.00-11.00 sec 9.57 MBytes 80.3 Mbits/sec 0.290 ms 2965/9896 (30%) +[UE3] [2025-07-19 11:44:59] [ 5] 11.00-12.00 sec 9.50 MBytes 79.6 Mbits/sec 0.086 ms 2772/9648 (29%) +[UE3] [2025-07-19 11:45:00] [ 5] 12.00-13.00 sec 9.72 MBytes 81.6 Mbits/sec 0.117 ms 3977/11017 (36%) +[UE3] [2025-07-19 11:45:01] [ 5] 13.00-14.00 sec 10.1 MBytes 85.1 Mbits/sec 0.091 ms 3152/10500 (30%) +[UE3] [2025-07-19 11:45:02] [ 5] 14.00-15.00 sec 9.52 MBytes 79.9 Mbits/sec 0.113 ms 3145/10042 (31%) +[UE3] [2025-07-19 11:45:03] [ 5] 15.00-16.00 sec 10.3 MBytes 86.6 Mbits/sec 0.092 ms 3485/10965 (32%) +[UE3] [2025-07-19 11:45:04] [ 5] 16.00-17.00 sec 9.54 MBytes 80.0 Mbits/sec 0.074 ms 3124/10034 (31%) +[UE3] [2025-07-19 11:45:05] [ 5] 17.00-18.00 sec 10.1 MBytes 85.0 Mbits/sec 0.106 ms 3380/10716 (32%) +[UE3] [2025-07-19 11:45:06] [ 5] 18.00-19.00 sec 9.72 MBytes 81.6 Mbits/sec 0.131 ms 3011/10053 (30%) +[UE3] [2025-07-19 11:45:07] [ 5] 19.00-20.00 sec 10.2 MBytes 85.3 Mbits/sec 0.103 ms 3038/10402 (29%) +[UE3] [2025-07-19 11:45:08] [ 5] 20.00-21.00 sec 8.91 MBytes 74.7 Mbits/sec 0.084 ms 2646/9099 (29%) +[UE3] [2025-07-19 11:45:09] [ 5] 21.00-22.00 sec 8.73 MBytes 73.2 Mbits/sec 0.079 ms 2951/9273 (32%) +[UE3] [2025-07-19 11:45:10] [ 5] 22.00-23.00 sec 10.3 MBytes 86.7 Mbits/sec 0.071 ms 5159/12641 (41%) +[UE3] [2025-07-19 11:45:11] [ 5] 23.00-24.00 sec 10.3 MBytes 86.8 Mbits/sec 0.128 ms 3137/10627 (30%) +[UE3] [2025-07-19 11:45:12] [ 5] 24.00-25.00 sec 10.1 MBytes 85.0 Mbits/sec 0.111 ms 3219/10559 (30%) +[UE3] [2025-07-19 11:45:13] [ 5] 25.00-26.00 sec 9.54 MBytes 80.1 Mbits/sec 0.093 ms 2683/9595 (28%) +[UE3] [2025-07-19 11:45:14] [ 5] 26.00-27.00 sec 10.4 MBytes 86.9 Mbits/sec 0.095 ms 3399/10898 (31%) +[UE3] [2025-07-19 11:45:15] [ 5] 27.00-28.00 sec 9.51 MBytes 79.8 Mbits/sec 0.089 ms 3174/10060 (32%) +[UE3] [2025-07-19 11:45:16] [ 5] 28.00-29.00 sec 9.54 MBytes 80.0 Mbits/sec 0.088 ms 3247/10153 (32%) +[UE3] [2025-07-19 11:45:17] [ 5] 29.00-30.00 sec 10.3 MBytes 86.6 Mbits/sec 0.105 ms 3405/10883 (31%) +[UE3] [2025-07-19 11:45:18] [ 5] 30.00-31.00 sec 10.1 MBytes 85.1 Mbits/sec 0.099 ms 3032/10378 (29%) +[UE3] [2025-07-19 11:45:19] [ 5] 31.00-32.00 sec 9.54 MBytes 80.0 Mbits/sec 0.070 ms 3069/9974 (31%) +[UE3] [2025-07-19 11:45:20] [ 5] 32.00-33.00 sec 9.92 MBytes 83.3 Mbits/sec 0.086 ms 3014/10201 (30%) +[UE3] [2025-07-19 11:45:21] [ 5] 33.00-34.00 sec 9.41 MBytes 79.0 Mbits/sec 0.074 ms 3162/9979 (32%) +[UE3] [2025-07-19 11:45:22] [ 5] 34.00-35.00 sec 10.1 MBytes 84.6 Mbits/sec 0.089 ms 3631/10935 (33%) +[UE3] [2025-07-19 11:45:23] [ 5] 35.00-36.00 sec 9.26 MBytes 77.7 Mbits/sec 0.093 ms 3371/10079 (33%) +[UE3] [2025-07-19 11:45:24] [ 5] 36.00-37.00 sec 9.46 MBytes 79.4 Mbits/sec 0.104 ms 3498/10349 (34%) +[UE3] [2025-07-19 11:45:25] [ 5] 37.00-38.00 sec 9.27 MBytes 77.8 Mbits/sec 0.103 ms 3340/10056 (33%) +[UE3] [2025-07-19 11:45:26] [ 5] 38.00-39.00 sec 9.43 MBytes 79.1 Mbits/sec 0.132 ms 3634/10463 (35%) +[UE3] [2025-07-19 11:45:27] [ 5] 39.00-40.00 sec 11.7 MBytes 98.2 Mbits/sec 0.097 ms 4151/12629 (33%) +[UE3] [2025-07-19 11:45:28] [ 5] 40.00-41.00 sec 15.4 MBytes 129 Mbits/sec 0.152 ms 1533/12702 (12%) +[UE3] [2025-07-19 11:45:29] [ 5] 41.00-42.00 sec 11.7 MBytes 98.1 Mbits/sec 0.133 ms 47/8518 (0.55%) +[UE3] [2025-07-19 11:45:30] [ 5] 42.00-43.00 sec 14.7 MBytes 124 Mbits/sec 0.200 ms 1540/12217 (13%) +[UE3] [2025-07-19 11:45:31] [ 5] 43.00-44.00 sec 12.8 MBytes 108 Mbits/sec 0.106 ms 35/9336 (0.37%) +[UE3] [2025-07-19 11:45:32] [ 5] 44.00-45.00 sec 15.1 MBytes 127 Mbits/sec 0.127 ms 393/11345 (3.5%) +[UE3] [2025-07-19 11:45:33] [ 5] 45.00-46.00 sec 14.2 MBytes 119 Mbits/sec 0.136 ms 95/10352 (0.92%) +[UE3] [2025-07-19 11:45:34] [ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 0.167 ms 72/10451 (0.69%) +[UE3] [2025-07-19 11:45:35] [ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 0.161 ms 0/10341 (0%) +[UE3] [2025-07-19 11:45:36] [ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 0.127 ms 19/10366 (0.18%) +[UE3] [2025-07-19 11:45:37] [ 5] 49.00-50.00 sec 14.1 MBytes 119 Mbits/sec 0.163 ms 40/10271 (0.39%) +[UE3] [2025-07-19 11:45:38] [ 5] 50.00-51.00 sec 13.9 MBytes 117 Mbits/sec 0.143 ms 108/10189 (1.1%) +[UE3] [2025-07-19 11:45:39] [ 5] 51.00-52.00 sec 14.4 MBytes 121 Mbits/sec 0.174 ms 283/10715 (2.6%) +[UE3] [2025-07-19 11:45:40] [ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 0.200 ms 0/10365 (0%) +[UE3] [2025-07-19 11:45:41] [ 5] 53.00-54.00 sec 14.1 MBytes 118 Mbits/sec 0.167 ms 0/10193 (0%) +[UE3] [2025-07-19 11:45:42] [ 5] 54.00-55.00 sec 12.4 MBytes 104 Mbits/sec 0.083 ms 94/9074 (1%) +[UE3] [2025-07-19 11:45:43] [ 5] 55.00-56.00 sec 15.1 MBytes 126 Mbits/sec 0.205 ms 224/11133 (2%) +[UE3] [2025-07-19 11:45:44] [ 5] 56.00-57.00 sec 14.8 MBytes 124 Mbits/sec 0.103 ms 87/10825 (0.8%) +[UE3] [2025-07-19 11:45:45] [ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 0.168 ms 88/10413 (0.85%) +[UE3] [2025-07-19 11:45:46] [ 5] 58.00-59.00 sec 14.2 MBytes 119 Mbits/sec 0.131 ms 110/10377 (1.1%) +[UE3] [2025-07-19 11:45:47] [ 5] 59.00-60.00 sec 14.1 MBytes 118 Mbits/sec 0.183 ms 77/10255 (0.75%) +[UE3] [2025-07-19 11:45:48] [ 5] 60.00-61.00 sec 14.5 MBytes 122 Mbits/sec 0.139 ms 162/10665 (1.5%) +[UE3] [2025-07-19 11:45:49] [ 5] 61.00-62.00 sec 12.8 MBytes 108 Mbits/sec 0.181 ms 0/9300 (0%) +[UE3] [2025-07-19 11:45:50] [ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 0.194 ms 940/11278 (8.3%) +[UE3] [2025-07-19 11:45:51] [ 5] 63.00-64.00 sec 12.5 MBytes 105 Mbits/sec 0.106 ms 65/9128 (0.71%) +[UE3] [2025-07-19 11:45:52] [ 5] 64.00-65.00 sec 14.5 MBytes 122 Mbits/sec 0.074 ms 124/10636 (1.2%) +[UE3] [2025-07-19 11:45:53] [ 5] 65.00-66.00 sec 14.8 MBytes 124 Mbits/sec 0.141 ms 152/10863 (1.4%) +[UE3] [2025-07-19 11:45:54] [ 5] 66.00-67.00 sec 14.8 MBytes 124 Mbits/sec 0.127 ms 111/10825 (1%) +[UE3] [2025-07-19 11:45:55] [ 5] 67.00-68.00 sec 14.2 MBytes 119 Mbits/sec 0.159 ms 39/10301 (0.38%) +[UE3] [2025-07-19 11:45:56] [ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 0.133 ms 8/10384 (0.077%) +[UE3] [2025-07-19 11:45:57] [ 5] 69.00-70.00 sec 14.0 MBytes 117 Mbits/sec 0.125 ms 0/10143 (0%) +[UE3] [2025-07-19 11:45:58] [ 5] 70.00-71.00 sec 14.2 MBytes 119 Mbits/sec 0.185 ms 248/10536 (2.4%) +[UE3] [2025-07-19 11:45:59] [ 5] 71.00-72.00 sec 12.9 MBytes 109 Mbits/sec 0.178 ms 19/9389 (0.2%) +[UE3] [2025-07-19 11:46:00] [ 5] 72.00-73.00 sec 11.7 MBytes 97.8 Mbits/sec 0.177 ms 987/9434 (10%) +[UE3] [2025-07-19 11:46:01] [ 5] 73.00-74.00 sec 7.44 MBytes 62.4 Mbits/sec 0.084 ms 1062/6453 (16%) +[UE3] [2025-07-19 11:46:02] [ 5] 74.00-75.00 sec 10.1 MBytes 84.4 Mbits/sec 0.093 ms 4759/12045 (40%) +[UE3] [2025-07-19 11:46:03] [ 5] 75.00-76.00 sec 9.27 MBytes 77.8 Mbits/sec 0.073 ms 3286/10002 (33%) +[UE3] [2025-07-19 11:46:04] [ 5] 76.00-77.00 sec 9.48 MBytes 79.5 Mbits/sec 0.104 ms 3460/10323 (34%) +[UE3] [2025-07-19 11:46:05] [ 5] 77.00-78.00 sec 10.0 MBytes 83.9 Mbits/sec 0.120 ms 3515/10760 (33%) +[UE3] [2025-07-19 11:46:06] [ 5] 78.00-79.00 sec 9.25 MBytes 77.6 Mbits/sec 0.112 ms 3319/10018 (33%) +[UE3] [2025-07-19 11:46:07] [ 5] 79.00-80.00 sec 11.1 MBytes 93.4 Mbits/sec 0.120 ms 4033/12098 (33%) +[UE3] [2025-07-19 11:46:08] [ 5] 80.00-81.00 sec 16.2 MBytes 136 Mbits/sec 0.266 ms 1537/13258 (12%) +[UE3] [2025-07-19 11:46:09] [ 5] 81.00-82.00 sec 14.4 MBytes 120 Mbits/sec 0.102 ms 2/10396 (0.019%) +[UE3] [2025-07-19 11:46:10] [ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 0.199 ms 0/10381 (0%) +[UE3] [2025-07-19 11:46:11] [ 5] 83.00-84.00 sec 14.4 MBytes 121 Mbits/sec 0.162 ms 0/10455 (0%) +[UE3] [2025-07-19 11:46:12] [ 5] 84.00-85.00 sec 13.7 MBytes 115 Mbits/sec 0.118 ms 0/9894 (0%) +[UE3] [2025-07-19 11:46:13] [ 5] 85.00-86.00 sec 12.6 MBytes 105 Mbits/sec 0.078 ms 142/9240 (1.5%) +[UE3] [2025-07-19 11:46:14] [ 5] 86.00-87.00 sec 16.2 MBytes 136 Mbits/sec 0.196 ms 107/11822 (0.91%) +[UE3] [2025-07-19 11:46:15] [ 5] 87.00-88.00 sec 14.4 MBytes 121 Mbits/sec 0.107 ms 0/10439 (0%) +[UE3] [2025-07-19 11:46:16] [ 5] 88.00-89.00 sec 14.5 MBytes 121 Mbits/sec 0.147 ms 0/10470 (0%) +[UE3] [2025-07-19 11:46:17] [ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 0.168 ms 0/10379 (0%) +[UE3] [2025-07-19 11:46:18] [ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 0.145 ms 0/10329 (0%) +[UE3] [2025-07-19 11:46:19] [ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 0.165 ms 0/10355 (0%) +[UE3] [2025-07-19 11:46:20] [ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 0.142 ms 0/10357 (0%) +[UE3] [2025-07-19 11:46:21] [ 5] 93.00-94.00 sec 14.2 MBytes 119 Mbits/sec 0.089 ms 0/10304 (0%) +[UE3] [2025-07-19 11:46:22] [ 5] 94.00-95.00 sec 14.4 MBytes 120 Mbits/sec 0.336 ms 0/10394 (0%) +[UE3] [2025-07-19 11:46:23] [ 5] 95.00-96.00 sec 12.1 MBytes 102 Mbits/sec 0.080 ms 359/9134 (3.9%) +[UE3] [2025-07-19 11:46:24] [ 5] 96.00-97.00 sec 13.9 MBytes 116 Mbits/sec 0.088 ms 244/10296 (2.4%) +[UE3] [2025-07-19 11:46:25] [ 5] 97.00-98.00 sec 14.5 MBytes 122 Mbits/sec 0.195 ms 4/10494 (0.038%) +[UE3] [2025-07-19 11:46:26] [ 5] 98.00-99.00 sec 13.9 MBytes 117 Mbits/sec 0.145 ms 510/10569 (4.8%) +[UE3] [2025-07-19 11:46:27] [ 5] 99.00-100.00 sec 15.4 MBytes 129 Mbits/sec 0.183 ms 69/11223 (0.61%) +[UE3] [2025-07-19 11:46:28] [ 5] 0.00-1.00 sec 3.76 MBytes 31.5 Mbits/sec 0.182 ms 0/2723 (0%) +[UE3] [2025-07-19 11:46:29] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2592 (0%) +[UE3] [2025-07-19 11:46:30] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.260 ms 0/2587 (0%) +[UE3] [2025-07-19 11:46:31] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 11:46:32] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE3] [2025-07-19 11:46:33] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE3] [2025-07-19 11:46:34] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2589 (0%) +[UE3] [2025-07-19 11:46:35] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2590 (0%) +[UE3] [2025-07-19 11:46:36] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE3] [2025-07-19 11:46:37] [ 5] 9.00-10.00 sec 3.57 MBytes 30.0 Mbits/sec 0.321 ms 0/2587 (0%) +[UE3] [2025-07-19 11:46:38] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2592 (0%) +[UE3] [2025-07-19 11:46:39] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.161 ms 0/2588 (0%) +[UE3] [2025-07-19 11:46:40] [ 5] 12.00-13.00 sec 3.57 MBytes 29.9 Mbits/sec 0.415 ms 0/2584 (0%) +[UE3] [2025-07-19 11:46:41] [ 5] 13.00-14.00 sec 3.59 MBytes 30.1 Mbits/sec 0.205 ms 0/2597 (0%) +[UE3] [2025-07-19 11:46:42] [ 5] 14.00-15.00 sec 3.57 MBytes 30.0 Mbits/sec 0.274 ms 0/2588 (0%) +[UE3] [2025-07-19 11:46:43] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2592 (0%) +[UE3] [2025-07-19 11:46:44] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.267 ms 0/2590 (0%) +[UE3] [2025-07-19 11:46:45] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2590 (0%) +[UE3] [2025-07-19 11:46:46] [ 5] 18.00-19.00 sec 3.56 MBytes 29.9 Mbits/sec 0.635 ms 0/2577 (0%) +[UE3] [2025-07-19 11:46:47] [ 5] 19.00-20.00 sec 3.59 MBytes 30.1 Mbits/sec 0.517 ms 0/2599 (0%) +[UE3] [2025-07-19 11:46:48] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.508 ms 0/2592 (0%) +[UE3] [2025-07-19 11:46:49] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.568 ms 0/2586 (0%) +[UE3] [2025-07-19 11:46:50] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.570 ms 0/2592 (0%) +[UE3] [2025-07-19 11:46:51] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.543 ms 0/2588 (0%) +[UE3] [2025-07-19 11:46:52] [ 5] 24.00-25.00 sec 3.56 MBytes 29.9 Mbits/sec 0.647 ms 0/2579 (0%) +[UE3] [2025-07-19 11:46:53] [ 5] 25.00-26.00 sec 3.41 MBytes 28.6 Mbits/sec 0.546 ms 0/2466 (0%) +[UE3] [2025-07-19 11:46:54] [ 5] 26.00-27.00 sec 3.76 MBytes 31.5 Mbits/sec 0.634 ms 0/2723 (0%) +[UE3] [2025-07-19 11:46:55] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.428 ms 0/2593 (0%) +[UE3] [2025-07-19 11:46:56] [ 5] 28.00-29.00 sec 3.50 MBytes 29.3 Mbits/sec 0.573 ms 0/2531 (0%) +[UE3] [2025-07-19 11:46:57] [ 5] 29.00-30.00 sec 3.66 MBytes 30.7 Mbits/sec 0.518 ms 0/2650 (0%) +[UE3] [2025-07-19 11:46:58] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.493 ms 0/2587 (0%) +[UE3] [2025-07-19 11:46:59] [ 5] 31.00-32.00 sec 3.37 MBytes 28.2 Mbits/sec 0.584 ms 0/2437 (0%) +[UE3] [2025-07-19 11:47:00] [ 5] 32.00-33.00 sec 3.69 MBytes 30.9 Mbits/sec 0.560 ms 0/2669 (0%) +[UE3] [2025-07-19 11:47:01] [ 5] 33.00-34.00 sec 3.68 MBytes 30.9 Mbits/sec 0.482 ms 0/2664 (0%) +[UE3] [2025-07-19 11:47:02] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.478 ms 0/2592 (0%) +[UE3] [2025-07-19 11:47:03] [ 5] 35.00-36.00 sec 3.54 MBytes 29.7 Mbits/sec 0.550 ms 0/2564 (0%) +[UE3] [2025-07-19 11:47:04] [ 5] 36.00-37.00 sec 3.59 MBytes 30.1 Mbits/sec 0.517 ms 0/2601 (0%) +[UE3] [2025-07-19 11:47:05] [ 5] 37.00-38.00 sec 3.57 MBytes 29.9 Mbits/sec 0.555 ms 0/2584 (0%) +[UE3] [2025-07-19 11:47:06] [ 5] 38.00-39.00 sec 3.60 MBytes 30.2 Mbits/sec 0.547 ms 0/2606 (0%) +[UE3] [2025-07-19 11:47:07] [ 5] 39.00-40.00 sec 3.55 MBytes 29.8 Mbits/sec 0.587 ms 0/2573 (0%) +[UE3] [2025-07-19 11:47:08] [ 5] 40.00-41.00 sec 3.61 MBytes 30.2 Mbits/sec 0.496 ms 0/2611 (0%) +[UE3] [2025-07-19 11:47:09] [ 5] 41.00-42.00 sec 3.57 MBytes 29.9 Mbits/sec 0.458 ms 0/2585 (0%) +[UE3] [2025-07-19 11:47:10] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.463 ms 0/2593 (0%) +[UE3] [2025-07-19 11:47:11] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.564 ms 0/2586 (0%) +[UE3] [2025-07-19 11:47:12] [ 5] 44.00-45.00 sec 3.55 MBytes 29.7 Mbits/sec 0.736 ms 0/2568 (0%) +[UE3] [2025-07-19 11:47:13] [ 5] 45.00-46.00 sec 3.59 MBytes 30.2 Mbits/sec 0.528 ms 0/2603 (0%) +[UE3] [2025-07-19 11:47:14] [ 5] 46.00-47.00 sec 3.59 MBytes 30.1 Mbits/sec 0.664 ms 0/2598 (0%) +[UE3] [2025-07-19 11:47:15] [ 5] 47.00-48.00 sec 3.58 MBytes 30.1 Mbits/sec 0.576 ms 0/2596 (0%) +[UE3] [2025-07-19 11:47:16] [ 5] 48.00-49.00 sec 3.56 MBytes 29.9 Mbits/sec 0.569 ms 0/2577 (0%) +[UE3] [2025-07-19 11:47:17] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.568 ms 0/2587 (0%) +[UE3] [2025-07-19 11:47:18] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.534 ms 0/2594 (0%) +[UE3] [2025-07-19 11:47:19] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.714 ms 0/2585 (0%) +[UE3] [2025-07-19 11:47:20] [ 5] 52.00-53.00 sec 3.56 MBytes 29.9 Mbits/sec 0.669 ms 0/2580 (0%) +[UE3] [2025-07-19 11:47:21] [ 5] 53.00-54.00 sec 3.60 MBytes 30.2 Mbits/sec 0.602 ms 0/2610 (0%) +[UE3] [2025-07-19 11:47:22] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.535 ms 0/2587 (0%) +[UE3] [2025-07-19 11:47:23] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.602 ms 0/2594 (0%) +[UE3] [2025-07-19 11:47:24] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.515 ms 0/2591 (0%) +[UE3] [2025-07-19 11:47:25] [ 5] 57.00-58.00 sec 3.28 MBytes 27.5 Mbits/sec 0.651 ms 0/2377 (0%) +[UE3] [2025-07-19 11:47:26] [ 5] 58.00-59.00 sec 3.78 MBytes 31.7 Mbits/sec 0.608 ms 0/2736 (0%) +[UE3] [2025-07-19 11:47:27] [ 5] 59.00-60.00 sec 3.65 MBytes 30.6 Mbits/sec 0.663 ms 0/2643 (0%) +[UE3] [2025-07-19 11:47:28] [ 5] 60.00-61.00 sec 3.59 MBytes 30.1 Mbits/sec 0.620 ms 0/2600 (0%) +[UE3] [2025-07-19 11:47:29] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.576 ms 0/2591 (0%) +[UE3] [2025-07-19 11:47:30] [ 5] 62.00-63.00 sec 3.52 MBytes 29.5 Mbits/sec 0.488 ms 0/2547 (0%) +[UE3] [2025-07-19 11:47:31] [ 5] 63.00-64.00 sec 3.63 MBytes 30.4 Mbits/sec 0.715 ms 0/2626 (0%) +[UE3] [2025-07-19 11:47:32] [ 5] 64.00-65.00 sec 3.58 MBytes 30.1 Mbits/sec 0.450 ms 0/2596 (0%) +[UE3] [2025-07-19 11:47:33] [ 5] 65.00-66.00 sec 3.57 MBytes 29.9 Mbits/sec 0.547 ms 0/2584 (0%) +[UE3] [2025-07-19 11:47:34] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.562 ms 0/2593 (0%) +[UE3] [2025-07-19 11:47:35] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.501 ms 0/2594 (0%) +[UE3] [2025-07-19 11:47:36] [ 5] 68.00-69.00 sec 3.49 MBytes 29.2 Mbits/sec 0.617 ms 0/2524 (0%) +[UE3] [2025-07-19 11:47:37] [ 5] 69.00-70.00 sec 3.63 MBytes 30.4 Mbits/sec 0.578 ms 0/2627 (0%) +[UE3] [2025-07-19 11:47:38] [ 5] 70.00-71.00 sec 3.56 MBytes 29.8 Mbits/sec 0.544 ms 0/2575 (0%) +[UE3] [2025-07-19 11:47:39] [ 5] 71.00-72.00 sec 3.57 MBytes 30.0 Mbits/sec 0.651 ms 0/2586 (0%) +[UE3] [2025-07-19 11:47:40] [ 5] 72.00-73.00 sec 3.62 MBytes 30.4 Mbits/sec 0.632 ms 0/2621 (0%) +[UE3] [2025-07-19 11:47:41] [ 5] 73.00-74.00 sec 3.57 MBytes 29.9 Mbits/sec 0.504 ms 0/2585 (0%) +[UE3] [2025-07-19 11:47:42] [ 5] 74.00-75.00 sec 3.60 MBytes 30.2 Mbits/sec 0.529 ms 0/2610 (0%) +[UE3] [2025-07-19 11:47:43] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.557 ms 0/2591 (0%) +[UE3] [2025-07-19 11:47:44] [ 5] 76.00-77.00 sec 3.38 MBytes 28.4 Mbits/sec 0.491 ms 0/2451 (0%) +[UE3] [2025-07-19 11:47:45] [ 5] 77.00-78.00 sec 3.71 MBytes 31.1 Mbits/sec 0.768 ms 0/2687 (0%) +[UE3] [2025-07-19 11:47:46] [ 5] 78.00-79.00 sec 3.51 MBytes 29.4 Mbits/sec 0.613 ms 0/2541 (0%) +[UE3] [2025-07-19 11:47:47] [ 5] 79.00-80.00 sec 3.69 MBytes 31.0 Mbits/sec 0.556 ms 0/2675 (0%) +[UE3] [2025-07-19 11:47:48] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.506 ms 0/2592 (0%) +[UE3] [2025-07-19 11:47:49] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.572 ms 0/2587 (0%) +[UE3] [2025-07-19 11:47:50] [ 5] 82.00-83.00 sec 3.59 MBytes 30.1 Mbits/sec 0.496 ms 0/2598 (0%) +[UE3] [2025-07-19 11:47:51] [ 5] 83.00-84.00 sec 3.56 MBytes 29.9 Mbits/sec 0.577 ms 0/2580 (0%) +[UE3] [2025-07-19 11:47:52] [ 5] 84.00-85.00 sec 3.54 MBytes 29.7 Mbits/sec 0.598 ms 0/2561 (0%) +[UE3] [2025-07-19 11:47:53] [ 5] 85.00-86.00 sec 3.62 MBytes 30.4 Mbits/sec 0.524 ms 0/2625 (0%) +[UE3] [2025-07-19 11:47:54] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.579 ms 0/2590 (0%) +[UE3] [2025-07-19 11:47:55] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.535 ms 0/2590 (0%) +[UE3] [2025-07-19 11:47:56] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.478 ms 0/2590 (0%) +[UE3] [2025-07-19 11:47:57] [ 5] 89.00-90.00 sec 3.57 MBytes 29.9 Mbits/sec 0.480 ms 0/2584 (0%) +[UE3] [2025-07-19 11:47:58] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.627 ms 0/2592 (0%) +[UE3] [2025-07-19 11:47:59] [ 5] 91.00-92.00 sec 3.56 MBytes 29.8 Mbits/sec 0.567 ms 0/2576 (0%) +[UE3] [2025-07-19 11:48:00] [ 5] 92.00-93.00 sec 3.50 MBytes 29.3 Mbits/sec 0.630 ms 0/2532 (0%) +[UE3] [2025-07-19 11:48:01] [ 5] 93.00-94.00 sec 3.67 MBytes 30.8 Mbits/sec 0.562 ms 0/2660 (0%) +[UE3] [2025-07-19 11:48:02] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.472 ms 0/2594 (0%) +[UE3] [2025-07-19 11:48:03] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.512 ms 0/2590 (0%) +[UE3] [2025-07-19 11:48:04] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.604 ms 0/2592 (0%) +[UE3] [2025-07-19 11:48:05] [ 5] 97.00-98.00 sec 3.56 MBytes 29.9 Mbits/sec 0.650 ms 0/2580 (0%) +[UE3] [2025-07-19 11:48:06] [ 5] 98.00-99.00 sec 3.55 MBytes 29.8 Mbits/sec 0.687 ms 0/2573 (0%) +[UE3] [2025-07-19 11:48:08] [ 5] 99.00-100.00 sec 3.55 MBytes 29.8 Mbits/sec 0.655 ms 0/2574 (0%) +[UE3] [2025-07-19 11:48:10] [ 5] 0.00-1.00 sec 4.82 MBytes 40.4 Mbits/sec 0.316 ms 0/3489 (0%) +[UE3] [2025-07-19 11:48:11] [ 5] 1.00-2.00 sec 4.24 MBytes 35.5 Mbits/sec 0.247 ms 0/3068 (0%) +[UE3] [2025-07-19 11:48:12] [ 5] 2.00-3.00 sec 3.64 MBytes 30.5 Mbits/sec 0.099 ms 1103/3737 (30%) +[UE3] [2025-07-19 11:48:13] [ 5] 3.00-4.00 sec 4.61 MBytes 38.7 Mbits/sec 0.094 ms 7779/11118 (70%) +[UE3] [2025-07-19 11:48:14] [ 5] 4.00-5.00 sec 4.91 MBytes 41.2 Mbits/sec 0.103 ms 8654/12208 (71%) +[UE3] [2025-07-19 11:48:15] [ 5] 5.00-6.00 sec 4.52 MBytes 37.9 Mbits/sec 0.085 ms 6808/10078 (68%) +[UE3] [2025-07-19 11:48:16] [ 5] 6.00-7.00 sec 9.11 MBytes 76.4 Mbits/sec 0.130 ms 13678/20274 (67%) +[UE3] [2025-07-19 11:48:17] [ 5] 7.00-8.00 sec 9.47 MBytes 79.4 Mbits/sec 0.077 ms 4009/10864 (37%) +[UE3] [2025-07-19 11:48:18] [ 5] 8.00-9.00 sec 8.74 MBytes 73.3 Mbits/sec 0.106 ms 3120/9452 (33%) +[UE3] [2025-07-19 11:48:19] [ 5] 9.00-10.00 sec 10.0 MBytes 84.1 Mbits/sec 0.087 ms 4436/11692 (38%) +[UE3] [2025-07-19 11:48:20] [ 5] 10.00-11.00 sec 9.29 MBytes 78.0 Mbits/sec 0.085 ms 3314/10044 (33%) +[UE3] [2025-07-19 11:48:21] [ 5] 11.00-12.00 sec 9.44 MBytes 79.2 Mbits/sec 0.122 ms 3231/10065 (32%) +[UE3] [2025-07-19 11:48:22] [ 5] 12.00-13.00 sec 9.25 MBytes 77.6 Mbits/sec 0.072 ms 4038/10740 (38%) +[UE3] [2025-07-19 11:48:23] [ 5] 13.00-14.00 sec 5.42 MBytes 45.4 Mbits/sec 0.089 ms 1958/5880 (33%) +[UE3] [2025-07-19 11:48:24] [ 5] 14.00-15.00 sec 4.62 MBytes 38.7 Mbits/sec 0.113 ms 1647/4990 (33%) +[UE3] [2025-07-19 11:48:25] [ 5] 15.00-16.00 sec 4.82 MBytes 40.4 Mbits/sec 0.113 ms 6488/9977 (65%) +[UE3] [2025-07-19 11:48:26] [ 5] 16.00-17.00 sec 4.53 MBytes 38.0 Mbits/sec 0.129 ms 6712/9990 (67%) +[UE3] [2025-07-19 11:48:27] [ 5] 17.00-18.00 sec 4.44 MBytes 37.2 Mbits/sec 0.140 ms 6600/9814 (67%) +[UE3] [2025-07-19 11:48:28] [ 5] 18.00-19.00 sec 4.66 MBytes 39.1 Mbits/sec 0.101 ms 7085/10458 (68%) +[UE3] [2025-07-19 11:48:29] [ 5] 19.00-20.00 sec 4.82 MBytes 40.4 Mbits/sec 0.101 ms 7565/11054 (68%) +[UE3] [2025-07-19 11:48:30] [ 5] 20.00-21.00 sec 4.62 MBytes 38.7 Mbits/sec 0.119 ms 7075/10418 (68%) +[UE3] [2025-07-19 11:48:31] [ 5] 21.00-22.00 sec 4.39 MBytes 36.8 Mbits/sec 0.098 ms 6320/9496 (67%) +[UE3] [2025-07-19 11:48:32] [ 5] 22.00-23.00 sec 4.91 MBytes 41.2 Mbits/sec 0.089 ms 7341/10895 (67%) +[UE3] [2025-07-19 11:48:33] [ 5] 23.00-24.00 sec 4.60 MBytes 38.6 Mbits/sec 0.091 ms 7145/10473 (68%) +[UE3] [2025-07-19 11:48:34] [ 5] 24.00-25.00 sec 4.12 MBytes 34.6 Mbits/sec 0.115 ms 6007/8990 (67%) +[UE3] [2025-07-19 11:48:35] [ 5] 25.00-26.00 sec 4.69 MBytes 39.3 Mbits/sec 3.377 ms 7225/10622 (68%) +[UE3] [2025-07-19 11:48:36] [ 5] 26.00-27.00 sec 4.89 MBytes 41.0 Mbits/sec 0.090 ms 8068/11610 (69%) +[UE3] [2025-07-19 11:48:37] [ 5] 27.00-28.00 sec 4.60 MBytes 38.6 Mbits/sec 0.101 ms 6897/10225 (67%) +[UE3] [2025-07-19 11:48:38] [ 5] 28.00-29.00 sec 4.83 MBytes 40.5 Mbits/sec 0.114 ms 7245/10742 (67%) +[UE3] [2025-07-19 11:48:39] [ 5] 29.00-30.00 sec 4.40 MBytes 36.9 Mbits/sec 0.132 ms 6608/9792 (67%) +[UE3] [2025-07-19 11:48:40] [ 5] 30.00-31.00 sec 4.58 MBytes 38.4 Mbits/sec 0.087 ms 6482/9796 (66%) +[UE3] [2025-07-19 11:48:41] [ 5] 31.00-32.00 sec 4.67 MBytes 39.2 Mbits/sec 0.098 ms 7259/10639 (68%) +[UE3] [2025-07-19 11:48:42] [ 5] 32.00-33.00 sec 4.62 MBytes 38.7 Mbits/sec 0.129 ms 6957/10301 (68%) +[UE3] [2025-07-19 11:48:43] [ 5] 33.00-34.00 sec 4.87 MBytes 40.9 Mbits/sec 0.088 ms 7419/10948 (68%) +[UE3] [2025-07-19 11:48:44] [ 5] 34.00-35.00 sec 4.56 MBytes 38.2 Mbits/sec 0.159 ms 6987/10287 (68%) +[UE3] [2025-07-19 11:48:45] [ 5] 35.00-36.00 sec 4.61 MBytes 38.7 Mbits/sec 0.143 ms 6967/10308 (68%) +[UE3] [2025-07-19 11:48:46] [ 5] 36.00-37.00 sec 4.62 MBytes 38.7 Mbits/sec 0.144 ms 6819/10161 (67%) +[UE3] [2025-07-19 11:48:47] [ 5] 37.00-38.00 sec 4.65 MBytes 39.0 Mbits/sec 0.147 ms 7097/10464 (68%) +[UE3] [2025-07-19 11:48:48] [ 5] 38.00-39.00 sec 4.62 MBytes 38.8 Mbits/sec 0.111 ms 7057/10402 (68%) +[UE3] [2025-07-19 11:48:49] [ 5] 39.00-40.00 sec 4.36 MBytes 36.6 Mbits/sec 0.094 ms 6562/9722 (67%) +[UE3] [2025-07-19 11:48:50] [ 5] 40.00-41.00 sec 4.71 MBytes 39.5 Mbits/sec 0.284 ms 7083/10495 (67%) +[UE3] [2025-07-19 11:48:51] [ 5] 41.00-42.00 sec 4.84 MBytes 40.6 Mbits/sec 0.103 ms 7652/11155 (69%) +[UE3] [2025-07-19 11:48:52] [ 5] 42.00-43.00 sec 4.39 MBytes 36.8 Mbits/sec 0.113 ms 6629/9806 (68%) +[UE3] [2025-07-19 11:48:53] [ 5] 43.00-44.00 sec 4.61 MBytes 38.7 Mbits/sec 0.090 ms 6798/10135 (67%) +[UE3] [2025-07-19 11:48:54] [ 5] 44.00-45.00 sec 4.62 MBytes 38.7 Mbits/sec 0.102 ms 7535/10877 (69%) +[UE3] [2025-07-19 11:48:55] [ 5] 45.00-46.00 sec 6.87 MBytes 57.6 Mbits/sec 0.107 ms 10101/15076 (67%) +[UE3] [2025-07-19 11:48:56] [ 5] 46.00-47.00 sec 10.1 MBytes 85.0 Mbits/sec 0.090 ms 9325/16659 (56%) +[UE3] [2025-07-19 11:48:57] [ 5] 47.00-48.00 sec 9.32 MBytes 78.1 Mbits/sec 0.069 ms 3136/9882 (32%) +[UE3] [2025-07-19 11:48:58] [ 5] 48.00-49.00 sec 10.0 MBytes 84.1 Mbits/sec 0.108 ms 3458/10714 (32%) +[UE3] [2025-07-19 11:48:59] [ 5] 49.00-50.00 sec 9.28 MBytes 77.8 Mbits/sec 0.074 ms 3264/9982 (33%) +[UE3] [2025-07-19 11:49:00] [ 5] 50.00-51.00 sec 9.44 MBytes 79.2 Mbits/sec 0.126 ms 3462/10298 (34%) +[UE3] [2025-07-19 11:49:01] [ 5] 51.00-52.00 sec 9.49 MBytes 79.6 Mbits/sec 0.080 ms 3378/10248 (33%) +[UE3] [2025-07-19 11:49:02] [ 5] 52.00-53.00 sec 10.2 MBytes 85.3 Mbits/sec 0.093 ms 3908/11271 (35%) +[UE3] [2025-07-19 11:49:03] [ 5] 53.00-54.00 sec 16.2 MBytes 136 Mbits/sec 0.157 ms 2354/14104 (17%) +[UE3] [2025-07-19 11:49:04] [ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 0.145 ms 0/10323 (0%) +[UE3] [2025-07-19 11:49:05] [ 5] 55.00-56.00 sec 12.6 MBytes 106 Mbits/sec 0.116 ms 14/9136 (0.15%) +[UE3] [2025-07-19 11:49:06] [ 5] 56.00-57.00 sec 16.0 MBytes 134 Mbits/sec 0.158 ms 82/11676 (0.7%) +[UE3] [2025-07-19 11:49:07] [ 5] 57.00-58.00 sec 14.5 MBytes 122 Mbits/sec 0.176 ms 0/10495 (0%) +[UE3] [2025-07-19 11:49:08] [ 5] 58.00-59.00 sec 14.5 MBytes 122 Mbits/sec 0.154 ms 0/10518 (0%) +[UE3] [2025-07-19 11:49:09] [ 5] 59.00-60.00 sec 14.5 MBytes 121 Mbits/sec 0.169 ms 0/10487 (0%) +[UE3] [2025-07-19 11:49:10] [ 5] 60.00-61.00 sec 14.2 MBytes 119 Mbits/sec 0.131 ms 0/10282 (0%) +[UE3] [2025-07-19 11:49:11] [ 5] 61.00-62.00 sec 14.2 MBytes 119 Mbits/sec 0.139 ms 0/10265 (0%) +[UE3] [2025-07-19 11:49:12] [ 5] 62.00-63.00 sec 12.8 MBytes 107 Mbits/sec 0.084 ms 25/9304 (0.27%) +[UE3] [2025-07-19 11:49:13] [ 5] 63.00-64.00 sec 15.6 MBytes 131 Mbits/sec 0.101 ms 97/11364 (0.85%) +[UE3] [2025-07-19 11:49:14] [ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 0.221 ms 0/10384 (0%) +[UE3] [2025-07-19 11:49:15] [ 5] 65.00-66.00 sec 14.6 MBytes 122 Mbits/sec 0.181 ms 0/10547 (0%) +[UE3] [2025-07-19 11:49:16] [ 5] 66.00-67.00 sec 14.5 MBytes 121 Mbits/sec 0.192 ms 0/10481 (0%) +[UE3] [2025-07-19 11:49:17] [ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 0.197 ms 0/10361 (0%) +[UE3] [2025-07-19 11:49:18] [ 5] 68.00-69.00 sec 13.2 MBytes 111 Mbits/sec 0.172 ms 0/9550 (0%) +[UE3] [2025-07-19 11:49:19] [ 5] 69.00-70.00 sec 14.4 MBytes 120 Mbits/sec 0.171 ms 181/10574 (1.7%) +[UE3] [2025-07-19 11:49:20] [ 5] 70.00-71.00 sec 14.2 MBytes 119 Mbits/sec 0.143 ms 9/10292 (0.087%) +[UE3] [2025-07-19 11:49:21] [ 5] 71.00-72.00 sec 13.4 MBytes 112 Mbits/sec 0.112 ms 39/9736 (0.4%) +[UE3] [2025-07-19 11:49:22] [ 5] 72.00-73.00 sec 14.5 MBytes 121 Mbits/sec 0.109 ms 31/10514 (0.29%) +[UE3] [2025-07-19 11:49:23] [ 5] 73.00-74.00 sec 14.0 MBytes 117 Mbits/sec 0.180 ms 519/10629 (4.9%) +[UE3] [2025-07-19 11:49:24] [ 5] 74.00-75.00 sec 14.4 MBytes 121 Mbits/sec 0.162 ms 238/10697 (2.2%) +[UE3] [2025-07-19 11:49:25] [ 5] 75.00-76.00 sec 14.2 MBytes 119 Mbits/sec 0.177 ms 0/10261 (0%) +[UE3] [2025-07-19 11:49:26] [ 5] 76.00-77.00 sec 13.2 MBytes 110 Mbits/sec 0.106 ms 26/9560 (0.27%) +[UE3] [2025-07-19 11:49:27] [ 5] 77.00-78.00 sec 15.5 MBytes 130 Mbits/sec 0.115 ms 6/11247 (0.053%) +[UE3] [2025-07-19 11:49:28] [ 5] 78.00-79.00 sec 14.2 MBytes 119 Mbits/sec 0.115 ms 0/10289 (0%) +[UE3] [2025-07-19 11:49:29] [ 5] 79.00-80.00 sec 14.4 MBytes 121 Mbits/sec 0.161 ms 0/10415 (0%) +[UE3] [2025-07-19 11:49:30] [ 5] 80.00-81.00 sec 13.9 MBytes 116 Mbits/sec 0.241 ms 0/10049 (0%) +[UE3] [2025-07-19 11:49:31] [ 5] 81.00-82.00 sec 13.5 MBytes 113 Mbits/sec 0.172 ms 238/9987 (2.4%) +[UE3] [2025-07-19 11:49:32] [ 5] 82.00-83.00 sec 14.9 MBytes 125 Mbits/sec 0.103 ms 132/10952 (1.2%) +[UE3] [2025-07-19 11:49:33] [ 5] 83.00-84.00 sec 13.3 MBytes 112 Mbits/sec 0.103 ms 118/9762 (1.2%) +[UE3] [2025-07-19 11:49:34] [ 5] 84.00-85.00 sec 15.3 MBytes 128 Mbits/sec 0.165 ms 33/11108 (0.3%) +[UE3] [2025-07-19 11:49:35] [ 5] 85.00-86.00 sec 11.3 MBytes 94.7 Mbits/sec 0.143 ms 0/8174 (0%) +[UE3] [2025-07-19 11:49:36] [ 5] 86.00-87.00 sec 8.75 MBytes 73.4 Mbits/sec 0.079 ms 1635/7969 (21%) +[UE3] [2025-07-19 11:49:37] [ 5] 87.00-88.00 sec 9.31 MBytes 78.1 Mbits/sec 0.101 ms 3381/10126 (33%) +[UE3] [2025-07-19 11:49:38] [ 5] 88.00-89.00 sec 10.0 MBytes 83.9 Mbits/sec 0.073 ms 3607/10850 (33%) +[UE3] [2025-07-19 11:49:39] [ 5] 89.00-90.00 sec 8.90 MBytes 74.7 Mbits/sec 0.157 ms 3153/9599 (33%) +[UE3] [2025-07-19 11:49:40] [ 5] 90.00-91.00 sec 9.27 MBytes 77.8 Mbits/sec 0.089 ms 4185/10900 (38%) +[UE3] [2025-07-19 11:49:41] [ 5] 91.00-92.00 sec 10.0 MBytes 84.1 Mbits/sec 0.130 ms 3413/10673 (32%) +[UE3] [2025-07-19 11:49:42] [ 5] 92.00-93.00 sec 10.6 MBytes 88.8 Mbits/sec 0.127 ms 3696/11363 (33%) +[UE3] [2025-07-19 11:49:43] [ 5] 93.00-94.00 sec 14.8 MBytes 124 Mbits/sec 0.093 ms 1875/12583 (15%) +[UE3] [2025-07-19 11:49:44] [ 5] 94.00-95.00 sec 15.4 MBytes 130 Mbits/sec 0.125 ms 63/11246 (0.56%) +[UE3] [2025-07-19 11:49:45] [ 5] 95.00-96.00 sec 14.1 MBytes 118 Mbits/sec 0.185 ms 0/10229 (0%) +[UE3] [2025-07-19 11:49:46] [ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 0.147 ms 159/10538 (1.5%) +[UE3] [2025-07-19 11:49:47] [ 5] 97.00-98.00 sec 14.2 MBytes 119 Mbits/sec 0.174 ms 0/10268 (0%) +[UE3] [2025-07-19 11:49:48] [ 5] 98.00-99.00 sec 14.4 MBytes 121 Mbits/sec 0.148 ms 46/10489 (0.44%) +[UE3] [2025-07-19 11:49:49] [ 5] 99.00-100.00 sec 13.4 MBytes 113 Mbits/sec 0.168 ms 3/9729 (0.031%) +[UE3] [2025-07-19 11:49:51] [ 5] 0.00-1.00 sec 3.74 MBytes 31.3 Mbits/sec 0.173 ms 0/2705 (0%) +[UE3] [2025-07-19 11:49:52] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE3] [2025-07-19 11:49:53] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2591 (0%) +[UE3] [2025-07-19 11:49:54] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.106 ms 0/2589 (0%) +[UE3] [2025-07-19 11:49:55] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.325 ms 0/2591 (0%) +[UE3] [2025-07-19 11:49:56] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.191 ms 0/2588 (0%) +[UE3] [2025-07-19 11:49:57] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.242 ms 0/2588 (0%) +[UE3] [2025-07-19 11:49:58] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2592 (0%) +[UE3] [2025-07-19 11:49:59] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.372 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:00] [ 5] 9.00-10.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2587 (0%) +[UE3] [2025-07-19 11:50:01] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:02] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2592 (0%) +[UE3] [2025-07-19 11:50:03] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:04] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2592 (0%) +[UE3] [2025-07-19 11:50:05] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2589 (0%) +[UE3] [2025-07-19 11:50:06] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.190 ms 0/2588 (0%) +[UE3] [2025-07-19 11:50:07] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2589 (0%) +[UE3] [2025-07-19 11:50:08] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2593 (0%) +[UE3] [2025-07-19 11:50:09] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2587 (0%) +[UE3] [2025-07-19 11:50:10] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2593 (0%) +[UE3] [2025-07-19 11:50:11] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.256 ms 0/2587 (0%) +[UE3] [2025-07-19 11:50:12] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:13] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2591 (0%) +[UE3] [2025-07-19 11:50:14] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2589 (0%) +[UE3] [2025-07-19 11:50:15] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.337 ms 0/2587 (0%) +[UE3] [2025-07-19 11:50:16] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2591 (0%) +[UE3] [2025-07-19 11:50:17] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.270 ms 0/2588 (0%) +[UE3] [2025-07-19 11:50:18] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:19] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2592 (0%) +[UE3] [2025-07-19 11:50:20] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:21] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.352 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:22] [ 5] 31.00-32.00 sec 3.56 MBytes 29.9 Mbits/sec 0.640 ms 0/2577 (0%) +[UE3] [2025-07-19 11:50:23] [ 5] 32.00-33.00 sec 3.43 MBytes 28.8 Mbits/sec 0.618 ms 0/2484 (0%) +[UE3] [2025-07-19 11:50:24] [ 5] 33.00-34.00 sec 3.74 MBytes 31.4 Mbits/sec 0.484 ms 0/2707 (0%) +[UE3] [2025-07-19 11:50:25] [ 5] 34.00-35.00 sec 3.56 MBytes 29.9 Mbits/sec 0.602 ms 0/2581 (0%) +[UE3] [2025-07-19 11:50:26] [ 5] 35.00-36.00 sec 3.55 MBytes 29.8 Mbits/sec 0.681 ms 0/2572 (0%) +[UE3] [2025-07-19 11:50:27] [ 5] 36.00-37.00 sec 3.60 MBytes 30.2 Mbits/sec 0.554 ms 0/2608 (0%) +[UE3] [2025-07-19 11:50:28] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.724 ms 0/2587 (0%) +[UE3] [2025-07-19 11:50:29] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.499 ms 0/2594 (0%) +[UE3] [2025-07-19 11:50:30] [ 5] 39.00-40.00 sec 3.54 MBytes 29.7 Mbits/sec 0.526 ms 0/2563 (0%) +[UE3] [2025-07-19 11:50:31] [ 5] 40.00-41.00 sec 3.24 MBytes 27.1 Mbits/sec 0.647 ms 21/2364 (0.89%) +[UE3] [2025-07-19 11:50:32] [ 5] 41.00-42.00 sec 3.77 MBytes 31.6 Mbits/sec 0.683 ms 0/2730 (0%) +[UE3] [2025-07-19 11:50:33] [ 5] 42.00-43.00 sec 3.57 MBytes 29.9 Mbits/sec 0.704 ms 0/2585 (0%) +[UE3] [2025-07-19 11:50:34] [ 5] 43.00-44.00 sec 3.75 MBytes 31.4 Mbits/sec 0.517 ms 0/2713 (0%) +[UE3] [2025-07-19 11:50:35] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.544 ms 0/2591 (0%) +[UE3] [2025-07-19 11:50:36] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.552 ms 0/2587 (0%) +[UE3] [2025-07-19 11:50:37] [ 5] 46.00-47.00 sec 3.30 MBytes 27.7 Mbits/sec 0.670 ms 0/2390 (0%) +[UE3] [2025-07-19 11:50:38] [ 5] 47.00-48.00 sec 3.77 MBytes 31.6 Mbits/sec 0.648 ms 0/2731 (0%) +[UE3] [2025-07-19 11:50:39] [ 5] 48.00-49.00 sec 3.65 MBytes 30.6 Mbits/sec 0.574 ms 0/2643 (0%) +[UE3] [2025-07-19 11:50:40] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.604 ms 0/2593 (0%) +[UE3] [2025-07-19 11:50:41] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.403 ms 0/2593 (0%) +[UE3] [2025-07-19 11:50:42] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.461 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:43] [ 5] 52.00-53.00 sec 3.41 MBytes 28.6 Mbits/sec 0.595 ms 0/2469 (0%) +[UE3] [2025-07-19 11:50:44] [ 5] 53.00-54.00 sec 3.73 MBytes 31.3 Mbits/sec 0.505 ms 0/2699 (0%) +[UE3] [2025-07-19 11:50:45] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.629 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:46] [ 5] 55.00-56.00 sec 3.59 MBytes 30.1 Mbits/sec 0.625 ms 0/2598 (0%) +[UE3] [2025-07-19 11:50:47] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.509 ms 0/2587 (0%) +[UE3] [2025-07-19 11:50:48] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.496 ms 0/2593 (0%) +[UE3] [2025-07-19 11:50:49] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.543 ms 0/2592 (0%) +[UE3] [2025-07-19 11:50:50] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.569 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:51] [ 5] 60.00-61.00 sec 3.55 MBytes 29.8 Mbits/sec 0.778 ms 0/2571 (0%) +[UE3] [2025-07-19 11:50:52] [ 5] 61.00-62.00 sec 3.58 MBytes 30.1 Mbits/sec 0.578 ms 0/2595 (0%) +[UE3] [2025-07-19 11:50:53] [ 5] 62.00-63.00 sec 3.48 MBytes 29.2 Mbits/sec 0.825 ms 0/2522 (0%) +[UE3] [2025-07-19 11:50:54] [ 5] 63.00-64.00 sec 3.69 MBytes 30.9 Mbits/sec 0.520 ms 0/2671 (0%) +[UE3] [2025-07-19 11:50:55] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2593 (0%) +[UE3] [2025-07-19 11:50:56] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2588 (0%) +[UE3] [2025-07-19 11:50:57] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE3] [2025-07-19 11:50:58] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2591 (0%) +[UE3] [2025-07-19 11:50:59] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2589 (0%) +[UE3] [2025-07-19 11:51:00] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2589 (0%) +[UE3] [2025-07-19 11:51:01] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2591 (0%) +[UE3] [2025-07-19 11:51:02] [ 5] 71.00-72.00 sec 3.57 MBytes 29.9 Mbits/sec 0.629 ms 0/2583 (0%) +[UE3] [2025-07-19 11:51:03] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.557 ms 0/2593 (0%) +[UE3] [2025-07-19 11:51:04] [ 5] 73.00-74.00 sec 3.47 MBytes 29.1 Mbits/sec 0.598 ms 0/2512 (0%) +[UE3] [2025-07-19 11:51:05] [ 5] 74.00-75.00 sec 3.68 MBytes 30.9 Mbits/sec 0.536 ms 0/2665 (0%) +[UE3] [2025-07-19 11:51:06] [ 5] 75.00-76.00 sec 3.40 MBytes 28.5 Mbits/sec 0.642 ms 0/2462 (0%) +[UE3] [2025-07-19 11:51:07] [ 5] 76.00-77.00 sec 3.73 MBytes 31.3 Mbits/sec 0.630 ms 0/2699 (0%) +[UE3] [2025-07-19 11:51:08] [ 5] 77.00-78.00 sec 3.60 MBytes 30.2 Mbits/sec 0.655 ms 0/2607 (0%) +[UE3] [2025-07-19 11:51:09] [ 5] 78.00-79.00 sec 3.42 MBytes 28.7 Mbits/sec 0.562 ms 0/2474 (0%) +[UE3] [2025-07-19 11:51:10] [ 5] 79.00-80.00 sec 3.74 MBytes 31.3 Mbits/sec 0.533 ms 0/2705 (0%) +[UE3] [2025-07-19 11:51:11] [ 5] 80.00-81.00 sec 3.55 MBytes 29.7 Mbits/sec 0.763 ms 0/2568 (0%) +[UE3] [2025-07-19 11:51:12] [ 5] 81.00-82.00 sec 3.60 MBytes 30.2 Mbits/sec 0.598 ms 0/2610 (0%) +[UE3] [2025-07-19 11:51:13] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.550 ms 0/2586 (0%) +[UE3] [2025-07-19 11:51:14] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.645 ms 0/2591 (0%) +[UE3] [2025-07-19 11:51:15] [ 5] 84.00-85.00 sec 3.56 MBytes 29.9 Mbits/sec 0.579 ms 0/2579 (0%) +[UE3] [2025-07-19 11:51:16] [ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 0.672 ms 0/2588 (0%) +[UE3] [2025-07-19 11:51:17] [ 5] 86.00-87.00 sec 3.59 MBytes 30.1 Mbits/sec 0.608 ms 0/2598 (0%) +[UE3] [2025-07-19 11:51:18] [ 5] 87.00-88.00 sec 3.55 MBytes 29.8 Mbits/sec 0.535 ms 0/2574 (0%) +[UE3] [2025-07-19 11:51:19] [ 5] 88.00-89.00 sec 3.60 MBytes 30.2 Mbits/sec 0.498 ms 0/2608 (0%) +[UE3] [2025-07-19 11:51:20] [ 5] 89.00-90.00 sec 3.59 MBytes 30.1 Mbits/sec 0.607 ms 0/2601 (0%) +[UE3] [2025-07-19 11:51:21] [ 5] 90.00-91.00 sec 3.57 MBytes 29.9 Mbits/sec 0.534 ms 0/2583 (0%) +[UE3] [2025-07-19 11:51:22] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.477 ms 0/2593 (0%) +[UE3] [2025-07-19 11:51:23] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.569 ms 0/2591 (0%) +[UE3] [2025-07-19 11:51:24] [ 5] 93.00-94.00 sec 3.38 MBytes 28.3 Mbits/sec 0.572 ms 0/2446 (0%) +[UE3] [2025-07-19 11:51:25] [ 5] 94.00-95.00 sec 3.76 MBytes 31.6 Mbits/sec 0.720 ms 0/2724 (0%) +[UE3] [2025-07-19 11:51:26] [ 5] 95.00-96.00 sec 3.58 MBytes 30.1 Mbits/sec 0.550 ms 0/2596 (0%) +[UE3] [2025-07-19 11:51:27] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.616 ms 0/2590 (0%) +[UE3] [2025-07-19 11:51:28] [ 5] 97.00-98.00 sec 3.58 MBytes 30.1 Mbits/sec 0.493 ms 0/2595 (0%) +[UE3] [2025-07-19 11:51:29] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.378 ms 0/2588 (0%) +[UE3] [2025-07-19 11:51:30] [ 5] 99.00-100.00 sec 3.57 MBytes 30.0 Mbits/sec 0.678 ms 0/2588 (0%) +[UE3] [2025-07-19 11:51:32] [ 5] 0.00-1.00 sec 4.78 MBytes 40.0 Mbits/sec 0.339 ms 0/3458 (0%) +[UE3] [2025-07-19 11:51:33] [ 5] 1.00-2.00 sec 4.60 MBytes 38.6 Mbits/sec 0.338 ms 0/3333 (0%) +[UE3] [2025-07-19 11:51:34] [ 5] 2.00-3.00 sec 5.34 MBytes 44.8 Mbits/sec 0.079 ms 4647/8517 (55%) +[UE3] [2025-07-19 11:51:35] [ 5] 3.00-4.00 sec 9.50 MBytes 79.7 Mbits/sec 0.076 ms 11935/18817 (63%) +[UE3] [2025-07-19 11:51:36] [ 5] 4.00-5.00 sec 9.33 MBytes 78.3 Mbits/sec 0.099 ms 3339/10098 (33%) +[UE3] [2025-07-19 11:51:37] [ 5] 5.00-6.00 sec 9.13 MBytes 76.6 Mbits/sec 0.109 ms 3377/9988 (34%) +[UE3] [2025-07-19 11:51:38] [ 5] 6.00-7.00 sec 9.05 MBytes 75.9 Mbits/sec 0.081 ms 3981/10536 (38%) +[UE3] [2025-07-19 11:51:39] [ 5] 7.00-8.00 sec 10.0 MBytes 84.1 Mbits/sec 0.077 ms 3788/11045 (34%) +[UE3] [2025-07-19 11:51:40] [ 5] 8.00-9.00 sec 9.26 MBytes 77.7 Mbits/sec 0.110 ms 3339/10046 (33%) +[UE3] [2025-07-19 11:51:41] [ 5] 9.00-10.00 sec 9.12 MBytes 76.5 Mbits/sec 0.071 ms 3091/9697 (32%) +[UE3] [2025-07-19 11:51:42] [ 5] 10.00-11.00 sec 4.81 MBytes 40.4 Mbits/sec 0.104 ms 1625/5110 (32%) +[UE3] [2025-07-19 11:51:43] [ 5] 11.00-12.00 sec 4.71 MBytes 39.5 Mbits/sec 0.125 ms 2533/5944 (43%) +[UE3] [2025-07-19 11:51:44] [ 5] 12.00-13.00 sec 4.58 MBytes 38.5 Mbits/sec 0.130 ms 6862/10182 (67%) +[UE3] [2025-07-19 11:51:45] [ 5] 13.00-14.00 sec 4.52 MBytes 37.9 Mbits/sec 0.090 ms 6570/9842 (67%) +[UE3] [2025-07-19 11:51:46] [ 5] 14.00-15.00 sec 4.72 MBytes 39.6 Mbits/sec 0.094 ms 7215/10636 (68%) +[UE3] [2025-07-19 11:51:47] [ 5] 15.00-16.00 sec 4.76 MBytes 39.9 Mbits/sec 0.096 ms 7151/10596 (67%) +[UE3] [2025-07-19 11:51:48] [ 5] 16.00-17.00 sec 4.66 MBytes 39.1 Mbits/sec 0.123 ms 7085/10458 (68%) +[UE3] [2025-07-19 11:51:49] [ 5] 17.00-18.00 sec 4.37 MBytes 36.7 Mbits/sec 0.104 ms 6529/9693 (67%) +[UE3] [2025-07-19 11:51:50] [ 5] 18.00-19.00 sec 4.90 MBytes 41.1 Mbits/sec 0.105 ms 7484/11029 (68%) +[UE3] [2025-07-19 11:51:51] [ 5] 19.00-20.00 sec 4.07 MBytes 34.2 Mbits/sec 0.094 ms 6110/9058 (67%) +[UE3] [2025-07-19 11:51:52] [ 5] 20.00-21.00 sec 4.65 MBytes 39.0 Mbits/sec 0.102 ms 7113/10478 (68%) +[UE3] [2025-07-19 11:51:53] [ 5] 21.00-22.00 sec 4.59 MBytes 38.5 Mbits/sec 0.146 ms 7975/11298 (71%) +[UE3] [2025-07-19 11:51:54] [ 5] 22.00-23.00 sec 4.62 MBytes 38.8 Mbits/sec 0.147 ms 6978/10327 (68%) +[UE3] [2025-07-19 11:51:55] [ 5] 23.00-24.00 sec 4.61 MBytes 38.7 Mbits/sec 0.152 ms 6890/10228 (67%) +[UE3] [2025-07-19 11:51:56] [ 5] 24.00-25.00 sec 4.65 MBytes 39.0 Mbits/sec 0.084 ms 7142/10510 (68%) +[UE3] [2025-07-19 11:51:57] [ 5] 25.00-26.00 sec 4.91 MBytes 41.2 Mbits/sec 0.104 ms 7464/11019 (68%) +[UE3] [2025-07-19 11:51:58] [ 5] 26.00-27.00 sec 4.61 MBytes 38.7 Mbits/sec 0.106 ms 6780/10119 (67%) +[UE3] [2025-07-19 11:51:59] [ 5] 27.00-28.00 sec 4.61 MBytes 38.7 Mbits/sec 0.113 ms 6624/9964 (66%) +[UE3] [2025-07-19 11:52:00] [ 5] 28.00-29.00 sec 4.73 MBytes 39.7 Mbits/sec 0.148 ms 7189/10617 (68%) +[UE3] [2025-07-19 11:52:01] [ 5] 29.00-30.00 sec 4.56 MBytes 38.2 Mbits/sec 0.126 ms 6768/10068 (67%) +[UE3] [2025-07-19 11:52:02] [ 5] 30.00-31.00 sec 4.58 MBytes 38.4 Mbits/sec 0.126 ms 6969/10287 (68%) +[UE3] [2025-07-19 11:52:03] [ 5] 31.00-32.00 sec 4.71 MBytes 39.5 Mbits/sec 0.103 ms 7150/10563 (68%) +[UE3] [2025-07-19 11:52:04] [ 5] 32.00-33.00 sec 4.59 MBytes 38.5 Mbits/sec 0.136 ms 6938/10260 (68%) +[UE3] [2025-07-19 11:52:05] [ 5] 33.00-34.00 sec 4.55 MBytes 38.2 Mbits/sec 0.116 ms 6651/9948 (67%) +[UE3] [2025-07-19 11:52:06] [ 5] 34.00-35.00 sec 4.64 MBytes 38.9 Mbits/sec 0.097 ms 7019/10381 (68%) +[UE3] [2025-07-19 11:52:07] [ 5] 35.00-36.00 sec 4.89 MBytes 41.0 Mbits/sec 0.118 ms 7530/11072 (68%) +[UE3] [2025-07-19 11:52:08] [ 5] 36.00-37.00 sec 4.62 MBytes 38.7 Mbits/sec 0.136 ms 7073/10417 (68%) +[UE3] [2025-07-19 11:52:09] [ 5] 37.00-38.00 sec 4.65 MBytes 39.0 Mbits/sec 0.063 ms 6861/10227 (67%) +[UE3] [2025-07-19 11:52:10] [ 5] 38.00-39.00 sec 4.85 MBytes 40.7 Mbits/sec 0.097 ms 7109/10622 (67%) +[UE3] [2025-07-19 11:52:11] [ 5] 39.00-40.00 sec 4.60 MBytes 38.6 Mbits/sec 0.111 ms 6838/10171 (67%) +[UE3] [2025-07-19 11:52:12] [ 5] 40.00-41.00 sec 4.34 MBytes 36.4 Mbits/sec 0.094 ms 6378/9520 (67%) +[UE3] [2025-07-19 11:52:13] [ 5] 41.00-42.00 sec 4.68 MBytes 39.3 Mbits/sec 0.120 ms 7104/10494 (68%) +[UE3] [2025-07-19 11:52:14] [ 5] 42.00-43.00 sec 7.43 MBytes 62.3 Mbits/sec 0.114 ms 11411/16789 (68%) +[UE3] [2025-07-19 11:52:15] [ 5] 43.00-44.00 sec 9.32 MBytes 78.2 Mbits/sec 0.082 ms 8164/14914 (55%) +[UE3] [2025-07-19 11:52:16] [ 5] 44.00-45.00 sec 9.46 MBytes 79.3 Mbits/sec 0.121 ms 3616/10464 (35%) +[UE3] [2025-07-19 11:52:17] [ 5] 45.00-46.00 sec 9.45 MBytes 79.3 Mbits/sec 0.112 ms 3401/10247 (33%) +[UE3] [2025-07-19 11:52:18] [ 5] 46.00-47.00 sec 9.86 MBytes 82.8 Mbits/sec 0.075 ms 3430/10572 (32%) +[UE3] [2025-07-19 11:52:19] [ 5] 47.00-48.00 sec 9.46 MBytes 79.3 Mbits/sec 0.082 ms 3335/10185 (33%) +[UE3] [2025-07-19 11:52:20] [ 5] 48.00-49.00 sec 10.0 MBytes 84.1 Mbits/sec 0.078 ms 3456/10712 (32%) +[UE3] [2025-07-19 11:52:21] [ 5] 49.00-50.00 sec 12.5 MBytes 105 Mbits/sec 0.183 ms 4150/13186 (31%) +[UE3] [2025-07-19 11:52:22] [ 5] 50.00-51.00 sec 15.9 MBytes 133 Mbits/sec 0.127 ms 280/11791 (2.4%) +[UE3] [2025-07-19 11:52:23] [ 5] 51.00-52.00 sec 13.9 MBytes 117 Mbits/sec 0.174 ms 0/10097 (0%) +[UE3] [2025-07-19 11:52:24] [ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 0.171 ms 151/10531 (1.4%) +[UE3] [2025-07-19 11:52:25] [ 5] 53.00-54.00 sec 14.6 MBytes 122 Mbits/sec 0.146 ms 0/10537 (0%) +[UE3] [2025-07-19 11:52:26] [ 5] 54.00-55.00 sec 14.2 MBytes 119 Mbits/sec 0.191 ms 0/10316 (0%) +[UE3] [2025-07-19 11:52:27] [ 5] 55.00-56.00 sec 14.4 MBytes 121 Mbits/sec 0.188 ms 0/10432 (0%) +[UE3] [2025-07-19 11:52:28] [ 5] 56.00-57.00 sec 14.5 MBytes 121 Mbits/sec 0.172 ms 0/10475 (0%) +[UE3] [2025-07-19 11:52:29] [ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 0.176 ms 0/10334 (0%) +[UE3] [2025-07-19 11:52:30] [ 5] 58.00-59.00 sec 12.9 MBytes 108 Mbits/sec 0.250 ms 0/9354 (0%) +[UE3] [2025-07-19 11:52:31] [ 5] 59.00-60.00 sec 14.4 MBytes 121 Mbits/sec 0.154 ms 677/11112 (6.1%) +[UE3] [2025-07-19 11:52:32] [ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 0.156 ms 0/10363 (0%) +[UE3] [2025-07-19 11:52:33] [ 5] 61.00-62.00 sec 14.2 MBytes 119 Mbits/sec 0.163 ms 0/10257 (0%) +[UE3] [2025-07-19 11:52:34] [ 5] 62.00-63.00 sec 13.9 MBytes 117 Mbits/sec 0.166 ms 15/10090 (0.15%) +[UE3] [2025-07-19 11:52:35] [ 5] 63.00-64.00 sec 14.5 MBytes 121 Mbits/sec 0.132 ms 297/10767 (2.8%) +[UE3] [2025-07-19 11:52:36] [ 5] 64.00-65.00 sec 13.5 MBytes 113 Mbits/sec 0.186 ms 0/9761 (0%) +[UE3] [2025-07-19 11:52:37] [ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 0.141 ms 505/10887 (4.6%) +[UE3] [2025-07-19 11:52:38] [ 5] 66.00-67.00 sec 14.1 MBytes 118 Mbits/sec 0.157 ms 0/10222 (0%) +[UE3] [2025-07-19 11:52:39] [ 5] 67.00-68.00 sec 14.1 MBytes 118 Mbits/sec 0.172 ms 76/10289 (0.74%) +[UE3] [2025-07-19 11:52:40] [ 5] 68.00-69.00 sec 14.7 MBytes 124 Mbits/sec 0.141 ms 46/10710 (0.43%) +[UE3] [2025-07-19 11:52:41] [ 5] 69.00-70.00 sec 14.4 MBytes 121 Mbits/sec 0.154 ms 0/10421 (0%) +[UE3] [2025-07-19 11:52:42] [ 5] 70.00-71.00 sec 14.6 MBytes 123 Mbits/sec 0.134 ms 0/10594 (0%) +[UE3] [2025-07-19 11:52:43] [ 5] 71.00-72.00 sec 14.6 MBytes 122 Mbits/sec 0.232 ms 0/10571 (0%) +[UE3] [2025-07-19 11:52:44] [ 5] 72.00-73.00 sec 13.4 MBytes 112 Mbits/sec 0.280 ms 0/9689 (0%) +[UE3] [2025-07-19 11:52:45] [ 5] 73.00-74.00 sec 13.4 MBytes 113 Mbits/sec 0.130 ms 231/9949 (2.3%) +[UE3] [2025-07-19 11:52:46] [ 5] 74.00-75.00 sec 14.0 MBytes 118 Mbits/sec 0.209 ms 441/10609 (4.2%) +[UE3] [2025-07-19 11:52:47] [ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 0.097 ms 105/10439 (1%) +[UE3] [2025-07-19 11:52:48] [ 5] 76.00-77.00 sec 14.4 MBytes 121 Mbits/sec 0.051 ms 36/10452 (0.34%) +[UE3] [2025-07-19 11:52:49] [ 5] 77.00-78.00 sec 14.2 MBytes 119 Mbits/sec 0.214 ms 0/10279 (0%) +[UE3] [2025-07-19 11:52:50] [ 5] 78.00-79.00 sec 14.2 MBytes 119 Mbits/sec 0.183 ms 34/10343 (0.33%) +[UE3] [2025-07-19 11:52:51] [ 5] 79.00-80.00 sec 13.2 MBytes 110 Mbits/sec 0.085 ms 49/9579 (0.51%) +[UE3] [2025-07-19 11:52:52] [ 5] 80.00-81.00 sec 15.5 MBytes 130 Mbits/sec 0.101 ms 154/11350 (1.4%) +[UE3] [2025-07-19 11:52:53] [ 5] 81.00-82.00 sec 14.4 MBytes 121 Mbits/sec 0.168 ms 0/10446 (0%) +[UE3] [2025-07-19 11:52:54] [ 5] 82.00-83.00 sec 10.6 MBytes 88.7 Mbits/sec 0.196 ms 0/7657 (0%) +[UE3] [2025-07-19 11:52:55] [ 5] 83.00-84.00 sec 7.65 MBytes 64.1 Mbits/sec 0.121 ms 1766/7303 (24%) +[UE3] [2025-07-19 11:52:56] [ 5] 84.00-85.00 sec 9.50 MBytes 79.7 Mbits/sec 0.077 ms 4230/11112 (38%) +[UE3] [2025-07-19 11:52:57] [ 5] 85.00-86.00 sec 9.31 MBytes 78.1 Mbits/sec 0.100 ms 3946/10687 (37%) +[UE3] [2025-07-19 11:52:58] [ 5] 86.00-87.00 sec 9.27 MBytes 77.8 Mbits/sec 0.079 ms 3524/10238 (34%) +[UE3] [2025-07-19 11:52:59] [ 5] 87.00-88.00 sec 10.0 MBytes 84.0 Mbits/sec 0.034 ms 3420/10676 (32%) +[UE3] [2025-07-19 11:53:00] [ 5] 88.00-89.00 sec 9.43 MBytes 79.2 Mbits/sec 0.092 ms 3314/10143 (33%) +[UE3] [2025-07-19 11:53:01] [ 5] 89.00-90.00 sec 13.0 MBytes 109 Mbits/sec 0.082 ms 4393/13790 (32%) +[UE3] [2025-07-19 11:53:02] [ 5] 90.00-91.00 sec 15.5 MBytes 130 Mbits/sec 0.165 ms 203/11432 (1.8%) +[UE3] [2025-07-19 11:53:03] [ 5] 91.00-92.00 sec 14.5 MBytes 122 Mbits/sec 0.133 ms 0/10525 (0%) +[UE3] [2025-07-19 11:53:04] [ 5] 92.00-93.00 sec 14.2 MBytes 119 Mbits/sec 0.181 ms 0/10256 (0%) +[UE3] [2025-07-19 11:53:05] [ 5] 93.00-94.00 sec 13.2 MBytes 110 Mbits/sec 0.142 ms 0/9536 (0%) +[UE3] [2025-07-19 11:53:06] [ 5] 94.00-95.00 sec 14.4 MBytes 121 Mbits/sec 0.160 ms 703/11108 (6.3%) +[UE3] [2025-07-19 11:53:07] [ 5] 95.00-96.00 sec 14.4 MBytes 120 Mbits/sec 0.160 ms 17/10414 (0.16%) +[UE3] [2025-07-19 11:53:08] [ 5] 96.00-97.00 sec 13.8 MBytes 115 Mbits/sec 0.136 ms 0/9970 (0%) +[UE3] [2025-07-19 11:53:09] [ 5] 97.00-98.00 sec 14.4 MBytes 120 Mbits/sec 0.151 ms 311/10710 (2.9%) +[UE3] [2025-07-19 11:53:10] [ 5] 98.00-99.00 sec 14.7 MBytes 123 Mbits/sec 0.136 ms 0/10637 (0%) +[UE3] [2025-07-19 11:53:12] [ 5] 99.00-100.00 sec 14.9 MBytes 125 Mbits/sec 0.164 ms 0/10789 (0%) +[UE3] [2025-07-19 11:53:13] [ 5] 0.00-1.00 sec 3.73 MBytes 31.3 Mbits/sec 0.227 ms 0/2702 (0%) +[UE3] [2025-07-19 11:53:14] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2590 (0%) +[UE3] [2025-07-19 11:53:15] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2589 (0%) +[UE3] [2025-07-19 11:53:16] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE3] [2025-07-19 11:53:17] [ 5] 4.00-5.00 sec 3.57 MBytes 30.0 Mbits/sec 0.178 ms 0/2587 (0%) +[UE3] [2025-07-19 11:53:18] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2593 (0%) +[UE3] [2025-07-19 11:53:19] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2592 (0%) +[UE3] [2025-07-19 11:53:20] [ 5] 7.00-8.00 sec 3.57 MBytes 29.9 Mbits/sec 0.220 ms 0/2585 (0%) +[UE3] [2025-07-19 11:53:21] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2592 (0%) +[UE3] [2025-07-19 11:53:22] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE3] [2025-07-19 11:53:23] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.267 ms 0/2591 (0%) +[UE3] [2025-07-19 11:53:24] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.235 ms 0/2587 (0%) +[UE3] [2025-07-19 11:53:25] [ 5] 12.00-13.00 sec 3.56 MBytes 29.9 Mbits/sec 0.185 ms 0/2579 (0%) +[UE3] [2025-07-19 11:53:26] [ 5] 13.00-14.00 sec 3.59 MBytes 30.1 Mbits/sec 0.134 ms 0/2602 (0%) +[UE3] [2025-07-19 11:53:27] [ 5] 14.00-15.00 sec 3.57 MBytes 29.9 Mbits/sec 0.237 ms 0/2585 (0%) +[UE3] [2025-07-19 11:53:28] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2593 (0%) +[UE3] [2025-07-19 11:53:29] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2591 (0%) +[UE3] [2025-07-19 11:53:30] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE3] [2025-07-19 11:53:31] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.225 ms 0/2588 (0%) +[UE3] [2025-07-19 11:53:32] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.110 ms 0/2592 (0%) +[UE3] [2025-07-19 11:53:33] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.172 ms 0/2588 (0%) +[UE3] [2025-07-19 11:53:34] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2589 (0%) +[UE3] [2025-07-19 11:53:35] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2590 (0%) +[UE3] [2025-07-19 11:53:36] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE3] [2025-07-19 11:53:37] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.311 ms 0/2589 (0%) +[UE3] [2025-07-19 11:53:38] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.369 ms 0/2593 (0%) +[UE3] [2025-07-19 11:53:39] [ 5] 26.00-27.00 sec 3.57 MBytes 30.0 Mbits/sec 0.323 ms 0/2588 (0%) +[UE3] [2025-07-19 11:53:40] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.551 ms 0/2588 (0%) +[UE3] [2025-07-19 11:53:41] [ 5] 28.00-29.00 sec 3.37 MBytes 28.3 Mbits/sec 0.598 ms 0/2439 (0%) +[UE3] [2025-07-19 11:53:42] [ 5] 29.00-30.00 sec 3.59 MBytes 30.2 Mbits/sec 0.548 ms 0/2603 (0%) +[UE3] [2025-07-19 11:53:43] [ 5] 30.00-31.00 sec 3.73 MBytes 31.3 Mbits/sec 0.537 ms 0/2699 (0%) +[UE3] [2025-07-19 11:53:44] [ 5] 31.00-32.00 sec 3.59 MBytes 30.1 Mbits/sec 0.598 ms 0/2601 (0%) +[UE3] [2025-07-19 11:53:45] [ 5] 32.00-33.00 sec 3.59 MBytes 30.1 Mbits/sec 0.502 ms 0/2597 (0%) +[UE3] [2025-07-19 11:53:46] [ 5] 33.00-34.00 sec 3.19 MBytes 26.8 Mbits/sec 0.713 ms 0/2310 (0%) +[UE3] [2025-07-19 11:53:47] [ 5] 34.00-35.00 sec 3.75 MBytes 31.5 Mbits/sec 0.748 ms 0/2715 (0%) +[UE3] [2025-07-19 11:53:48] [ 5] 35.00-36.00 sec 3.63 MBytes 30.4 Mbits/sec 0.572 ms 0/2627 (0%) +[UE3] [2025-07-19 11:53:49] [ 5] 36.00-37.00 sec 3.72 MBytes 31.2 Mbits/sec 0.540 ms 0/2692 (0%) +[UE3] [2025-07-19 11:53:50] [ 5] 37.00-38.00 sec 3.60 MBytes 30.2 Mbits/sec 0.565 ms 0/2608 (0%) +[UE3] [2025-07-19 11:53:51] [ 5] 38.00-39.00 sec 3.56 MBytes 29.8 Mbits/sec 0.609 ms 0/2576 (0%) +[UE3] [2025-07-19 11:53:52] [ 5] 39.00-40.00 sec 3.58 MBytes 30.1 Mbits/sec 0.705 ms 0/2594 (0%) +[UE3] [2025-07-19 11:53:53] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.675 ms 0/2592 (0%) +[UE3] [2025-07-19 11:53:54] [ 5] 41.00-42.00 sec 3.59 MBytes 30.2 Mbits/sec 0.421 ms 0/2603 (0%) +[UE3] [2025-07-19 11:53:55] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.447 ms 0/2594 (0%) +[UE3] [2025-07-19 11:53:56] [ 5] 43.00-44.00 sec 3.57 MBytes 29.9 Mbits/sec 0.612 ms 0/2585 (0%) +[UE3] [2025-07-19 11:53:57] [ 5] 44.00-45.00 sec 3.54 MBytes 29.7 Mbits/sec 0.552 ms 0/2561 (0%) +[UE3] [2025-07-19 11:53:58] [ 5] 45.00-46.00 sec 3.58 MBytes 30.1 Mbits/sec 0.572 ms 0/2595 (0%) +[UE3] [2025-07-19 11:53:59] [ 5] 46.00-47.00 sec 3.60 MBytes 30.2 Mbits/sec 0.611 ms 0/2606 (0%) +[UE3] [2025-07-19 11:54:00] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.614 ms 0/2587 (0%) +[UE3] [2025-07-19 11:54:01] [ 5] 48.00-49.00 sec 3.59 MBytes 30.1 Mbits/sec 0.478 ms 0/2598 (0%) +[UE3] [2025-07-19 11:54:02] [ 5] 49.00-50.00 sec 3.40 MBytes 28.5 Mbits/sec 0.575 ms 0/2460 (0%) +[UE3] [2025-07-19 11:54:03] [ 5] 50.00-51.00 sec 3.74 MBytes 31.3 Mbits/sec 0.734 ms 0/2706 (0%) +[UE3] [2025-07-19 11:54:04] [ 5] 51.00-52.00 sec 3.55 MBytes 29.8 Mbits/sec 0.569 ms 0/2570 (0%) +[UE3] [2025-07-19 11:54:05] [ 5] 52.00-53.00 sec 3.62 MBytes 30.4 Mbits/sec 0.586 ms 0/2623 (0%) +[UE3] [2025-07-19 11:54:06] [ 5] 53.00-54.00 sec 3.35 MBytes 28.1 Mbits/sec 0.588 ms 0/2427 (0%) +[UE3] [2025-07-19 11:54:07] [ 5] 54.00-55.00 sec 3.81 MBytes 31.9 Mbits/sec 0.544 ms 0/2758 (0%) +[UE3] [2025-07-19 11:54:08] [ 5] 55.00-56.00 sec 3.57 MBytes 29.9 Mbits/sec 0.527 ms 0/2584 (0%) +[UE3] [2025-07-19 11:54:09] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.575 ms 0/2593 (0%) +[UE3] [2025-07-19 11:54:10] [ 5] 57.00-58.00 sec 3.56 MBytes 29.9 Mbits/sec 0.761 ms 0/2578 (0%) +[UE3] [2025-07-19 11:54:11] [ 5] 58.00-59.00 sec 3.58 MBytes 30.1 Mbits/sec 0.595 ms 0/2595 (0%) +[UE3] [2025-07-19 11:54:12] [ 5] 59.00-60.00 sec 3.55 MBytes 29.8 Mbits/sec 0.753 ms 0/2570 (0%) +[UE3] [2025-07-19 11:54:13] [ 5] 60.00-61.00 sec 3.62 MBytes 30.4 Mbits/sec 0.248 ms 0/2621 (0%) +[UE3] [2025-07-19 11:54:14] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2589 (0%) +[UE3] [2025-07-19 11:54:15] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.277 ms 0/2588 (0%) +[UE3] [2025-07-19 11:54:16] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2589 (0%) +[UE3] [2025-07-19 11:54:17] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.453 ms 0/2591 (0%) +[UE3] [2025-07-19 11:54:18] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2593 (0%) +[UE3] [2025-07-19 11:54:19] [ 5] 66.00-67.00 sec 3.57 MBytes 30.0 Mbits/sec 0.302 ms 0/2588 (0%) +[UE3] [2025-07-19 11:54:20] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.444 ms 0/2589 (0%) +[UE3] [2025-07-19 11:54:21] [ 5] 68.00-69.00 sec 3.57 MBytes 29.9 Mbits/sec 0.459 ms 0/2583 (0%) +[UE3] [2025-07-19 11:54:22] [ 5] 69.00-70.00 sec 3.58 MBytes 30.1 Mbits/sec 0.496 ms 0/2594 (0%) +[UE3] [2025-07-19 11:54:23] [ 5] 70.00-71.00 sec 3.53 MBytes 29.6 Mbits/sec 0.525 ms 0/2559 (0%) +[UE3] [2025-07-19 11:54:24] [ 5] 71.00-72.00 sec 3.61 MBytes 30.3 Mbits/sec 0.721 ms 0/2612 (0%) +[UE3] [2025-07-19 11:54:25] [ 5] 72.00-73.00 sec 3.46 MBytes 29.1 Mbits/sec 0.576 ms 0/2508 (0%) +[UE3] [2025-07-19 11:54:26] [ 5] 73.00-74.00 sec 3.70 MBytes 31.1 Mbits/sec 0.559 ms 0/2681 (0%) +[UE3] [2025-07-19 11:54:27] [ 5] 74.00-75.00 sec 3.27 MBytes 27.4 Mbits/sec 0.571 ms 0/2365 (0%) +[UE3] [2025-07-19 11:54:28] [ 5] 75.00-76.00 sec 3.80 MBytes 31.9 Mbits/sec 0.595 ms 0/2755 (0%) +[UE3] [2025-07-19 11:54:29] [ 5] 76.00-77.00 sec 3.65 MBytes 30.6 Mbits/sec 0.609 ms 0/2641 (0%) +[UE3] [2025-07-19 11:54:30] [ 5] 77.00-78.00 sec 3.53 MBytes 29.6 Mbits/sec 1.086 ms 0/2555 (0%) +[UE3] [2025-07-19 11:54:31] [ 5] 78.00-79.00 sec 3.61 MBytes 30.3 Mbits/sec 0.551 ms 0/2615 (0%) +[UE3] [2025-07-19 11:54:32] [ 5] 79.00-80.00 sec 3.59 MBytes 30.1 Mbits/sec 0.602 ms 0/2600 (0%) +[UE3] [2025-07-19 11:54:33] [ 5] 80.00-81.00 sec 3.58 MBytes 30.1 Mbits/sec 0.609 ms 0/2595 (0%) +[UE3] [2025-07-19 11:54:34] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.547 ms 0/2587 (0%) +[UE3] [2025-07-19 11:54:35] [ 5] 82.00-83.00 sec 3.38 MBytes 28.4 Mbits/sec 0.574 ms 0/2451 (0%) +[UE3] [2025-07-19 11:54:36] [ 5] 83.00-84.00 sec 3.76 MBytes 31.5 Mbits/sec 0.560 ms 0/2723 (0%) +[UE3] [2025-07-19 11:54:37] [ 5] 84.00-85.00 sec 3.59 MBytes 30.1 Mbits/sec 0.615 ms 0/2597 (0%) +[UE3] [2025-07-19 11:54:38] [ 5] 85.00-86.00 sec 3.57 MBytes 29.9 Mbits/sec 0.565 ms 0/2582 (0%) +[UE3] [2025-07-19 11:54:39] [ 5] 86.00-87.00 sec 3.59 MBytes 30.1 Mbits/sec 0.703 ms 0/2597 (0%) +[UE3] [2025-07-19 11:54:40] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.641 ms 0/2589 (0%) +[UE3] [2025-07-19 11:54:41] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.603 ms 0/2591 (0%) +[UE3] [2025-07-19 11:54:42] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.531 ms 0/2593 (0%) +[UE3] [2025-07-19 11:54:43] [ 5] 90.00-91.00 sec 3.55 MBytes 29.8 Mbits/sec 0.565 ms 0/2571 (0%) +[UE3] [2025-07-19 11:54:44] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.618 ms 0/2588 (0%) +[UE3] [2025-07-19 11:54:45] [ 5] 92.00-93.00 sec 3.57 MBytes 30.0 Mbits/sec 0.604 ms 0/2586 (0%) +[UE3] [2025-07-19 11:54:46] [ 5] 93.00-94.00 sec 3.60 MBytes 30.2 Mbits/sec 0.616 ms 0/2610 (0%) +[UE3] [2025-07-19 11:54:47] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.592 ms 0/2588 (0%) +[UE3] [2025-07-19 11:54:48] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.547 ms 0/2591 (0%) +[UE3] [2025-07-19 11:54:49] [ 5] 96.00-97.00 sec 3.57 MBytes 29.9 Mbits/sec 0.596 ms 0/2582 (0%) +[UE3] [2025-07-19 11:54:50] [ 5] 97.00-98.00 sec 3.59 MBytes 30.1 Mbits/sec 0.475 ms 0/2602 (0%) +[UE3] [2025-07-19 11:54:51] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.535 ms 0/2591 (0%) +[UE3] [2025-07-19 11:54:52] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2589 (0%) +[UE3] [2025-07-19 11:54:55] [ 5] 0.00-1.00 sec 7.38 MBytes 61.9 Mbits/sec 0.253 ms 0/5342 (0%) +[UE3] [2025-07-19 11:54:56] [ 5] 1.00-2.00 sec 8.66 MBytes 72.7 Mbits/sec 0.086 ms 722/6995 (10%) +[UE3] [2025-07-19 11:54:57] [ 5] 2.00-3.00 sec 10.0 MBytes 84.0 Mbits/sec 0.086 ms 3390/10642 (32%) +[UE3] [2025-07-19 11:54:58] [ 5] 3.00-4.00 sec 9.50 MBytes 79.7 Mbits/sec 0.103 ms 3351/10229 (33%) +[UE3] [2025-07-19 11:54:59] [ 5] 4.00-5.00 sec 9.85 MBytes 82.6 Mbits/sec 0.077 ms 3221/10353 (31%) +[UE3] [2025-07-19 11:55:00] [ 5] 5.00-6.00 sec 6.27 MBytes 52.6 Mbits/sec 0.076 ms 2289/6833 (33%) +[UE3] [2025-07-19 11:55:01] [ 5] 6.00-7.00 sec 4.28 MBytes 35.9 Mbits/sec 0.078 ms 1530/4626 (33%) +[UE3] [2025-07-19 11:55:02] [ 5] 7.00-8.00 sec 4.93 MBytes 41.4 Mbits/sec 0.133 ms 5424/8994 (60%) +[UE3] [2025-07-19 11:55:03] [ 5] 8.00-9.00 sec 4.67 MBytes 39.2 Mbits/sec 0.129 ms 7412/10795 (69%) +[UE3] [2025-07-19 11:55:04] [ 5] 9.00-10.00 sec 4.55 MBytes 38.2 Mbits/sec 0.089 ms 6679/9974 (67%) +[UE3] [2025-07-19 11:55:05] [ 5] 10.00-11.00 sec 4.65 MBytes 39.0 Mbits/sec 0.084 ms 6742/10107 (67%) +[UE3] [2025-07-19 11:55:06] [ 5] 11.00-12.00 sec 4.69 MBytes 39.3 Mbits/sec 0.128 ms 6951/10344 (67%) +[UE3] [2025-07-19 11:55:07] [ 5] 12.00-13.00 sec 4.53 MBytes 38.0 Mbits/sec 0.087 ms 6932/10212 (68%) +[UE3] [2025-07-19 11:55:08] [ 5] 13.00-14.00 sec 4.85 MBytes 40.7 Mbits/sec 0.080 ms 7146/10657 (67%) +[UE3] [2025-07-19 11:55:09] [ 5] 14.00-15.00 sec 4.70 MBytes 39.5 Mbits/sec 0.134 ms 7225/10632 (68%) +[UE3] [2025-07-19 11:55:10] [ 5] 15.00-16.00 sec 4.59 MBytes 38.5 Mbits/sec 0.116 ms 6876/10197 (67%) +[UE3] [2025-07-19 11:55:11] [ 5] 16.00-17.00 sec 4.36 MBytes 36.6 Mbits/sec 0.096 ms 6507/9665 (67%) +[UE3] [2025-07-19 11:55:12] [ 5] 17.00-18.00 sec 4.30 MBytes 36.1 Mbits/sec 0.095 ms 6349/9466 (67%) +[UE3] [2025-07-19 11:55:13] [ 5] 18.00-19.00 sec 4.60 MBytes 38.6 Mbits/sec 0.126 ms 7496/10826 (69%) +[UE3] [2025-07-19 11:55:14] [ 5] 19.00-20.00 sec 4.66 MBytes 39.1 Mbits/sec 0.121 ms 8040/11414 (70%) +[UE3] [2025-07-19 11:55:15] [ 5] 20.00-21.00 sec 4.82 MBytes 40.4 Mbits/sec 0.101 ms 7112/10603 (67%) +[UE3] [2025-07-19 11:55:16] [ 5] 21.00-22.00 sec 4.68 MBytes 39.2 Mbits/sec 0.101 ms 6891/10277 (67%) +[UE3] [2025-07-19 11:55:17] [ 5] 22.00-23.00 sec 4.66 MBytes 39.1 Mbits/sec 3.058 ms 6974/10351 (67%) +[UE3] [2025-07-19 11:55:18] [ 5] 23.00-24.00 sec 4.86 MBytes 40.8 Mbits/sec 0.101 ms 6938/10457 (66%) +[UE3] [2025-07-19 11:55:19] [ 5] 24.00-25.00 sec 4.64 MBytes 38.9 Mbits/sec 0.126 ms 6805/10163 (67%) +[UE3] [2025-07-19 11:55:20] [ 5] 25.00-26.00 sec 4.62 MBytes 38.8 Mbits/sec 0.104 ms 6931/10277 (67%) +[UE3] [2025-07-19 11:55:21] [ 5] 26.00-27.00 sec 4.57 MBytes 38.3 Mbits/sec 0.084 ms 6771/10080 (67%) +[UE3] [2025-07-19 11:55:22] [ 5] 27.00-28.00 sec 4.67 MBytes 39.2 Mbits/sec 0.177 ms 7002/10386 (67%) +[UE3] [2025-07-19 11:55:23] [ 5] 28.00-29.00 sec 4.67 MBytes 39.2 Mbits/sec 0.149 ms 6933/10316 (67%) +[UE3] [2025-07-19 11:55:24] [ 5] 29.00-30.00 sec 4.34 MBytes 36.4 Mbits/sec 0.105 ms 6460/9606 (67%) +[UE3] [2025-07-19 11:55:25] [ 5] 30.00-31.00 sec 4.65 MBytes 39.0 Mbits/sec 0.137 ms 7052/10418 (68%) +[UE3] [2025-07-19 11:55:26] [ 5] 31.00-32.00 sec 4.61 MBytes 38.7 Mbits/sec 0.107 ms 7879/11215 (70%) +[UE3] [2025-07-19 11:55:27] [ 5] 32.00-33.00 sec 4.34 MBytes 36.4 Mbits/sec 0.113 ms 6410/9550 (67%) +[UE3] [2025-07-19 11:55:28] [ 5] 33.00-34.00 sec 4.62 MBytes 38.8 Mbits/sec 0.093 ms 6829/10176 (67%) +[UE3] [2025-07-19 11:55:29] [ 5] 34.00-35.00 sec 4.88 MBytes 41.0 Mbits/sec 0.089 ms 8261/11797 (70%) +[UE3] [2025-07-19 11:55:30] [ 5] 35.00-36.00 sec 4.68 MBytes 39.2 Mbits/sec 0.133 ms 6885/10271 (67%) +[UE3] [2025-07-19 11:55:31] [ 5] 36.00-37.00 sec 4.52 MBytes 37.9 Mbits/sec 0.109 ms 6773/10045 (67%) +[UE3] [2025-07-19 11:55:32] [ 5] 37.00-38.00 sec 5.04 MBytes 42.2 Mbits/sec 0.147 ms 7501/11148 (67%) +[UE3] [2025-07-19 11:55:33] [ 5] 38.00-39.00 sec 9.52 MBytes 79.9 Mbits/sec 0.094 ms 13526/20422 (66%) +[UE3] [2025-07-19 11:55:34] [ 5] 39.00-40.00 sec 9.33 MBytes 78.3 Mbits/sec 0.080 ms 3128/9886 (32%) +[UE3] [2025-07-19 11:55:35] [ 5] 40.00-41.00 sec 9.29 MBytes 78.0 Mbits/sec 0.102 ms 3335/10066 (33%) +[UE3] [2025-07-19 11:55:36] [ 5] 41.00-42.00 sec 10.0 MBytes 84.0 Mbits/sec 0.097 ms 3774/11021 (34%) +[UE3] [2025-07-19 11:55:37] [ 5] 42.00-43.00 sec 8.71 MBytes 73.1 Mbits/sec 0.079 ms 3054/9361 (33%) +[UE3] [2025-07-19 11:55:38] [ 5] 43.00-44.00 sec 10.0 MBytes 84.2 Mbits/sec 0.070 ms 4499/11768 (38%) +[UE3] [2025-07-19 11:55:39] [ 5] 44.00-45.00 sec 9.44 MBytes 79.1 Mbits/sec 0.176 ms 3194/10029 (32%) +[UE3] [2025-07-19 11:55:40] [ 5] 45.00-46.00 sec 15.8 MBytes 133 Mbits/sec 0.135 ms 3225/14680 (22%) +[UE3] [2025-07-19 11:55:41] [ 5] 46.00-47.00 sec 14.6 MBytes 122 Mbits/sec 0.139 ms 0/10552 (0%) +[UE3] [2025-07-19 11:55:42] [ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 0.130 ms 0/10385 (0%) +[UE3] [2025-07-19 11:55:43] [ 5] 48.00-49.00 sec 14.4 MBytes 121 Mbits/sec 0.180 ms 0/10401 (0%) +[UE3] [2025-07-19 11:55:44] [ 5] 49.00-50.00 sec 14.4 MBytes 121 Mbits/sec 0.163 ms 0/10407 (0%) +[UE3] [2025-07-19 11:55:45] [ 5] 50.00-51.00 sec 11.8 MBytes 98.9 Mbits/sec 0.072 ms 424/8961 (4.7%) +[UE3] [2025-07-19 11:55:46] [ 5] 51.00-52.00 sec 14.2 MBytes 119 Mbits/sec 0.073 ms 29/10294 (0.28%) +[UE3] [2025-07-19 11:55:47] [ 5] 52.00-53.00 sec 15.5 MBytes 130 Mbits/sec 0.139 ms 189/11408 (1.7%) +[UE3] [2025-07-19 11:55:48] [ 5] 53.00-54.00 sec 14.2 MBytes 119 Mbits/sec 0.171 ms 20/10306 (0.19%) +[UE3] [2025-07-19 11:55:49] [ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 0.138 ms 89/10413 (0.85%) +[UE3] [2025-07-19 11:55:50] [ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 0.172 ms 4/10358 (0.039%) +[UE3] [2025-07-19 11:55:51] [ 5] 56.00-57.00 sec 14.4 MBytes 120 Mbits/sec 0.182 ms 8/10404 (0.077%) +[UE3] [2025-07-19 11:55:52] [ 5] 57.00-58.00 sec 12.6 MBytes 105 Mbits/sec 0.095 ms 30/9128 (0.33%) +[UE3] [2025-07-19 11:55:53] [ 5] 58.00-59.00 sec 15.8 MBytes 133 Mbits/sec 0.180 ms 143/11584 (1.2%) +[UE3] [2025-07-19 11:55:54] [ 5] 59.00-60.00 sec 13.1 MBytes 110 Mbits/sec 0.118 ms 2/9492 (0.021%) +[UE3] [2025-07-19 11:55:55] [ 5] 60.00-61.00 sec 15.6 MBytes 131 Mbits/sec 0.175 ms 78/11367 (0.69%) +[UE3] [2025-07-19 11:55:56] [ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 0.197 ms 0/10367 (0%) +[UE3] [2025-07-19 11:55:57] [ 5] 62.00-63.00 sec 14.1 MBytes 119 Mbits/sec 0.103 ms 0/10232 (0%) +[UE3] [2025-07-19 11:55:58] [ 5] 63.00-64.00 sec 14.4 MBytes 120 Mbits/sec 0.169 ms 0/10396 (0%) +[UE3] [2025-07-19 11:55:59] [ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 0.171 ms 0/10339 (0%) +[UE3] [2025-07-19 11:56:00] [ 5] 65.00-66.00 sec 13.6 MBytes 114 Mbits/sec 0.192 ms 0/9849 (0%) +[UE3] [2025-07-19 11:56:01] [ 5] 66.00-67.00 sec 13.3 MBytes 111 Mbits/sec 0.093 ms 505/10103 (5%) +[UE3] [2025-07-19 11:56:02] [ 5] 67.00-68.00 sec 14.8 MBytes 124 Mbits/sec 0.143 ms 186/10924 (1.7%) +[UE3] [2025-07-19 11:56:03] [ 5] 68.00-69.00 sec 14.2 MBytes 119 Mbits/sec 0.151 ms 121/10395 (1.2%) +[UE3] [2025-07-19 11:56:04] [ 5] 69.00-70.00 sec 14.0 MBytes 117 Mbits/sec 0.134 ms 119/10239 (1.2%) +[UE3] [2025-07-19 11:56:05] [ 5] 70.00-71.00 sec 14.5 MBytes 122 Mbits/sec 0.129 ms 114/10639 (1.1%) +[UE3] [2025-07-19 11:56:06] [ 5] 71.00-72.00 sec 14.4 MBytes 120 Mbits/sec 0.151 ms 0/10395 (0%) +[UE3] [2025-07-19 11:56:07] [ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 0.169 ms 0/10383 (0%) +[UE3] [2025-07-19 11:56:08] [ 5] 73.00-74.00 sec 13.9 MBytes 116 Mbits/sec 0.089 ms 0/10037 (0%) +[UE3] [2025-07-19 11:56:09] [ 5] 74.00-75.00 sec 13.2 MBytes 111 Mbits/sec 0.078 ms 215/9803 (2.2%) +[UE3] [2025-07-19 11:56:10] [ 5] 75.00-76.00 sec 15.5 MBytes 130 Mbits/sec 0.195 ms 25/11255 (0.22%) +[UE3] [2025-07-19 11:56:11] [ 5] 76.00-77.00 sec 14.4 MBytes 121 Mbits/sec 0.146 ms 0/10433 (0%) +[UE3] [2025-07-19 11:56:12] [ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 0.181 ms 0/10344 (0%) +[UE3] [2025-07-19 11:56:13] [ 5] 78.00-79.00 sec 14.4 MBytes 120 Mbits/sec 0.192 ms 0/10395 (0%) +[UE3] [2025-07-19 11:56:14] [ 5] 79.00-80.00 sec 14.2 MBytes 119 Mbits/sec 0.132 ms 0/10301 (0%) +[UE3] [2025-07-19 11:56:15] [ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 0.176 ms 0/10387 (0%) +[UE3] [2025-07-19 11:56:16] [ 5] 81.00-82.00 sec 10.0 MBytes 84.1 Mbits/sec 0.213 ms 0/7259 (0%) +[UE3] [2025-07-19 11:56:17] [ 5] 82.00-83.00 sec 7.73 MBytes 64.9 Mbits/sec 0.081 ms 2247/7848 (29%) +[UE3] [2025-07-19 11:56:18] [ 5] 83.00-84.00 sec 8.72 MBytes 73.2 Mbits/sec 0.084 ms 4069/10387 (39%) +[UE3] [2025-07-19 11:56:19] [ 5] 84.00-85.00 sec 9.47 MBytes 79.4 Mbits/sec 0.107 ms 4234/11091 (38%) +[UE3] [2025-07-19 11:56:20] [ 5] 85.00-86.00 sec 9.34 MBytes 78.4 Mbits/sec 0.433 ms 3365/10131 (33%) +[UE3] [2025-07-19 11:56:21] [ 5] 86.00-87.00 sec 9.24 MBytes 77.5 Mbits/sec 0.121 ms 3539/10232 (35%) +[UE3] [2025-07-19 11:56:22] [ 5] 87.00-88.00 sec 9.46 MBytes 79.4 Mbits/sec 0.122 ms 3313/10167 (33%) +[UE3] [2025-07-19 11:56:23] [ 5] 88.00-89.00 sec 15.0 MBytes 126 Mbits/sec 0.195 ms 4826/15672 (31%) +[UE3] [2025-07-19 11:56:24] [ 5] 89.00-90.00 sec 14.4 MBytes 121 Mbits/sec 0.141 ms 0/10405 (0%) +[UE3] [2025-07-19 11:56:25] [ 5] 90.00-91.00 sec 14.7 MBytes 123 Mbits/sec 0.169 ms 0/10635 (0%) +[UE3] [2025-07-19 11:56:26] [ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 0.141 ms 0/10329 (0%) +[UE3] [2025-07-19 11:56:27] [ 5] 92.00-93.00 sec 13.1 MBytes 110 Mbits/sec 0.131 ms 0/9475 (0%) +[UE3] [2025-07-19 11:56:28] [ 5] 93.00-94.00 sec 13.1 MBytes 110 Mbits/sec 0.097 ms 485/9999 (4.9%) +[UE3] [2025-07-19 11:56:29] [ 5] 94.00-95.00 sec 15.4 MBytes 129 Mbits/sec 0.184 ms 138/11308 (1.2%) +[UE3] [2025-07-19 11:56:30] [ 5] 95.00-96.00 sec 14.2 MBytes 120 Mbits/sec 0.101 ms 0/10315 (0%) +[UE3] [2025-07-19 11:56:31] [ 5] 96.00-97.00 sec 13.6 MBytes 114 Mbits/sec 0.186 ms 114/9991 (1.1%) +[UE3] [2025-07-19 11:56:32] [ 5] 97.00-98.00 sec 12.6 MBytes 106 Mbits/sec 0.106 ms 792/9907 (8%) +[UE3] [2025-07-19 11:56:33] [ 5] 98.00-99.00 sec 15.4 MBytes 129 Mbits/sec 0.176 ms 18/11142 (0.16%) +[UE3] [2025-07-19 11:56:34] [ 5] 99.00-100.00 sec 13.5 MBytes 113 Mbits/sec 0.091 ms 18/9804 (0.18%) +[UE3] [2025-07-19 11:56:35] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.203 ms 0/2694 (0%) +[UE3] [2025-07-19 11:56:36] [ 5] 1.00-2.00 sec 3.57 MBytes 30.0 Mbits/sec 0.179 ms 0/2588 (0%) +[UE3] [2025-07-19 11:56:37] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2592 (0%) +[UE3] [2025-07-19 11:56:38] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE3] [2025-07-19 11:56:39] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2592 (0%) +[UE3] [2025-07-19 11:56:40] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2590 (0%) +[UE3] [2025-07-19 11:56:41] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.152 ms 0/2587 (0%) +[UE3] [2025-07-19 11:56:42] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2592 (0%) +[UE3] [2025-07-19 11:56:43] [ 5] 8.00-9.00 sec 3.57 MBytes 30.0 Mbits/sec 0.183 ms 0/2588 (0%) +[UE3] [2025-07-19 11:56:44] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2590 (0%) +[UE3] [2025-07-19 11:56:45] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2591 (0%) +[UE3] [2025-07-19 11:56:46] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2588 (0%) +[UE3] [2025-07-19 11:56:47] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2592 (0%) +[UE3] [2025-07-19 11:56:48] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE3] [2025-07-19 11:56:49] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.114 ms 0/2590 (0%) +[UE3] [2025-07-19 11:56:50] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2589 (0%) +[UE3] [2025-07-19 11:56:51] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.306 ms 0/2587 (0%) +[UE3] [2025-07-19 11:56:52] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2591 (0%) +[UE3] [2025-07-19 11:56:53] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2592 (0%) +[UE3] [2025-07-19 11:56:54] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.271 ms 0/2586 (0%) +[UE3] [2025-07-19 11:56:55] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.304 ms 0/2591 (0%) +[UE3] [2025-07-19 11:56:56] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2587 (0%) +[UE3] [2025-07-19 11:56:57] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2593 (0%) +[UE3] [2025-07-19 11:56:58] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.245 ms 0/2586 (0%) +[UE3] [2025-07-19 11:56:59] [ 5] 24.00-25.00 sec 3.58 MBytes 30.1 Mbits/sec 0.314 ms 0/2595 (0%) +[UE3] [2025-07-19 11:57:00] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2589 (0%) +[UE3] [2025-07-19 11:57:01] [ 5] 26.00-27.00 sec 3.57 MBytes 29.9 Mbits/sec 0.593 ms 0/2584 (0%) +[UE3] [2025-07-19 11:57:02] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.501 ms 0/2592 (0%) +[UE3] [2025-07-19 11:57:03] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.537 ms 0/2591 (0%) +[UE3] [2025-07-19 11:57:04] [ 5] 29.00-30.00 sec 3.56 MBytes 29.9 Mbits/sec 0.575 ms 0/2580 (0%) +[UE3] [2025-07-19 11:57:05] [ 5] 30.00-31.00 sec 3.58 MBytes 30.1 Mbits/sec 0.644 ms 0/2596 (0%) +[UE3] [2025-07-19 11:57:06] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.621 ms 0/2590 (0%) +[UE3] [2025-07-19 11:57:07] [ 5] 32.00-33.00 sec 3.34 MBytes 28.1 Mbits/sec 0.601 ms 0/2422 (0%) +[UE3] [2025-07-19 11:57:08] [ 5] 33.00-34.00 sec 3.80 MBytes 31.9 Mbits/sec 0.584 ms 0/2754 (0%) +[UE3] [2025-07-19 11:57:09] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.523 ms 0/2593 (0%) +[UE3] [2025-07-19 11:57:10] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.530 ms 0/2591 (0%) +[UE3] [2025-07-19 11:57:11] [ 5] 36.00-37.00 sec 3.56 MBytes 29.9 Mbits/sec 0.567 ms 0/2581 (0%) +[UE3] [2025-07-19 11:57:12] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.591 ms 0/2590 (0%) +[UE3] [2025-07-19 11:57:13] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.600 ms 0/2594 (0%) +[UE3] [2025-07-19 11:57:14] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.595 ms 0/2591 (0%) +[UE3] [2025-07-19 11:57:15] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.472 ms 0/2589 (0%) +[UE3] [2025-07-19 11:57:16] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.496 ms 0/2594 (0%) +[UE3] [2025-07-19 11:57:17] [ 5] 42.00-43.00 sec 3.46 MBytes 29.0 Mbits/sec 0.673 ms 0/2503 (0%) +[UE3] [2025-07-19 11:57:18] [ 5] 43.00-44.00 sec 3.69 MBytes 30.9 Mbits/sec 0.574 ms 0/2671 (0%) +[UE3] [2025-07-19 11:57:19] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.531 ms 0/2593 (0%) +[UE3] [2025-07-19 11:57:20] [ 5] 45.00-46.00 sec 3.56 MBytes 29.8 Mbits/sec 0.603 ms 0/2575 (0%) +[UE3] [2025-07-19 11:57:21] [ 5] 46.00-47.00 sec 3.59 MBytes 30.1 Mbits/sec 0.577 ms 0/2600 (0%) +[UE3] [2025-07-19 11:57:22] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.466 ms 0/2592 (0%) +[UE3] [2025-07-19 11:57:23] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.587 ms 0/2589 (0%) +[UE3] [2025-07-19 11:57:24] [ 5] 49.00-50.00 sec 3.59 MBytes 30.1 Mbits/sec 0.484 ms 0/2598 (0%) +[UE3] [2025-07-19 11:57:25] [ 5] 50.00-51.00 sec 3.57 MBytes 30.0 Mbits/sec 0.486 ms 0/2587 (0%) +[UE3] [2025-07-19 11:57:26] [ 5] 51.00-52.00 sec 3.54 MBytes 29.7 Mbits/sec 0.630 ms 0/2561 (0%) +[UE3] [2025-07-19 11:57:27] [ 5] 52.00-53.00 sec 3.57 MBytes 29.9 Mbits/sec 0.587 ms 0/2585 (0%) +[UE3] [2025-07-19 11:57:28] [ 5] 53.00-54.00 sec 3.59 MBytes 30.2 Mbits/sec 0.460 ms 0/2603 (0%) +[UE3] [2025-07-19 11:57:29] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.697 ms 0/2591 (0%) +[UE3] [2025-07-19 11:57:30] [ 5] 55.00-56.00 sec 3.60 MBytes 30.2 Mbits/sec 0.623 ms 0/2605 (0%) +[UE3] [2025-07-19 11:57:31] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.582 ms 0/2589 (0%) +[UE3] [2025-07-19 11:57:32] [ 5] 57.00-58.00 sec 3.45 MBytes 29.0 Mbits/sec 0.684 ms 0/2500 (0%) +[UE3] [2025-07-19 11:57:33] [ 5] 58.00-59.00 sec 3.71 MBytes 31.1 Mbits/sec 0.537 ms 0/2687 (0%) +[UE3] [2025-07-19 11:57:34] [ 5] 59.00-60.00 sec 3.57 MBytes 30.0 Mbits/sec 0.267 ms 0/2588 (0%) +[UE3] [2025-07-19 11:57:35] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.469 ms 0/2592 (0%) +[UE3] [2025-07-19 11:57:36] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2590 (0%) +[UE3] [2025-07-19 11:57:37] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE3] [2025-07-19 11:57:38] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.195 ms 0/2587 (0%) +[UE3] [2025-07-19 11:57:39] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2592 (0%) +[UE3] [2025-07-19 11:57:40] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.308 ms 0/2590 (0%) +[UE3] [2025-07-19 11:57:41] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.491 ms 0/2589 (0%) +[UE3] [2025-07-19 11:57:42] [ 5] 67.00-68.00 sec 3.57 MBytes 30.0 Mbits/sec 0.552 ms 0/2588 (0%) +[UE3] [2025-07-19 11:57:43] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.487 ms 0/2591 (0%) +[UE3] [2025-07-19 11:57:44] [ 5] 69.00-70.00 sec 3.56 MBytes 29.8 Mbits/sec 0.551 ms 0/2575 (0%) +[UE3] [2025-07-19 11:57:45] [ 5] 70.00-71.00 sec 3.56 MBytes 29.9 Mbits/sec 0.601 ms 0/2579 (0%) +[UE3] [2025-07-19 11:57:46] [ 5] 71.00-72.00 sec 3.59 MBytes 30.1 Mbits/sec 0.617 ms 0/2598 (0%) +[UE3] [2025-07-19 11:57:47] [ 5] 72.00-73.00 sec 3.57 MBytes 29.9 Mbits/sec 0.556 ms 0/2584 (0%) +[UE3] [2025-07-19 11:57:48] [ 5] 73.00-74.00 sec 3.59 MBytes 30.1 Mbits/sec 0.702 ms 0/2600 (0%) +[UE3] [2025-07-19 11:57:49] [ 5] 74.00-75.00 sec 3.59 MBytes 30.1 Mbits/sec 0.607 ms 0/2598 (0%) +[UE3] [2025-07-19 11:57:50] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.519 ms 0/2590 (0%) +[UE3] [2025-07-19 11:57:51] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.512 ms 0/2593 (0%) +[UE3] [2025-07-19 11:57:52] [ 5] 77.00-78.00 sec 3.56 MBytes 29.8 Mbits/sec 0.623 ms 0/2575 (0%) +[UE3] [2025-07-19 11:57:53] [ 5] 78.00-79.00 sec 3.59 MBytes 30.1 Mbits/sec 0.571 ms 0/2597 (0%) +[UE3] [2025-07-19 11:57:54] [ 5] 79.00-80.00 sec 3.57 MBytes 30.0 Mbits/sec 0.534 ms 0/2588 (0%) +[UE3] [2025-07-19 11:57:55] [ 5] 80.00-81.00 sec 3.59 MBytes 30.1 Mbits/sec 0.669 ms 0/2597 (0%) +[UE3] [2025-07-19 11:57:56] [ 5] 81.00-82.00 sec 3.44 MBytes 28.9 Mbits/sec 0.499 ms 0/2493 (0%) +[UE3] [2025-07-19 11:57:57] [ 5] 82.00-83.00 sec 3.71 MBytes 31.1 Mbits/sec 0.524 ms 0/2686 (0%) +[UE3] [2025-07-19 11:57:58] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.494 ms 0/2591 (0%) +[UE3] [2025-07-19 11:57:59] [ 5] 84.00-85.00 sec 3.56 MBytes 29.9 Mbits/sec 0.521 ms 0/2578 (0%) +[UE3] [2025-07-19 11:58:00] [ 5] 85.00-86.00 sec 3.53 MBytes 29.6 Mbits/sec 0.567 ms 0/2558 (0%) +[UE3] [2025-07-19 11:58:01] [ 5] 86.00-87.00 sec 3.62 MBytes 30.4 Mbits/sec 0.587 ms 0/2625 (0%) +[UE3] [2025-07-19 11:58:02] [ 5] 87.00-88.00 sec 3.58 MBytes 30.1 Mbits/sec 0.581 ms 0/2595 (0%) +[UE3] [2025-07-19 11:58:03] [ 5] 88.00-89.00 sec 3.58 MBytes 30.1 Mbits/sec 0.599 ms 0/2595 (0%) +[UE3] [2025-07-19 11:58:04] [ 5] 89.00-90.00 sec 3.56 MBytes 29.8 Mbits/sec 0.531 ms 0/2575 (0%) +[UE3] [2025-07-19 11:58:05] [ 5] 90.00-91.00 sec 3.59 MBytes 30.1 Mbits/sec 0.546 ms 0/2599 (0%) +[UE3] [2025-07-19 11:58:06] [ 5] 91.00-92.00 sec 3.56 MBytes 29.9 Mbits/sec 0.550 ms 0/2581 (0%) +[UE3] [2025-07-19 11:58:07] [ 5] 92.00-93.00 sec 3.59 MBytes 30.2 Mbits/sec 0.598 ms 0/2603 (0%) +[UE3] [2025-07-19 11:58:08] [ 5] 93.00-94.00 sec 3.53 MBytes 29.6 Mbits/sec 0.691 ms 0/2558 (0%) +[UE3] [2025-07-19 11:58:09] [ 5] 94.00-95.00 sec 3.61 MBytes 30.3 Mbits/sec 0.497 ms 0/2616 (0%) +[UE3] [2025-07-19 11:58:10] [ 5] 95.00-96.00 sec 3.58 MBytes 30.1 Mbits/sec 0.645 ms 0/2594 (0%) +[UE3] [2025-07-19 11:58:11] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.499 ms 0/2593 (0%) +[UE3] [2025-07-19 11:58:12] [ 5] 97.00-98.00 sec 3.53 MBytes 29.6 Mbits/sec 0.501 ms 0/2559 (0%) +[UE3] [2025-07-19 11:58:13] [ 5] 98.00-99.00 sec 3.62 MBytes 30.4 Mbits/sec 0.335 ms 0/2621 (0%) +[UE3] [2025-07-19 11:58:15] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.344 ms 0/2590 (0%) +[UE3] [2025-07-19 11:58:17] [ 5] 0.00-1.00 sec 7.49 MBytes 62.8 Mbits/sec 0.129 ms 0/5421 (0%) +[UE3] [2025-07-19 11:58:18] [ 5] 1.00-2.00 sec 7.49 MBytes 62.9 Mbits/sec 0.084 ms 258/5685 (4.5%) +[UE3] [2025-07-19 11:58:19] [ 5] 2.00-3.00 sec 10.0 MBytes 83.9 Mbits/sec 0.125 ms 4688/11927 (39%) +[UE3] [2025-07-19 11:58:20] [ 5] 3.00-4.00 sec 9.43 MBytes 79.1 Mbits/sec 0.078 ms 3109/9941 (31%) +[UE3] [2025-07-19 11:58:21] [ 5] 4.00-5.00 sec 4.26 MBytes 35.8 Mbits/sec 0.102 ms 1353/4441 (30%) +[UE3] [2025-07-19 11:58:22] [ 5] 5.00-6.00 sec 4.84 MBytes 40.6 Mbits/sec 0.084 ms 1617/5119 (32%) +[UE3] [2025-07-19 11:58:23] [ 5] 6.00-7.00 sec 4.37 MBytes 36.6 Mbits/sec 0.122 ms 7725/10886 (71%) +[UE3] [2025-07-19 11:58:24] [ 5] 7.00-8.00 sec 4.64 MBytes 38.9 Mbits/sec 0.099 ms 6797/10155 (67%) +[UE3] [2025-07-19 11:58:25] [ 5] 8.00-9.00 sec 4.68 MBytes 39.2 Mbits/sec 0.132 ms 6903/10289 (67%) +[UE3] [2025-07-19 11:58:26] [ 5] 9.00-10.00 sec 4.57 MBytes 38.3 Mbits/sec 0.116 ms 7206/10512 (69%) +[UE3] [2025-07-19 11:58:27] [ 5] 10.00-11.00 sec 4.75 MBytes 39.9 Mbits/sec 0.093 ms 7176/10617 (68%) +[UE3] [2025-07-19 11:58:28] [ 5] 11.00-12.00 sec 4.24 MBytes 35.5 Mbits/sec 0.120 ms 6418/9485 (68%) +[UE3] [2025-07-19 11:58:29] [ 5] 12.00-13.00 sec 4.53 MBytes 38.0 Mbits/sec 0.087 ms 6664/9942 (67%) +[UE3] [2025-07-19 11:58:30] [ 5] 13.00-14.00 sec 4.95 MBytes 41.5 Mbits/sec 0.114 ms 8597/12178 (71%) +[UE3] [2025-07-19 11:58:31] [ 5] 14.00-15.00 sec 4.35 MBytes 36.5 Mbits/sec 0.112 ms 6486/9635 (67%) +[UE3] [2025-07-19 11:58:32] [ 5] 15.00-16.00 sec 4.57 MBytes 38.3 Mbits/sec 0.129 ms 6675/9982 (67%) +[UE3] [2025-07-19 11:58:33] [ 5] 16.00-17.00 sec 4.87 MBytes 40.8 Mbits/sec 0.123 ms 7439/10963 (68%) +[UE3] [2025-07-19 11:58:34] [ 5] 17.00-18.00 sec 4.67 MBytes 39.2 Mbits/sec 0.102 ms 7294/10676 (68%) +[UE3] [2025-07-19 11:58:35] [ 5] 18.00-19.00 sec 4.31 MBytes 36.2 Mbits/sec 0.132 ms 6337/9458 (67%) +[UE3] [2025-07-19 11:58:36] [ 5] 19.00-20.00 sec 4.64 MBytes 39.0 Mbits/sec 0.130 ms 6818/10181 (67%) +[UE3] [2025-07-19 11:58:37] [ 5] 20.00-21.00 sec 4.61 MBytes 38.6 Mbits/sec 0.175 ms 7738/11074 (70%) +[UE3] [2025-07-19 11:58:38] [ 5] 21.00-22.00 sec 4.00 MBytes 33.5 Mbits/sec 0.128 ms 6078/8972 (68%) +[UE3] [2025-07-19 11:58:39] [ 5] 22.00-23.00 sec 5.00 MBytes 41.9 Mbits/sec 0.106 ms 7364/10984 (67%) +[UE3] [2025-07-19 11:58:40] [ 5] 23.00-24.00 sec 4.57 MBytes 38.3 Mbits/sec 0.090 ms 8059/11368 (71%) +[UE3] [2025-07-19 11:58:41] [ 5] 24.00-25.00 sec 4.61 MBytes 38.7 Mbits/sec 0.099 ms 6801/10140 (67%) +[UE3] [2025-07-19 11:58:42] [ 5] 25.00-26.00 sec 4.42 MBytes 37.1 Mbits/sec 0.121 ms 6688/9892 (68%) +[UE3] [2025-07-19 11:58:43] [ 5] 26.00-27.00 sec 4.58 MBytes 38.4 Mbits/sec 0.111 ms 6794/10109 (67%) +[UE3] [2025-07-19 11:58:44] [ 5] 27.00-28.00 sec 4.63 MBytes 38.8 Mbits/sec 0.098 ms 7786/11138 (70%) +[UE3] [2025-07-19 11:58:45] [ 5] 28.00-29.00 sec 4.66 MBytes 39.1 Mbits/sec 0.091 ms 7017/10393 (68%) +[UE3] [2025-07-19 11:58:46] [ 5] 29.00-30.00 sec 4.37 MBytes 36.7 Mbits/sec 0.130 ms 6481/9648 (67%) +[UE3] [2025-07-19 11:58:47] [ 5] 30.00-31.00 sec 4.61 MBytes 38.7 Mbits/sec 0.096 ms 6994/10335 (68%) +[UE3] [2025-07-19 11:58:48] [ 5] 31.00-32.00 sec 4.57 MBytes 38.3 Mbits/sec 0.120 ms 7470/10776 (69%) +[UE3] [2025-07-19 11:58:49] [ 5] 32.00-33.00 sec 4.69 MBytes 39.3 Mbits/sec 0.133 ms 7089/10485 (68%) +[UE3] [2025-07-19 11:58:50] [ 5] 33.00-34.00 sec 4.85 MBytes 40.7 Mbits/sec 0.136 ms 7247/10760 (67%) +[UE3] [2025-07-19 11:58:51] [ 5] 34.00-35.00 sec 4.59 MBytes 38.5 Mbits/sec 0.089 ms 6746/10067 (67%) +[UE3] [2025-07-19 11:58:52] [ 5] 35.00-36.00 sec 4.40 MBytes 36.9 Mbits/sec 0.112 ms 6509/9692 (67%) +[UE3] [2025-07-19 11:58:53] [ 5] 36.00-37.00 sec 8.21 MBytes 68.9 Mbits/sec 0.105 ms 13264/19210 (69%) +[UE3] [2025-07-19 11:58:54] [ 5] 37.00-38.00 sec 9.36 MBytes 78.5 Mbits/sec 0.070 ms 5987/12765 (47%) +[UE3] [2025-07-19 11:58:55] [ 5] 38.00-39.00 sec 9.48 MBytes 79.5 Mbits/sec 0.126 ms 3442/10306 (33%) +[UE3] [2025-07-19 11:58:56] [ 5] 39.00-40.00 sec 8.75 MBytes 73.4 Mbits/sec 0.073 ms 3245/9581 (34%) +[UE3] [2025-07-19 11:58:57] [ 5] 40.00-41.00 sec 9.28 MBytes 77.9 Mbits/sec 0.089 ms 4018/10739 (37%) +[UE3] [2025-07-19 11:58:58] [ 5] 41.00-42.00 sec 9.44 MBytes 79.2 Mbits/sec 0.147 ms 3584/10421 (34%) +[UE3] [2025-07-19 11:58:59] [ 5] 42.00-43.00 sec 9.44 MBytes 79.2 Mbits/sec 0.095 ms 3613/10452 (35%) +[UE3] [2025-07-19 11:59:00] [ 5] 43.00-44.00 sec 12.0 MBytes 100 Mbits/sec 0.119 ms 5003/13658 (37%) +[UE3] [2025-07-19 11:59:01] [ 5] 44.00-45.00 sec 15.9 MBytes 134 Mbits/sec 0.152 ms 331/11860 (2.8%) +[UE3] [2025-07-19 11:59:02] [ 5] 45.00-46.00 sec 14.1 MBytes 119 Mbits/sec 0.174 ms 20/10258 (0.19%) +[UE3] [2025-07-19 11:59:03] [ 5] 46.00-47.00 sec 14.4 MBytes 121 Mbits/sec 0.109 ms 40/10457 (0.38%) +[UE3] [2025-07-19 11:59:04] [ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 0.155 ms 0/10345 (0%) +[UE3] [2025-07-19 11:59:05] [ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 0.166 ms 0/10356 (0%) +[UE3] [2025-07-19 11:59:06] [ 5] 49.00-50.00 sec 12.7 MBytes 107 Mbits/sec 0.103 ms 45/9247 (0.49%) +[UE3] [2025-07-19 11:59:07] [ 5] 50.00-51.00 sec 15.2 MBytes 127 Mbits/sec 0.197 ms 434/11424 (3.8%) +[UE3] [2025-07-19 11:59:08] [ 5] 51.00-52.00 sec 13.9 MBytes 117 Mbits/sec 0.224 ms 3/10099 (0.03%) +[UE3] [2025-07-19 11:59:09] [ 5] 52.00-53.00 sec 14.1 MBytes 119 Mbits/sec 0.173 ms 329/10567 (3.1%) +[UE3] [2025-07-19 11:59:10] [ 5] 53.00-54.00 sec 12.7 MBytes 106 Mbits/sec 0.094 ms 42/9212 (0.46%) +[UE3] [2025-07-19 11:59:11] [ 5] 54.00-55.00 sec 16.0 MBytes 134 Mbits/sec 0.214 ms 70/11673 (0.6%) +[UE3] [2025-07-19 11:59:12] [ 5] 55.00-56.00 sec 14.1 MBytes 118 Mbits/sec 0.198 ms 0/10200 (0%) +[UE3] [2025-07-19 11:59:13] [ 5] 56.00-57.00 sec 13.0 MBytes 109 Mbits/sec 0.112 ms 38/9440 (0.4%) +[UE3] [2025-07-19 11:59:14] [ 5] 57.00-58.00 sec 15.4 MBytes 130 Mbits/sec 0.089 ms 112/11296 (0.99%) +[UE3] [2025-07-19 11:59:15] [ 5] 58.00-59.00 sec 13.9 MBytes 117 Mbits/sec 0.147 ms 72/10154 (0.71%) +[UE3] [2025-07-19 11:59:16] [ 5] 59.00-60.00 sec 14.1 MBytes 119 Mbits/sec 0.158 ms 249/10488 (2.4%) +[UE3] [2025-07-19 11:59:17] [ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 0.113 ms 86/10408 (0.83%) +[UE3] [2025-07-19 11:59:18] [ 5] 61.00-62.00 sec 13.2 MBytes 111 Mbits/sec 0.215 ms 18/9563 (0.19%) +[UE3] [2025-07-19 11:59:19] [ 5] 62.00-63.00 sec 14.0 MBytes 117 Mbits/sec 0.195 ms 844/10968 (7.7%) +[UE3] [2025-07-19 11:59:20] [ 5] 63.00-64.00 sec 13.0 MBytes 109 Mbits/sec 0.107 ms 112/9524 (1.2%) +[UE3] [2025-07-19 11:59:21] [ 5] 64.00-65.00 sec 14.8 MBytes 124 Mbits/sec 0.119 ms 293/10990 (2.7%) +[UE3] [2025-07-19 11:59:22] [ 5] 65.00-66.00 sec 14.8 MBytes 124 Mbits/sec 0.118 ms 11/10743 (0.1%) +[UE3] [2025-07-19 11:59:23] [ 5] 66.00-67.00 sec 14.4 MBytes 120 Mbits/sec 0.135 ms 84/10486 (0.8%) +[UE3] [2025-07-19 11:59:24] [ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 0.135 ms 24/10400 (0.23%) +[UE3] [2025-07-19 11:59:25] [ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 0.109 ms 0/10352 (0%) +[UE3] [2025-07-19 11:59:26] [ 5] 69.00-70.00 sec 14.1 MBytes 119 Mbits/sec 0.144 ms 0/10240 (0%) +[UE3] [2025-07-19 11:59:27] [ 5] 70.00-71.00 sec 12.5 MBytes 105 Mbits/sec 0.103 ms 49/9095 (0.54%) +[UE3] [2025-07-19 11:59:28] [ 5] 71.00-72.00 sec 14.1 MBytes 119 Mbits/sec 0.143 ms 546/10792 (5.1%) +[UE3] [2025-07-19 11:59:29] [ 5] 72.00-73.00 sec 13.3 MBytes 111 Mbits/sec 3.097 ms 828/10430 (7.9%) +[UE3] [2025-07-19 11:59:30] [ 5] 73.00-74.00 sec 12.6 MBytes 106 Mbits/sec 0.081 ms 619/9764 (6.3%) +[UE3] [2025-07-19 11:59:31] [ 5] 74.00-75.00 sec 13.8 MBytes 115 Mbits/sec 0.142 ms 448/10408 (4.3%) +[UE3] [2025-07-19 11:59:32] [ 5] 75.00-76.00 sec 12.9 MBytes 108 Mbits/sec 0.154 ms 433/9796 (4.4%) +[UE3] [2025-07-19 11:59:33] [ 5] 76.00-77.00 sec 9.24 MBytes 77.5 Mbits/sec 0.092 ms 1087/7776 (14%) +[UE3] [2025-07-19 11:59:34] [ 5] 77.00-78.00 sec 9.34 MBytes 78.4 Mbits/sec 0.078 ms 3330/10094 (33%) +[UE3] [2025-07-19 11:59:35] [ 5] 78.00-79.00 sec 10.0 MBytes 84.1 Mbits/sec 0.087 ms 3732/10988 (34%) +[UE3] [2025-07-19 11:59:36] [ 5] 79.00-80.00 sec 9.27 MBytes 77.8 Mbits/sec 0.085 ms 3211/9927 (32%) +[UE3] [2025-07-19 11:59:37] [ 5] 80.00-81.00 sec 9.28 MBytes 77.8 Mbits/sec 0.073 ms 3487/10204 (34%) +[UE3] [2025-07-19 11:59:38] [ 5] 81.00-82.00 sec 10.2 MBytes 85.3 Mbits/sec 0.112 ms 3692/11056 (33%) +[UE3] [2025-07-19 11:59:39] [ 5] 82.00-83.00 sec 9.29 MBytes 77.9 Mbits/sec 0.096 ms 3317/10041 (33%) +[UE3] [2025-07-19 11:59:40] [ 5] 83.00-84.00 sec 14.8 MBytes 125 Mbits/sec 0.149 ms 3212/13964 (23%) +[UE3] [2025-07-19 11:59:41] [ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 0.138 ms 761/11118 (6.8%) +[UE3] [2025-07-19 11:59:42] [ 5] 85.00-86.00 sec 13.7 MBytes 115 Mbits/sec 0.149 ms 0/9911 (0%) +[UE3] [2025-07-19 11:59:43] [ 5] 86.00-87.00 sec 14.1 MBytes 118 Mbits/sec 0.179 ms 420/10620 (4%) +[UE3] [2025-07-19 11:59:44] [ 5] 87.00-88.00 sec 14.4 MBytes 121 Mbits/sec 0.114 ms 108/10547 (1%) +[UE3] [2025-07-19 11:59:45] [ 5] 88.00-89.00 sec 14.2 MBytes 119 Mbits/sec 0.195 ms 46/10320 (0.45%) +[UE3] [2025-07-19 11:59:46] [ 5] 89.00-90.00 sec 13.6 MBytes 114 Mbits/sec 0.119 ms 12/9825 (0.12%) +[UE3] [2025-07-19 11:59:47] [ 5] 90.00-91.00 sec 15.1 MBytes 127 Mbits/sec 0.147 ms 107/11068 (0.97%) +[UE3] [2025-07-19 11:59:48] [ 5] 91.00-92.00 sec 14.1 MBytes 118 Mbits/sec 0.166 ms 0/10188 (0%) +[UE3] [2025-07-19 11:59:49] [ 5] 92.00-93.00 sec 13.5 MBytes 113 Mbits/sec 0.196 ms 50/9820 (0.51%) +[UE3] [2025-07-19 11:59:50] [ 5] 93.00-94.00 sec 11.9 MBytes 99.6 Mbits/sec 0.181 ms 518/9119 (5.7%) +[UE3] [2025-07-19 11:59:51] [ 5] 94.00-95.00 sec 13.5 MBytes 113 Mbits/sec 0.092 ms 1057/10835 (9.8%) +[UE3] [2025-07-19 11:59:52] [ 5] 95.00-96.00 sec 16.0 MBytes 134 Mbits/sec 0.108 ms 76/11664 (0.65%) +[UE3] [2025-07-19 11:59:53] [ 5] 96.00-97.00 sec 14.0 MBytes 117 Mbits/sec 0.156 ms 45/10167 (0.44%) +[UE3] [2025-07-19 11:59:54] [ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 0.141 ms 228/10561 (2.2%) +[UE3] [2025-07-19 11:59:55] [ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 0.103 ms 0/10364 (0%) +[UE3] [2025-07-19 11:59:57] [ 5] 99.00-100.00 sec 14.5 MBytes 122 Mbits/sec 0.136 ms 0/10492 (0%) +[UE3] [2025-07-19 11:59:58] [ 5] 0.00-1.00 sec 3.76 MBytes 31.5 Mbits/sec 0.196 ms 0/2722 (0%) +[UE3] [2025-07-19 11:59:59] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:00] [ 5] 2.00-3.00 sec 3.57 MBytes 29.9 Mbits/sec 0.342 ms 0/2586 (0%) +[UE3] [2025-07-19 12:00:01] [ 5] 3.00-4.00 sec 3.58 MBytes 30.1 Mbits/sec 0.212 ms 0/2594 (0%) +[UE3] [2025-07-19 12:00:02] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2591 (0%) +[UE3] [2025-07-19 12:00:03] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE3] [2025-07-19 12:00:04] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2589 (0%) +[UE3] [2025-07-19 12:00:05] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:06] [ 5] 8.00-9.00 sec 3.57 MBytes 30.0 Mbits/sec 0.212 ms 0/2587 (0%) +[UE3] [2025-07-19 12:00:07] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.291 ms 0/2594 (0%) +[UE3] [2025-07-19 12:00:08] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.358 ms 0/2586 (0%) +[UE3] [2025-07-19 12:00:09] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2592 (0%) +[UE3] [2025-07-19 12:00:10] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2593 (0%) +[UE3] [2025-07-19 12:00:11] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.341 ms 0/2587 (0%) +[UE3] [2025-07-19 12:00:12] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:13] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.413 ms 0/2589 (0%) +[UE3] [2025-07-19 12:00:14] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.296 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:15] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.285 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:16] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:17] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.272 ms 0/2587 (0%) +[UE3] [2025-07-19 12:00:18] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2592 (0%) +[UE3] [2025-07-19 12:00:19] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.484 ms 0/2588 (0%) +[UE3] [2025-07-19 12:00:20] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.517 ms 0/2588 (0%) +[UE3] [2025-07-19 12:00:21] [ 5] 23.00-24.00 sec 3.55 MBytes 29.7 Mbits/sec 0.559 ms 0/2568 (0%) +[UE3] [2025-07-19 12:00:22] [ 5] 24.00-25.00 sec 3.61 MBytes 30.3 Mbits/sec 0.598 ms 0/2614 (0%) +[UE3] [2025-07-19 12:00:23] [ 5] 25.00-26.00 sec 3.56 MBytes 29.8 Mbits/sec 0.733 ms 0/2575 (0%) +[UE3] [2025-07-19 12:00:24] [ 5] 26.00-27.00 sec 3.56 MBytes 29.8 Mbits/sec 0.578 ms 0/2577 (0%) +[UE3] [2025-07-19 12:00:25] [ 5] 27.00-28.00 sec 3.60 MBytes 30.2 Mbits/sec 0.572 ms 0/2609 (0%) +[UE3] [2025-07-19 12:00:26] [ 5] 28.00-29.00 sec 3.57 MBytes 29.9 Mbits/sec 0.571 ms 0/2583 (0%) +[UE3] [2025-07-19 12:00:27] [ 5] 29.00-30.00 sec 3.35 MBytes 28.1 Mbits/sec 0.780 ms 0/2424 (0%) +[UE3] [2025-07-19 12:00:28] [ 5] 30.00-31.00 sec 3.82 MBytes 32.1 Mbits/sec 0.603 ms 0/2767 (0%) +[UE3] [2025-07-19 12:00:29] [ 5] 31.00-32.00 sec 3.57 MBytes 30.0 Mbits/sec 0.604 ms 0/2587 (0%) +[UE3] [2025-07-19 12:00:30] [ 5] 32.00-33.00 sec 3.53 MBytes 29.6 Mbits/sec 0.704 ms 0/2554 (0%) +[UE3] [2025-07-19 12:00:31] [ 5] 33.00-34.00 sec 3.62 MBytes 30.3 Mbits/sec 0.630 ms 0/2618 (0%) +[UE3] [2025-07-19 12:00:32] [ 5] 34.00-35.00 sec 3.59 MBytes 30.2 Mbits/sec 0.531 ms 0/2603 (0%) +[UE3] [2025-07-19 12:00:33] [ 5] 35.00-36.00 sec 3.42 MBytes 28.7 Mbits/sec 0.525 ms 0/2475 (0%) +[UE3] [2025-07-19 12:00:34] [ 5] 36.00-37.00 sec 3.71 MBytes 31.1 Mbits/sec 0.649 ms 0/2688 (0%) +[UE3] [2025-07-19 12:00:35] [ 5] 37.00-38.00 sec 3.56 MBytes 29.9 Mbits/sec 0.554 ms 0/2578 (0%) +[UE3] [2025-07-19 12:00:36] [ 5] 38.00-39.00 sec 3.59 MBytes 30.1 Mbits/sec 0.563 ms 0/2602 (0%) +[UE3] [2025-07-19 12:00:37] [ 5] 39.00-40.00 sec 3.39 MBytes 28.5 Mbits/sec 0.644 ms 0/2457 (0%) +[UE3] [2025-07-19 12:00:38] [ 5] 40.00-41.00 sec 3.71 MBytes 31.1 Mbits/sec 0.846 ms 0/2685 (0%) +[UE3] [2025-07-19 12:00:39] [ 5] 41.00-42.00 sec 3.60 MBytes 30.2 Mbits/sec 0.636 ms 0/2608 (0%) +[UE3] [2025-07-19 12:00:40] [ 5] 42.00-43.00 sec 3.63 MBytes 30.4 Mbits/sec 0.384 ms 0/2627 (0%) +[UE3] [2025-07-19 12:00:41] [ 5] 43.00-44.00 sec 3.55 MBytes 29.7 Mbits/sec 0.682 ms 0/2568 (0%) +[UE3] [2025-07-19 12:00:42] [ 5] 44.00-45.00 sec 3.45 MBytes 28.9 Mbits/sec 0.671 ms 0/2496 (0%) +[UE3] [2025-07-19 12:00:43] [ 5] 45.00-46.00 sec 3.72 MBytes 31.2 Mbits/sec 0.669 ms 0/2696 (0%) +[UE3] [2025-07-19 12:00:44] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.651 ms 0/2587 (0%) +[UE3] [2025-07-19 12:00:45] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.596 ms 0/2588 (0%) +[UE3] [2025-07-19 12:00:46] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.624 ms 0/2592 (0%) +[UE3] [2025-07-19 12:00:47] [ 5] 49.00-50.00 sec 3.59 MBytes 30.1 Mbits/sec 0.468 ms 0/2598 (0%) +[UE3] [2025-07-19 12:00:48] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.583 ms 0/2591 (0%) +[UE3] [2025-07-19 12:00:49] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.532 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:50] [ 5] 52.00-53.00 sec 3.35 MBytes 28.1 Mbits/sec 0.632 ms 0/2429 (0%) +[UE3] [2025-07-19 12:00:51] [ 5] 53.00-54.00 sec 3.78 MBytes 31.7 Mbits/sec 0.644 ms 0/2737 (0%) +[UE3] [2025-07-19 12:00:52] [ 5] 54.00-55.00 sec 3.58 MBytes 30.1 Mbits/sec 0.600 ms 0/2596 (0%) +[UE3] [2025-07-19 12:00:53] [ 5] 55.00-56.00 sec 3.59 MBytes 30.1 Mbits/sec 0.258 ms 0/2599 (0%) +[UE3] [2025-07-19 12:00:54] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:55] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.389 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:56] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.358 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:57] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.329 ms 0/2590 (0%) +[UE3] [2025-07-19 12:00:58] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2589 (0%) +[UE3] [2025-07-19 12:00:59] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.458 ms 0/2587 (0%) +[UE3] [2025-07-19 12:01:00] [ 5] 62.00-63.00 sec 3.39 MBytes 28.4 Mbits/sec 0.633 ms 0/2454 (0%) +[UE3] [2025-07-19 12:01:01] [ 5] 63.00-64.00 sec 3.59 MBytes 30.1 Mbits/sec 0.547 ms 0/2597 (0%) +[UE3] [2025-07-19 12:01:02] [ 5] 64.00-65.00 sec 3.76 MBytes 31.5 Mbits/sec 0.447 ms 0/2720 (0%) +[UE3] [2025-07-19 12:01:03] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.563 ms 0/2587 (0%) +[UE3] [2025-07-19 12:01:04] [ 5] 66.00-67.00 sec 3.53 MBytes 29.6 Mbits/sec 0.633 ms 0/2556 (0%) +[UE3] [2025-07-19 12:01:05] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.740 ms 0/2594 (0%) +[UE3] [2025-07-19 12:01:06] [ 5] 68.00-69.00 sec 3.61 MBytes 30.3 Mbits/sec 0.670 ms 0/2614 (0%) +[UE3] [2025-07-19 12:01:07] [ 5] 69.00-70.00 sec 3.57 MBytes 29.9 Mbits/sec 0.601 ms 0/2584 (0%) +[UE3] [2025-07-19 12:01:08] [ 5] 70.00-71.00 sec 3.59 MBytes 30.1 Mbits/sec 0.552 ms 0/2600 (0%) +[UE3] [2025-07-19 12:01:09] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.539 ms 0/2590 (0%) +[UE3] [2025-07-19 12:01:10] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.541 ms 0/2593 (0%) +[UE3] [2025-07-19 12:01:11] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.512 ms 0/2589 (0%) +[UE3] [2025-07-19 12:01:12] [ 5] 74.00-75.00 sec 3.53 MBytes 29.6 Mbits/sec 0.533 ms 0/2558 (0%) +[UE3] [2025-07-19 12:01:13] [ 5] 75.00-76.00 sec 3.62 MBytes 30.3 Mbits/sec 0.524 ms 0/2619 (0%) +[UE3] [2025-07-19 12:01:14] [ 5] 76.00-77.00 sec 3.57 MBytes 29.9 Mbits/sec 0.459 ms 0/2585 (0%) +[UE3] [2025-07-19 12:01:15] [ 5] 77.00-78.00 sec 3.56 MBytes 29.8 Mbits/sec 0.509 ms 0/2575 (0%) +[UE3] [2025-07-19 12:01:16] [ 5] 78.00-79.00 sec 3.59 MBytes 30.2 Mbits/sec 0.587 ms 0/2603 (0%) +[UE3] [2025-07-19 12:01:17] [ 5] 79.00-80.00 sec 3.58 MBytes 30.1 Mbits/sec 0.560 ms 0/2596 (0%) +[UE3] [2025-07-19 12:01:18] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.559 ms 0/2590 (0%) +[UE3] [2025-07-19 12:01:19] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.523 ms 0/2589 (0%) +[UE3] [2025-07-19 12:01:20] [ 5] 82.00-83.00 sec 3.56 MBytes 29.9 Mbits/sec 0.525 ms 0/2577 (0%) +[UE3] [2025-07-19 12:01:21] [ 5] 83.00-84.00 sec 3.59 MBytes 30.1 Mbits/sec 0.511 ms 0/2600 (0%) +[UE3] [2025-07-19 12:01:22] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.632 ms 0/2590 (0%) +[UE3] [2025-07-19 12:01:23] [ 5] 85.00-86.00 sec 3.53 MBytes 29.6 Mbits/sec 0.666 ms 0/2558 (0%) +[UE3] [2025-07-19 12:01:24] [ 5] 86.00-87.00 sec 3.62 MBytes 30.4 Mbits/sec 0.632 ms 0/2624 (0%) +[UE3] [2025-07-19 12:01:25] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.546 ms 0/2591 (0%) +[UE3] [2025-07-19 12:01:26] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.487 ms 0/2591 (0%) +[UE3] [2025-07-19 12:01:27] [ 5] 89.00-90.00 sec 3.55 MBytes 29.8 Mbits/sec 0.464 ms 0/2571 (0%) +[UE3] [2025-07-19 12:01:28] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.650 ms 0/2588 (0%) +[UE3] [2025-07-19 12:01:29] [ 5] 91.00-92.00 sec 3.59 MBytes 30.1 Mbits/sec 0.604 ms 0/2602 (0%) +[UE3] [2025-07-19 12:01:30] [ 5] 92.00-93.00 sec 3.52 MBytes 29.5 Mbits/sec 0.531 ms 0/2546 (0%) +[UE3] [2025-07-19 12:01:31] [ 5] 93.00-94.00 sec 3.64 MBytes 30.6 Mbits/sec 0.670 ms 0/2639 (0%) +[UE3] [2025-07-19 12:01:32] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.585 ms 0/2589 (0%) +[UE3] [2025-07-19 12:01:33] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.585 ms 0/2593 (0%) +[UE3] [2025-07-19 12:01:34] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.396 ms 0/2591 (0%) +[UE3] [2025-07-19 12:01:35] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.605 ms 0/2588 (0%) +[UE3] [2025-07-19 12:01:36] [ 5] 98.00-99.00 sec 3.56 MBytes 29.9 Mbits/sec 0.585 ms 0/2579 (0%) +[UE3] [2025-07-19 12:01:37] [ 5] 99.00-100.00 sec 3.58 MBytes 30.1 Mbits/sec 0.660 ms 0/2595 (0%) +[UE3] [2025-07-19 12:01:39] [ 5] 0.00-1.00 sec 4.86 MBytes 40.8 Mbits/sec 0.268 ms 0/3520 (0%) +[UE3] [2025-07-19 12:01:40] [ 5] 1.00-2.00 sec 4.75 MBytes 39.8 Mbits/sec 0.259 ms 0/3439 (0%) +[UE3] [2025-07-19 12:01:41] [ 5] 2.00-3.00 sec 4.11 MBytes 34.4 Mbits/sec 0.090 ms 2858/5831 (49%) +[UE3] [2025-07-19 12:01:42] [ 5] 3.00-4.00 sec 4.61 MBytes 38.7 Mbits/sec 0.129 ms 6739/10077 (67%) +[UE3] [2025-07-19 12:01:43] [ 5] 4.00-5.00 sec 4.90 MBytes 41.1 Mbits/sec 0.118 ms 7481/11026 (68%) +[UE3] [2025-07-19 12:01:44] [ 5] 5.00-6.00 sec 4.67 MBytes 39.2 Mbits/sec 0.097 ms 7118/10499 (68%) +[UE3] [2025-07-19 12:01:45] [ 5] 6.00-7.00 sec 4.51 MBytes 37.8 Mbits/sec 0.130 ms 6763/10028 (67%) +[UE3] [2025-07-19 12:01:46] [ 5] 7.00-8.00 sec 4.68 MBytes 39.3 Mbits/sec 0.088 ms 6898/10289 (67%) +[UE3] [2025-07-19 12:01:47] [ 5] 8.00-9.00 sec 4.60 MBytes 38.6 Mbits/sec 0.121 ms 6904/10235 (67%) +[UE3] [2025-07-19 12:01:48] [ 5] 9.00-10.00 sec 4.92 MBytes 41.2 Mbits/sec 0.099 ms 7570/11130 (68%) +[UE3] [2025-07-19 12:01:49] [ 5] 10.00-11.00 sec 4.57 MBytes 38.4 Mbits/sec 0.104 ms 6860/10173 (67%) +[UE3] [2025-07-19 12:01:50] [ 5] 11.00-12.00 sec 4.66 MBytes 39.1 Mbits/sec 0.147 ms 6720/10094 (67%) +[UE3] [2025-07-19 12:01:51] [ 5] 12.00-13.00 sec 4.14 MBytes 34.7 Mbits/sec 0.125 ms 6204/9199 (67%) +[UE3] [2025-07-19 12:01:52] [ 5] 13.00-14.00 sec 4.60 MBytes 38.6 Mbits/sec 0.106 ms 6754/10083 (67%) +[UE3] [2025-07-19 12:01:53] [ 5] 14.00-15.00 sec 4.86 MBytes 40.7 Mbits/sec 0.148 ms 8419/11936 (71%) +[UE3] [2025-07-19 12:01:54] [ 5] 15.00-16.00 sec 4.68 MBytes 39.2 Mbits/sec 0.104 ms 7317/10703 (68%) +[UE3] [2025-07-19 12:01:55] [ 5] 16.00-17.00 sec 5.44 MBytes 45.7 Mbits/sec 0.151 ms 7734/11675 (66%) +[UE3] [2025-07-19 12:01:56] [ 5] 17.00-18.00 sec 10.1 MBytes 85.0 Mbits/sec 0.075 ms 12109/19444 (62%) +[UE3] [2025-07-19 12:01:57] [ 5] 18.00-19.00 sec 8.78 MBytes 73.7 Mbits/sec 0.073 ms 2810/9168 (31%) +[UE3] [2025-07-19 12:01:58] [ 5] 19.00-20.00 sec 10.0 MBytes 83.9 Mbits/sec 0.131 ms 4389/11633 (38%) +[UE3] [2025-07-19 12:01:59] [ 5] 20.00-21.00 sec 9.28 MBytes 77.8 Mbits/sec 0.093 ms 3137/9858 (32%) +[UE3] [2025-07-19 12:02:00] [ 5] 21.00-22.00 sec 9.30 MBytes 78.0 Mbits/sec 0.094 ms 3321/10057 (33%) +[UE3] [2025-07-19 12:02:01] [ 5] 22.00-23.00 sec 10.0 MBytes 84.1 Mbits/sec 0.110 ms 3714/10973 (34%) +[UE3] [2025-07-19 12:02:02] [ 5] 23.00-24.00 sec 10.2 MBytes 85.6 Mbits/sec 0.092 ms 3517/10907 (32%) +[UE3] [2025-07-19 12:02:03] [ 5] 24.00-25.00 sec 15.6 MBytes 131 Mbits/sec 0.152 ms 2739/14048 (19%) +[UE3] [2025-07-19 12:02:04] [ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 0.175 ms 0/10345 (0%) +[UE3] [2025-07-19 12:02:05] [ 5] 26.00-27.00 sec 14.5 MBytes 121 Mbits/sec 0.132 ms 0/10476 (0%) +[UE3] [2025-07-19 12:02:06] [ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 0.134 ms 0/10336 (0%) +[UE3] [2025-07-19 12:02:07] [ 5] 28.00-29.00 sec 13.6 MBytes 114 Mbits/sec 0.133 ms 0/9860 (0%) +[UE3] [2025-07-19 12:02:08] [ 5] 29.00-30.00 sec 14.0 MBytes 117 Mbits/sec 0.174 ms 275/10389 (2.6%) +[UE3] [2025-07-19 12:02:09] [ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 0.144 ms 257/10623 (2.4%) +[UE3] [2025-07-19 12:02:10] [ 5] 31.00-32.00 sec 14.6 MBytes 122 Mbits/sec 0.139 ms 1/10547 (0.0095%) +[UE3] [2025-07-19 12:02:11] [ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 0.139 ms 0/10363 (0%) +[UE3] [2025-07-19 12:02:12] [ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 0.158 ms 0/10377 (0%) +[UE3] [2025-07-19 12:02:13] [ 5] 34.00-35.00 sec 13.3 MBytes 111 Mbits/sec 0.099 ms 0/9611 (0%) +[UE3] [2025-07-19 12:02:14] [ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 0.180 ms 537/10917 (4.9%) +[UE3] [2025-07-19 12:02:15] [ 5] 36.00-37.00 sec 14.5 MBytes 122 Mbits/sec 0.153 ms 0/10502 (0%) +[UE3] [2025-07-19 12:02:16] [ 5] 37.00-38.00 sec 14.5 MBytes 121 Mbits/sec 0.161 ms 0/10474 (0%) +[UE3] [2025-07-19 12:02:17] [ 5] 38.00-39.00 sec 14.4 MBytes 121 Mbits/sec 0.194 ms 0/10434 (0%) +[UE3] [2025-07-19 12:02:18] [ 5] 39.00-40.00 sec 11.7 MBytes 97.8 Mbits/sec 0.073 ms 151/8591 (1.8%) +[UE3] [2025-07-19 12:02:19] [ 5] 40.00-41.00 sec 15.7 MBytes 131 Mbits/sec 0.320 ms 106/11444 (0.93%) +[UE3] [2025-07-19 12:02:20] [ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 0.139 ms 291/10619 (2.7%) +[UE3] [2025-07-19 12:02:21] [ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 0.134 ms 36/10419 (0.35%) +[UE3] [2025-07-19 12:02:22] [ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 0.125 ms 11/10392 (0.11%) +[UE3] [2025-07-19 12:02:23] [ 5] 44.00-45.00 sec 14.4 MBytes 121 Mbits/sec 0.184 ms 0/10448 (0%) +[UE3] [2025-07-19 12:02:24] [ 5] 45.00-46.00 sec 14.2 MBytes 119 Mbits/sec 0.133 ms 10/10280 (0.097%) +[UE3] [2025-07-19 12:02:25] [ 5] 46.00-47.00 sec 14.1 MBytes 119 Mbits/sec 0.153 ms 0/10243 (0%) +[UE3] [2025-07-19 12:02:26] [ 5] 47.00-48.00 sec 14.5 MBytes 122 Mbits/sec 0.106 ms 60/10559 (0.57%) +[UE3] [2025-07-19 12:02:27] [ 5] 48.00-49.00 sec 14.5 MBytes 122 Mbits/sec 0.157 ms 0/10493 (0%) +[UE3] [2025-07-19 12:02:28] [ 5] 49.00-50.00 sec 14.4 MBytes 120 Mbits/sec 0.164 ms 0/10400 (0%) +[UE3] [2025-07-19 12:02:29] [ 5] 50.00-51.00 sec 14.4 MBytes 121 Mbits/sec 0.132 ms 0/10428 (0%) +[UE3] [2025-07-19 12:02:30] [ 5] 51.00-52.00 sec 13.9 MBytes 116 Mbits/sec 0.318 ms 0/10037 (0%) +[UE3] [2025-07-19 12:02:31] [ 5] 52.00-53.00 sec 13.6 MBytes 114 Mbits/sec 0.168 ms 32/9860 (0.32%) +[UE3] [2025-07-19 12:02:32] [ 5] 53.00-54.00 sec 14.9 MBytes 125 Mbits/sec 0.142 ms 3/10767 (0.028%) +[UE3] [2025-07-19 12:02:33] [ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 0.145 ms 37/10372 (0.36%) +[UE3] [2025-07-19 12:02:34] [ 5] 55.00-56.00 sec 12.2 MBytes 103 Mbits/sec 0.087 ms 550/9407 (5.8%) +[UE3] [2025-07-19 12:02:35] [ 5] 56.00-57.00 sec 11.3 MBytes 95.1 Mbits/sec 0.235 ms 332/8541 (3.9%) +[UE3] [2025-07-19 12:02:36] [ 5] 57.00-58.00 sec 8.78 MBytes 73.7 Mbits/sec 0.074 ms 2529/8887 (28%) +[UE3] [2025-07-19 12:02:37] [ 5] 58.00-59.00 sec 9.46 MBytes 79.3 Mbits/sec 0.101 ms 3320/10167 (33%) +[UE3] [2025-07-19 12:02:38] [ 5] 59.00-60.00 sec 10.1 MBytes 84.4 Mbits/sec 0.111 ms 3523/10806 (33%) +[UE3] [2025-07-19 12:02:39] [ 5] 60.00-61.00 sec 9.28 MBytes 77.9 Mbits/sec 0.079 ms 3112/9835 (32%) +[UE3] [2025-07-19 12:02:40] [ 5] 61.00-62.00 sec 10.0 MBytes 84.0 Mbits/sec 0.091 ms 3368/10624 (32%) +[UE3] [2025-07-19 12:02:41] [ 5] 62.00-63.00 sec 9.47 MBytes 79.5 Mbits/sec 0.104 ms 3242/10099 (32%) +[UE3] [2025-07-19 12:02:42] [ 5] 63.00-64.00 sec 12.7 MBytes 107 Mbits/sec 0.102 ms 4321/13519 (32%) +[UE3] [2025-07-19 12:02:43] [ 5] 64.00-65.00 sec 15.2 MBytes 128 Mbits/sec 0.180 ms 456/11471 (4%) +[UE3] [2025-07-19 12:02:44] [ 5] 65.00-66.00 sec 13.5 MBytes 113 Mbits/sec 0.138 ms 72/9861 (0.73%) +[UE3] [2025-07-19 12:02:45] [ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 0.147 ms 814/11205 (7.3%) +[UE3] [2025-07-19 12:02:46] [ 5] 67.00-68.00 sec 14.4 MBytes 121 Mbits/sec 0.149 ms 0/10463 (0%) +[UE3] [2025-07-19 12:02:47] [ 5] 68.00-69.00 sec 14.2 MBytes 119 Mbits/sec 0.140 ms 0/10286 (0%) +[UE3] [2025-07-19 12:02:48] [ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 0.150 ms 0/10368 (0%) +[UE3] [2025-07-19 12:02:49] [ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 0.168 ms 0/10329 (0%) +[UE3] [2025-07-19 12:02:50] [ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 0.132 ms 0/10336 (0%) +[UE3] [2025-07-19 12:02:51] [ 5] 72.00-73.00 sec 14.2 MBytes 119 Mbits/sec 0.189 ms 0/10297 (0%) +[UE3] [2025-07-19 12:02:52] [ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 0.161 ms 0/10372 (0%) +[UE3] [2025-07-19 12:02:53] [ 5] 74.00-75.00 sec 14.1 MBytes 118 Mbits/sec 0.174 ms 0/10227 (0%) +[UE3] [2025-07-19 12:02:54] [ 5] 75.00-76.00 sec 14.7 MBytes 123 Mbits/sec 0.149 ms 129/10759 (1.2%) +[UE3] [2025-07-19 12:02:55] [ 5] 76.00-77.00 sec 14.2 MBytes 119 Mbits/sec 0.149 ms 0/10284 (0%) +[UE3] [2025-07-19 12:02:56] [ 5] 77.00-78.00 sec 14.6 MBytes 122 Mbits/sec 0.197 ms 0/10558 (0%) +[UE3] [2025-07-19 12:02:57] [ 5] 78.00-79.00 sec 14.4 MBytes 121 Mbits/sec 0.181 ms 0/10422 (0%) +[UE3] [2025-07-19 12:02:58] [ 5] 79.00-80.00 sec 14.6 MBytes 123 Mbits/sec 0.171 ms 0/10599 (0%) +[UE3] [2025-07-19 12:02:59] [ 5] 80.00-81.00 sec 14.2 MBytes 119 Mbits/sec 0.108 ms 0/10307 (0%) +[UE3] [2025-07-19 12:03:00] [ 5] 81.00-82.00 sec 14.0 MBytes 117 Mbits/sec 0.177 ms 0/10133 (0%) +[UE3] [2025-07-19 12:03:01] [ 5] 82.00-83.00 sec 14.5 MBytes 122 Mbits/sec 0.167 ms 0/10505 (0%) +[UE3] [2025-07-19 12:03:02] [ 5] 83.00-84.00 sec 14.4 MBytes 120 Mbits/sec 0.160 ms 0/10397 (0%) +[UE3] [2025-07-19 12:03:03] [ 5] 84.00-85.00 sec 14.0 MBytes 118 Mbits/sec 0.130 ms 0/10148 (0%) +[UE3] [2025-07-19 12:03:04] [ 5] 85.00-86.00 sec 12.8 MBytes 107 Mbits/sec 0.195 ms 0/9263 (0%) +[UE3] [2025-07-19 12:03:05] [ 5] 86.00-87.00 sec 12.8 MBytes 107 Mbits/sec 0.096 ms 726/9970 (7.3%) +[UE3] [2025-07-19 12:03:06] [ 5] 87.00-88.00 sec 16.0 MBytes 134 Mbits/sec 0.153 ms 30/11635 (0.26%) +[UE3] [2025-07-19 12:03:07] [ 5] 88.00-89.00 sec 14.4 MBytes 121 Mbits/sec 0.165 ms 0/10408 (0%) +[UE3] [2025-07-19 12:03:08] [ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 0.180 ms 0/10374 (0%) +[UE3] [2025-07-19 12:03:09] [ 5] 90.00-91.00 sec 14.4 MBytes 121 Mbits/sec 0.100 ms 0/10432 (0%) +[UE3] [2025-07-19 12:03:10] [ 5] 91.00-92.00 sec 13.6 MBytes 114 Mbits/sec 0.154 ms 0/9823 (0%) +[UE3] [2025-07-19 12:03:11] [ 5] 92.00-93.00 sec 14.4 MBytes 121 Mbits/sec 0.164 ms 176/10579 (1.7%) +[UE3] [2025-07-19 12:03:12] [ 5] 93.00-94.00 sec 14.4 MBytes 121 Mbits/sec 0.159 ms 67/10492 (0.64%) +[UE3] [2025-07-19 12:03:13] [ 5] 94.00-95.00 sec 14.4 MBytes 120 Mbits/sec 0.139 ms 0/10392 (0%) +[UE3] [2025-07-19 12:03:14] [ 5] 95.00-96.00 sec 14.1 MBytes 118 Mbits/sec 0.198 ms 0/10212 (0%) +[UE3] [2025-07-19 12:03:15] [ 5] 96.00-97.00 sec 13.8 MBytes 116 Mbits/sec 0.168 ms 394/10402 (3.8%) +[UE3] [2025-07-19 12:03:16] [ 5] 97.00-98.00 sec 13.4 MBytes 112 Mbits/sec 0.084 ms 201/9877 (2%) +[UE3] [2025-07-19 12:03:17] [ 5] 98.00-99.00 sec 14.9 MBytes 125 Mbits/sec 0.179 ms 95/10853 (0.88%) +[UE3] [2025-07-19 12:03:19] [ 5] 99.00-100.00 sec 14.5 MBytes 122 Mbits/sec 0.156 ms 0/10507 (0%) +[UE3] [2025-07-19 12:03:20] [ 5] 0.00-1.00 sec 3.76 MBytes 31.6 Mbits/sec 0.214 ms 0/2725 (0%) +[UE3] [2025-07-19 12:03:21] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:22] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:23] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.355 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:24] [ 5] 4.00-5.00 sec 3.57 MBytes 30.0 Mbits/sec 0.294 ms 0/2588 (0%) +[UE3] [2025-07-19 12:03:25] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.343 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:26] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.285 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:27] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2593 (0%) +[UE3] [2025-07-19 12:03:28] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:29] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:30] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:31] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:32] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:33] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.283 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:34] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:35] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:36] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:37] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:38] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.114 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:39] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.242 ms 0/2588 (0%) +[UE3] [2025-07-19 12:03:40] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2592 (0%) +[UE3] [2025-07-19 12:03:41] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:42] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:43] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:44] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:45] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:46] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:47] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.219 ms 0/2588 (0%) +[UE3] [2025-07-19 12:03:48] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.330 ms 0/2592 (0%) +[UE3] [2025-07-19 12:03:49] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:50] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:51] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2589 (0%) +[UE3] [2025-07-19 12:03:52] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:53] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:54] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2587 (0%) +[UE3] [2025-07-19 12:03:55] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2592 (0%) +[UE3] [2025-07-19 12:03:56] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:57] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2590 (0%) +[UE3] [2025-07-19 12:03:58] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.269 ms 0/2587 (0%) +[UE3] [2025-07-19 12:03:59] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2591 (0%) +[UE3] [2025-07-19 12:04:00] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2591 (0%) +[UE3] [2025-07-19 12:04:01] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 12:04:02] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2590 (0%) +[UE3] [2025-07-19 12:04:03] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.286 ms 0/2587 (0%) +[UE3] [2025-07-19 12:04:04] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.307 ms 0/2592 (0%) +[UE3] [2025-07-19 12:04:05] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2590 (0%) +[UE3] [2025-07-19 12:04:06] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.297 ms 0/2588 (0%) +[UE3] [2025-07-19 12:04:07] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2592 (0%) +[UE3] [2025-07-19 12:04:08] [ 5] 48.00-49.00 sec 3.54 MBytes 29.7 Mbits/sec 0.630 ms 0/2564 (0%) +[UE3] [2025-07-19 12:04:09] [ 5] 49.00-50.00 sec 3.47 MBytes 29.1 Mbits/sec 0.740 ms 0/2512 (0%) +[UE3] [2025-07-19 12:04:10] [ 5] 50.00-51.00 sec 3.71 MBytes 31.1 Mbits/sec 0.636 ms 0/2684 (0%) +[UE3] [2025-07-19 12:04:11] [ 5] 51.00-52.00 sec 3.45 MBytes 29.0 Mbits/sec 0.511 ms 0/2500 (0%) +[UE3] [2025-07-19 12:04:12] [ 5] 52.00-53.00 sec 3.64 MBytes 30.6 Mbits/sec 0.526 ms 0/2639 (0%) +[UE3] [2025-07-19 12:04:13] [ 5] 53.00-54.00 sec 3.63 MBytes 30.5 Mbits/sec 0.582 ms 0/2629 (0%) +[UE3] [2025-07-19 12:04:14] [ 5] 54.00-55.00 sec 3.57 MBytes 29.9 Mbits/sec 0.607 ms 0/2582 (0%) +[UE3] [2025-07-19 12:04:15] [ 5] 55.00-56.00 sec 3.57 MBytes 29.9 Mbits/sec 0.591 ms 0/2582 (0%) +[UE3] [2025-07-19 12:04:16] [ 5] 56.00-57.00 sec 3.60 MBytes 30.2 Mbits/sec 0.554 ms 0/2605 (0%) +[UE3] [2025-07-19 12:04:17] [ 5] 57.00-58.00 sec 3.51 MBytes 29.5 Mbits/sec 0.579 ms 0/2545 (0%) +[UE3] [2025-07-19 12:04:18] [ 5] 58.00-59.00 sec 3.65 MBytes 30.6 Mbits/sec 0.464 ms 0/2640 (0%) +[UE3] [2025-07-19 12:04:19] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.479 ms 0/2592 (0%) +[UE3] [2025-07-19 12:04:20] [ 5] 60.00-61.00 sec 3.53 MBytes 29.7 Mbits/sec 0.626 ms 0/2559 (0%) +[UE3] [2025-07-19 12:04:21] [ 5] 61.00-62.00 sec 3.60 MBytes 30.2 Mbits/sec 0.548 ms 0/2610 (0%) +[UE3] [2025-07-19 12:04:22] [ 5] 62.00-63.00 sec 3.56 MBytes 29.9 Mbits/sec 0.577 ms 0/2577 (0%) +[UE3] [2025-07-19 12:04:23] [ 5] 63.00-64.00 sec 3.59 MBytes 30.2 Mbits/sec 0.523 ms 0/2603 (0%) +[UE3] [2025-07-19 12:04:24] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.670 ms 0/2594 (0%) +[UE3] [2025-07-19 12:04:25] [ 5] 65.00-66.00 sec 3.58 MBytes 30.1 Mbits/sec 0.420 ms 0/2594 (0%) +[UE3] [2025-07-19 12:04:26] [ 5] 66.00-67.00 sec 3.57 MBytes 30.0 Mbits/sec 0.437 ms 0/2587 (0%) +[UE3] [2025-07-19 12:04:27] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.496 ms 0/2593 (0%) +[UE3] [2025-07-19 12:04:28] [ 5] 68.00-69.00 sec 3.57 MBytes 29.9 Mbits/sec 0.588 ms 0/2584 (0%) +[UE3] [2025-07-19 12:04:29] [ 5] 69.00-70.00 sec 3.57 MBytes 29.9 Mbits/sec 0.536 ms 0/2584 (0%) +[UE3] [2025-07-19 12:04:30] [ 5] 70.00-71.00 sec 3.40 MBytes 28.5 Mbits/sec 0.654 ms 0/2464 (0%) +[UE3] [2025-07-19 12:04:31] [ 5] 71.00-72.00 sec 3.76 MBytes 31.5 Mbits/sec 0.699 ms 0/2722 (0%) +[UE3] [2025-07-19 12:04:32] [ 5] 72.00-73.00 sec 3.54 MBytes 29.7 Mbits/sec 0.620 ms 0/2564 (0%) +[UE3] [2025-07-19 12:04:33] [ 5] 73.00-74.00 sec 3.62 MBytes 30.4 Mbits/sec 0.603 ms 0/2620 (0%) +[UE3] [2025-07-19 12:04:34] [ 5] 74.00-75.00 sec 3.56 MBytes 29.9 Mbits/sec 0.535 ms 0/2581 (0%) +[UE3] [2025-07-19 12:04:35] [ 5] 75.00-76.00 sec 3.53 MBytes 29.6 Mbits/sec 0.656 ms 0/2555 (0%) +[UE3] [2025-07-19 12:04:36] [ 5] 76.00-77.00 sec 3.63 MBytes 30.4 Mbits/sec 0.633 ms 0/2628 (0%) +[UE3] [2025-07-19 12:04:37] [ 5] 77.00-78.00 sec 3.57 MBytes 29.9 Mbits/sec 0.586 ms 0/2582 (0%) +[UE3] [2025-07-19 12:04:38] [ 5] 78.00-79.00 sec 3.58 MBytes 30.1 Mbits/sec 0.584 ms 0/2595 (0%) +[UE3] [2025-07-19 12:04:39] [ 5] 79.00-80.00 sec 3.42 MBytes 28.7 Mbits/sec 0.626 ms 0/2477 (0%) +[UE3] [2025-07-19 12:04:40] [ 5] 80.00-81.00 sec 3.60 MBytes 30.2 Mbits/sec 0.773 ms 0/2608 (0%) +[UE3] [2025-07-19 12:04:41] [ 5] 81.00-82.00 sec 3.62 MBytes 30.3 Mbits/sec 0.547 ms 0/2619 (0%) +[UE3] [2025-07-19 12:04:42] [ 5] 82.00-83.00 sec 3.65 MBytes 30.6 Mbits/sec 0.681 ms 0/2643 (0%) +[UE3] [2025-07-19 12:04:43] [ 5] 83.00-84.00 sec 3.59 MBytes 30.1 Mbits/sec 0.446 ms 0/2601 (0%) +[UE3] [2025-07-19 12:04:44] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.505 ms 0/2592 (0%) +[UE3] [2025-07-19 12:04:45] [ 5] 85.00-86.00 sec 3.59 MBytes 30.1 Mbits/sec 0.550 ms 0/2598 (0%) +[UE3] [2025-07-19 12:04:46] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.550 ms 0/2592 (0%) +[UE3] [2025-07-19 12:04:47] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE3] [2025-07-19 12:04:48] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.260 ms 0/2592 (0%) +[UE3] [2025-07-19 12:04:49] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 12:04:50] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.216 ms 0/2588 (0%) +[UE3] [2025-07-19 12:04:51] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2589 (0%) +[UE3] [2025-07-19 12:04:52] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 12:04:53] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.327 ms 0/2593 (0%) +[UE3] [2025-07-19 12:04:54] [ 5] 94.00-95.00 sec 3.57 MBytes 29.9 Mbits/sec 0.549 ms 0/2584 (0%) +[UE3] [2025-07-19 12:04:55] [ 5] 95.00-96.00 sec 3.55 MBytes 29.8 Mbits/sec 0.490 ms 0/2572 (0%) +[UE3] [2025-07-19 12:04:56] [ 5] 96.00-97.00 sec 3.59 MBytes 30.1 Mbits/sec 0.630 ms 0/2601 (0%) +[UE3] [2025-07-19 12:04:57] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.492 ms 0/2589 (0%) +[UE3] [2025-07-19 12:04:58] [ 5] 98.00-99.00 sec 3.56 MBytes 29.9 Mbits/sec 0.776 ms 0/2579 (0%) +[UE3] [2025-07-19 12:04:59] [ 5] 99.00-100.00 sec 3.60 MBytes 30.2 Mbits/sec 0.529 ms 0/2605 (0%) +[UE3] [2025-07-19 12:05:02] [ 5] 0.00-1.00 sec 4.75 MBytes 39.8 Mbits/sec 0.311 ms 0/3440 (0%) +[UE3] [2025-07-19 12:05:03] [ 5] 1.00-2.00 sec 4.73 MBytes 39.7 Mbits/sec 0.198 ms 0/3428 (0%) +[UE3] [2025-07-19 12:05:04] [ 5] 2.00-3.00 sec 4.30 MBytes 36.1 Mbits/sec 0.138 ms 2753/5867 (47%) +[UE3] [2025-07-19 12:05:05] [ 5] 3.00-4.00 sec 4.62 MBytes 38.8 Mbits/sec 0.107 ms 6850/10197 (67%) +[UE3] [2025-07-19 12:05:06] [ 5] 4.00-5.00 sec 4.79 MBytes 40.2 Mbits/sec 0.109 ms 6924/10394 (67%) +[UE3] [2025-07-19 12:05:07] [ 5] 5.00-6.00 sec 4.66 MBytes 39.1 Mbits/sec 0.163 ms 7092/10468 (68%) +[UE3] [2025-07-19 12:05:08] [ 5] 6.00-7.00 sec 4.91 MBytes 41.2 Mbits/sec 0.130 ms 7146/10699 (67%) +[UE3] [2025-07-19 12:05:09] [ 5] 7.00-8.00 sec 4.68 MBytes 39.3 Mbits/sec 0.097 ms 6820/10210 (67%) +[UE3] [2025-07-19 12:05:10] [ 5] 8.00-9.00 sec 4.59 MBytes 38.5 Mbits/sec 0.103 ms 6845/10172 (67%) +[UE3] [2025-07-19 12:05:11] [ 5] 9.00-10.00 sec 4.08 MBytes 34.2 Mbits/sec 0.097 ms 5946/8899 (67%) +[UE3] [2025-07-19 12:05:12] [ 5] 10.00-11.00 sec 4.60 MBytes 38.6 Mbits/sec 0.124 ms 7162/10492 (68%) +[UE3] [2025-07-19 12:05:13] [ 5] 11.00-12.00 sec 4.60 MBytes 38.6 Mbits/sec 0.140 ms 8045/11379 (71%) +[UE3] [2025-07-19 12:05:14] [ 5] 12.00-13.00 sec 4.95 MBytes 41.6 Mbits/sec 0.116 ms 7316/10903 (67%) +[UE3] [2025-07-19 12:05:15] [ 5] 13.00-14.00 sec 4.63 MBytes 38.9 Mbits/sec 0.134 ms 6918/10272 (67%) +[UE3] [2025-07-19 12:05:16] [ 5] 14.00-15.00 sec 4.67 MBytes 39.1 Mbits/sec 0.088 ms 6749/10128 (67%) +[UE3] [2025-07-19 12:05:17] [ 5] 15.00-16.00 sec 4.65 MBytes 39.0 Mbits/sec 0.107 ms 6936/10306 (67%) +[UE3] [2025-07-19 12:05:18] [ 5] 16.00-17.00 sec 4.82 MBytes 40.5 Mbits/sec 0.097 ms 7182/10674 (67%) +[UE3] [2025-07-19 12:05:19] [ 5] 17.00-18.00 sec 4.61 MBytes 38.6 Mbits/sec 0.103 ms 6823/10158 (67%) +[UE3] [2025-07-19 12:05:20] [ 5] 18.00-19.00 sec 4.66 MBytes 39.1 Mbits/sec 0.098 ms 7038/10412 (68%) +[UE3] [2025-07-19 12:05:21] [ 5] 19.00-20.00 sec 4.09 MBytes 34.3 Mbits/sec 0.130 ms 5900/8862 (67%) +[UE3] [2025-07-19 12:05:22] [ 5] 20.00-21.00 sec 4.57 MBytes 38.3 Mbits/sec 0.134 ms 6822/10131 (67%) +[UE3] [2025-07-19 12:05:23] [ 5] 21.00-22.00 sec 4.63 MBytes 38.9 Mbits/sec 0.098 ms 7061/10417 (68%) +[UE3] [2025-07-19 12:05:24] [ 5] 22.00-23.00 sec 4.62 MBytes 38.7 Mbits/sec 0.081 ms 8139/11482 (71%) +[UE3] [2025-07-19 12:05:25] [ 5] 23.00-24.00 sec 4.60 MBytes 38.6 Mbits/sec 0.085 ms 7049/10380 (68%) +[UE3] [2025-07-19 12:05:26] [ 5] 24.00-25.00 sec 4.59 MBytes 38.5 Mbits/sec 0.083 ms 6979/10303 (68%) +[UE3] [2025-07-19 12:05:27] [ 5] 25.00-26.00 sec 4.62 MBytes 38.7 Mbits/sec 0.136 ms 6989/10331 (68%) +[UE3] [2025-07-19 12:05:28] [ 5] 26.00-27.00 sec 8.90 MBytes 74.7 Mbits/sec 0.125 ms 13734/20182 (68%) +[UE3] [2025-07-19 12:05:29] [ 5] 27.00-28.00 sec 10.1 MBytes 85.0 Mbits/sec 0.101 ms 4567/11904 (38%) +[UE3] [2025-07-19 12:05:30] [ 5] 28.00-29.00 sec 9.28 MBytes 77.8 Mbits/sec 0.095 ms 3225/9942 (32%) +[UE3] [2025-07-19 12:05:31] [ 5] 29.00-30.00 sec 9.46 MBytes 79.3 Mbits/sec 0.125 ms 3197/10047 (32%) +[UE3] [2025-07-19 12:05:32] [ 5] 30.00-31.00 sec 8.71 MBytes 73.1 Mbits/sec 0.075 ms 3260/9571 (34%) +[UE3] [2025-07-19 12:05:33] [ 5] 31.00-32.00 sec 9.25 MBytes 77.6 Mbits/sec 0.103 ms 4482/11180 (40%) +[UE3] [2025-07-19 12:05:34] [ 5] 32.00-33.00 sec 10.0 MBytes 84.1 Mbits/sec 0.073 ms 3700/10956 (34%) +[UE3] [2025-07-19 12:05:35] [ 5] 33.00-34.00 sec 15.0 MBytes 126 Mbits/sec 0.108 ms 3752/14618 (26%) +[UE3] [2025-07-19 12:05:36] [ 5] 34.00-35.00 sec 14.5 MBytes 122 Mbits/sec 0.142 ms 0/10499 (0%) +[UE3] [2025-07-19 12:05:37] [ 5] 35.00-36.00 sec 14.5 MBytes 121 Mbits/sec 0.163 ms 0/10471 (0%) +[UE3] [2025-07-19 12:05:38] [ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 0.147 ms 0/10364 (0%) +[UE3] [2025-07-19 12:05:39] [ 5] 37.00-38.00 sec 14.4 MBytes 121 Mbits/sec 0.114 ms 0/10454 (0%) +[UE3] [2025-07-19 12:05:40] [ 5] 38.00-39.00 sec 14.4 MBytes 121 Mbits/sec 0.143 ms 0/10408 (0%) +[UE3] [2025-07-19 12:05:41] [ 5] 39.00-40.00 sec 14.2 MBytes 119 Mbits/sec 0.131 ms 0/10309 (0%) +[UE3] [2025-07-19 12:05:42] [ 5] 40.00-41.00 sec 14.1 MBytes 119 Mbits/sec 0.175 ms 0/10239 (0%) +[UE3] [2025-07-19 12:05:43] [ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 0.160 ms 0/10360 (0%) +[UE3] [2025-07-19 12:05:44] [ 5] 42.00-43.00 sec 14.1 MBytes 118 Mbits/sec 0.151 ms 0/10198 (0%) +[UE3] [2025-07-19 12:05:45] [ 5] 43.00-44.00 sec 14.4 MBytes 121 Mbits/sec 0.143 ms 0/10421 (0%) +[UE3] [2025-07-19 12:05:46] [ 5] 44.00-45.00 sec 14.4 MBytes 121 Mbits/sec 0.202 ms 0/10408 (0%) +[UE3] [2025-07-19 12:05:47] [ 5] 45.00-46.00 sec 14.2 MBytes 119 Mbits/sec 0.212 ms 0/10260 (0%) +[UE3] [2025-07-19 12:05:48] [ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 0.142 ms 0/10359 (0%) +[UE3] [2025-07-19 12:05:49] [ 5] 47.00-48.00 sec 14.2 MBytes 119 Mbits/sec 0.123 ms 0/10257 (0%) +[UE3] [2025-07-19 12:05:50] [ 5] 48.00-49.00 sec 14.5 MBytes 122 Mbits/sec 0.133 ms 0/10497 (0%) +[UE3] [2025-07-19 12:05:51] [ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 0.151 ms 0/10341 (0%) +[UE3] [2025-07-19 12:05:52] [ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 0.149 ms 0/10382 (0%) +[UE3] [2025-07-19 12:05:53] [ 5] 51.00-52.00 sec 14.0 MBytes 118 Mbits/sec 0.174 ms 0/10168 (0%) +[UE3] [2025-07-19 12:05:54] [ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 0.111 ms 11/10383 (0.11%) +[UE3] [2025-07-19 12:05:55] [ 5] 53.00-54.00 sec 13.9 MBytes 117 Mbits/sec 0.166 ms 0/10091 (0%) +[UE3] [2025-07-19 12:05:56] [ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 0.176 ms 143/10502 (1.4%) +[UE3] [2025-07-19 12:05:57] [ 5] 55.00-56.00 sec 14.4 MBytes 120 Mbits/sec 0.093 ms 65/10466 (0.62%) +[UE3] [2025-07-19 12:05:58] [ 5] 56.00-57.00 sec 14.2 MBytes 119 Mbits/sec 0.199 ms 0/10258 (0%) +[UE3] [2025-07-19 12:05:59] [ 5] 57.00-58.00 sec 13.6 MBytes 114 Mbits/sec 0.218 ms 54/9874 (0.55%) +[UE3] [2025-07-19 12:06:00] [ 5] 58.00-59.00 sec 15.1 MBytes 127 Mbits/sec 0.175 ms 139/11084 (1.3%) +[UE3] [2025-07-19 12:06:01] [ 5] 59.00-60.00 sec 13.1 MBytes 110 Mbits/sec 0.080 ms 4/9505 (0.042%) +[UE3] [2025-07-19 12:06:02] [ 5] 60.00-61.00 sec 15.4 MBytes 129 Mbits/sec 0.210 ms 61/11195 (0.54%) +[UE3] [2025-07-19 12:06:03] [ 5] 61.00-62.00 sec 14.2 MBytes 119 Mbits/sec 0.160 ms 0/10266 (0%) +[UE3] [2025-07-19 12:06:04] [ 5] 62.00-63.00 sec 14.2 MBytes 119 Mbits/sec 0.168 ms 0/10260 (0%) +[UE3] [2025-07-19 12:06:05] [ 5] 63.00-64.00 sec 12.4 MBytes 104 Mbits/sec 0.165 ms 76/9034 (0.84%) +[UE3] [2025-07-19 12:06:06] [ 5] 64.00-65.00 sec 14.9 MBytes 125 Mbits/sec 0.164 ms 41/10797 (0.38%) +[UE3] [2025-07-19 12:06:07] [ 5] 65.00-66.00 sec 14.2 MBytes 119 Mbits/sec 0.209 ms 964/11271 (8.6%) +[UE3] [2025-07-19 12:06:08] [ 5] 66.00-67.00 sec 12.3 MBytes 103 Mbits/sec 0.166 ms 34/8928 (0.38%) +[UE3] [2025-07-19 12:06:09] [ 5] 67.00-68.00 sec 8.81 MBytes 73.9 Mbits/sec 0.090 ms 1161/7538 (15%) +[UE3] [2025-07-19 12:06:10] [ 5] 68.00-69.00 sec 10.1 MBytes 84.6 Mbits/sec 0.113 ms 3415/10717 (32%) +[UE3] [2025-07-19 12:06:11] [ 5] 69.00-70.00 sec 9.27 MBytes 77.8 Mbits/sec 0.094 ms 3138/9854 (32%) +[UE3] [2025-07-19 12:06:12] [ 5] 70.00-71.00 sec 9.46 MBytes 79.3 Mbits/sec 0.086 ms 3327/10174 (33%) +[UE3] [2025-07-19 12:06:13] [ 5] 71.00-72.00 sec 10.0 MBytes 84.1 Mbits/sec 0.116 ms 3564/10820 (33%) +[UE3] [2025-07-19 12:06:14] [ 5] 72.00-73.00 sec 9.26 MBytes 77.6 Mbits/sec 0.084 ms 3391/10094 (34%) +[UE3] [2025-07-19 12:06:15] [ 5] 73.00-74.00 sec 11.0 MBytes 92.0 Mbits/sec 0.103 ms 3794/11734 (32%) +[UE3] [2025-07-19 12:06:16] [ 5] 74.00-75.00 sec 15.9 MBytes 133 Mbits/sec 0.138 ms 2040/13525 (15%) +[UE3] [2025-07-19 12:06:17] [ 5] 75.00-76.00 sec 13.6 MBytes 114 Mbits/sec 0.186 ms 0/9855 (0%) +[UE3] [2025-07-19 12:06:18] [ 5] 76.00-77.00 sec 14.2 MBytes 119 Mbits/sec 0.166 ms 343/10649 (3.2%) +[UE3] [2025-07-19 12:06:19] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 107/8946 (1.2%) +[UE3] [2025-07-19 12:06:20] [ 5] 78.00-79.00 sec 15.9 MBytes 134 Mbits/sec 0.187 ms 191/11733 (1.6%) +[UE3] [2025-07-19 12:06:21] [ 5] 79.00-80.00 sec 14.5 MBytes 122 Mbits/sec 0.170 ms 52/10545 (0.49%) +[UE3] [2025-07-19 12:06:22] [ 5] 80.00-81.00 sec 14.5 MBytes 121 Mbits/sec 0.164 ms 18/10504 (0.17%) +[UE3] [2025-07-19 12:06:23] [ 5] 81.00-82.00 sec 14.2 MBytes 119 Mbits/sec 0.213 ms 0/10278 (0%) +[UE3] [2025-07-19 12:06:24] [ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 0.173 ms 0/10324 (0%) +[UE3] [2025-07-19 12:06:25] [ 5] 83.00-84.00 sec 14.2 MBytes 119 Mbits/sec 0.167 ms 0/10288 (0%) +[UE3] [2025-07-19 12:06:26] [ 5] 84.00-85.00 sec 12.9 MBytes 109 Mbits/sec 0.186 ms 14/9384 (0.15%) +[UE3] [2025-07-19 12:06:27] [ 5] 85.00-86.00 sec 14.8 MBytes 124 Mbits/sec 0.142 ms 584/11313 (5.2%) +[UE3] [2025-07-19 12:06:28] [ 5] 86.00-87.00 sec 12.9 MBytes 108 Mbits/sec 0.073 ms 20/9372 (0.21%) +[UE3] [2025-07-19 12:06:29] [ 5] 87.00-88.00 sec 12.7 MBytes 106 Mbits/sec 0.086 ms 269/9434 (2.9%) +[UE3] [2025-07-19 12:06:30] [ 5] 88.00-89.00 sec 15.6 MBytes 130 Mbits/sec 0.170 ms 1034/12297 (8.4%) +[UE3] [2025-07-19 12:06:31] [ 5] 89.00-90.00 sec 13.0 MBytes 109 Mbits/sec 0.107 ms 79/9516 (0.83%) +[UE3] [2025-07-19 12:06:32] [ 5] 90.00-91.00 sec 15.3 MBytes 128 Mbits/sec 0.174 ms 130/11198 (1.2%) +[UE3] [2025-07-19 12:06:33] [ 5] 91.00-92.00 sec 14.1 MBytes 118 Mbits/sec 0.101 ms 38/10238 (0.37%) +[UE3] [2025-07-19 12:06:34] [ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 0.137 ms 87/10465 (0.83%) +[UE3] [2025-07-19 12:06:35] [ 5] 93.00-94.00 sec 14.1 MBytes 119 Mbits/sec 0.163 ms 14/10254 (0.14%) +[UE3] [2025-07-19 12:06:36] [ 5] 94.00-95.00 sec 14.2 MBytes 120 Mbits/sec 0.146 ms 86/10405 (0.83%) +[UE3] [2025-07-19 12:06:37] [ 5] 95.00-96.00 sec 13.8 MBytes 116 Mbits/sec 0.175 ms 36/10045 (0.36%) +[UE3] [2025-07-19 12:06:38] [ 5] 96.00-97.00 sec 14.5 MBytes 122 Mbits/sec 0.162 ms 118/10634 (1.1%) +[UE3] [2025-07-19 12:06:39] [ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 0.129 ms 73/10415 (0.7%) +[UE3] [2025-07-19 12:06:40] [ 5] 98.00-99.00 sec 13.1 MBytes 110 Mbits/sec 0.101 ms 176/9662 (1.8%) +[UE3] [2025-07-19 12:06:41] [ 5] 99.00-100.00 sec 15.5 MBytes 130 Mbits/sec 0.173 ms 75/11290 (0.66%) +[UE3] [2025-07-19 12:06:43] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.189 ms 0/2697 (0%) +[UE3] [2025-07-19 12:06:44] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE3] [2025-07-19 12:06:45] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2589 (0%) +[UE3] [2025-07-19 12:06:46] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE3] [2025-07-19 12:06:47] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2590 (0%) +[UE3] [2025-07-19 12:06:48] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.273 ms 0/2588 (0%) +[UE3] [2025-07-19 12:06:49] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2591 (0%) +[UE3] [2025-07-19 12:06:50] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.218 ms 0/2588 (0%) +[UE3] [2025-07-19 12:06:51] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2589 (0%) +[UE3] [2025-07-19 12:06:52] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE3] [2025-07-19 12:06:53] [ 5] 10.00-11.00 sec 3.56 MBytes 29.9 Mbits/sec 0.473 ms 0/2580 (0%) +[UE3] [2025-07-19 12:06:54] [ 5] 11.00-12.00 sec 3.59 MBytes 30.1 Mbits/sec 0.403 ms 0/2600 (0%) +[UE3] [2025-07-19 12:06:55] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2590 (0%) +[UE3] [2025-07-19 12:06:56] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2592 (0%) +[UE3] [2025-07-19 12:06:57] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE3] [2025-07-19 12:06:58] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.255 ms 0/2589 (0%) +[UE3] [2025-07-19 12:06:58] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:00] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:01] [ 5] 18.00-19.00 sec 3.55 MBytes 29.8 Mbits/sec 0.201 ms 16/2590 (0.62%) +[UE3] [2025-07-19 12:07:02] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:03] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:04] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:05] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:06] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:07] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.254 ms 0/2586 (0%) +[UE3] [2025-07-19 12:07:08] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2591 (0%) +[UE3] [2025-07-19 12:07:09] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.275 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:10] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2593 (0%) +[UE3] [2025-07-19 12:07:11] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.235 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:12] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:13] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.233 ms 0/2588 (0%) +[UE3] [2025-07-19 12:07:14] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2592 (0%) +[UE3] [2025-07-19 12:07:15] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:16] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:17] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:18] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:19] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:20] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:21] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:22] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:23] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.237 ms 0/2587 (0%) +[UE3] [2025-07-19 12:07:24] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2593 (0%) +[UE3] [2025-07-19 12:07:25] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:26] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:27] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:28] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:29] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.374 ms 0/2587 (0%) +[UE3] [2025-07-19 12:07:30] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.267 ms 0/2592 (0%) +[UE3] [2025-07-19 12:07:31] [ 5] 48.00-49.00 sec 3.57 MBytes 30.0 Mbits/sec 0.297 ms 0/2588 (0%) +[UE3] [2025-07-19 12:07:32] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.202 ms 0/2587 (0%) +[UE3] [2025-07-19 12:07:33] [ 5] 50.00-51.00 sec 3.58 MBytes 30.1 Mbits/sec 0.246 ms 0/2595 (0%) +[UE3] [2025-07-19 12:07:34] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:35] [ 5] 52.00-53.00 sec 3.57 MBytes 29.9 Mbits/sec 0.552 ms 0/2584 (0%) +[UE3] [2025-07-19 12:07:36] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.438 ms 0/2586 (0%) +[UE3] [2025-07-19 12:07:37] [ 5] 54.00-55.00 sec 3.59 MBytes 30.1 Mbits/sec 0.552 ms 0/2597 (0%) +[UE3] [2025-07-19 12:07:38] [ 5] 55.00-56.00 sec 3.30 MBytes 27.7 Mbits/sec 0.564 ms 0/2390 (0%) +[UE3] [2025-07-19 12:07:39] [ 5] 56.00-57.00 sec 3.74 MBytes 31.4 Mbits/sec 0.554 ms 0/2710 (0%) +[UE3] [2025-07-19 12:07:40] [ 5] 57.00-58.00 sec 3.66 MBytes 30.7 Mbits/sec 0.567 ms 0/2649 (0%) +[UE3] [2025-07-19 12:07:41] [ 5] 58.00-59.00 sec 3.60 MBytes 30.2 Mbits/sec 0.509 ms 0/2607 (0%) +[UE3] [2025-07-19 12:07:42] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.552 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:43] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.464 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:44] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.512 ms 0/2589 (0%) +[UE3] [2025-07-19 12:07:45] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.527 ms 0/2593 (0%) +[UE3] [2025-07-19 12:07:46] [ 5] 63.00-64.00 sec 3.57 MBytes 29.9 Mbits/sec 0.564 ms 0/2585 (0%) +[UE3] [2025-07-19 12:07:47] [ 5] 64.00-65.00 sec 3.56 MBytes 29.9 Mbits/sec 0.660 ms 0/2580 (0%) +[UE3] [2025-07-19 12:07:48] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.494 ms 0/2591 (0%) +[UE3] [2025-07-19 12:07:49] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.655 ms 0/2593 (0%) +[UE3] [2025-07-19 12:07:50] [ 5] 67.00-68.00 sec 3.58 MBytes 30.1 Mbits/sec 0.630 ms 0/2596 (0%) +[UE3] [2025-07-19 12:07:51] [ 5] 68.00-69.00 sec 3.58 MBytes 30.1 Mbits/sec 0.504 ms 0/2595 (0%) +[UE3] [2025-07-19 12:07:52] [ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 0.513 ms 0/2586 (0%) +[UE3] [2025-07-19 12:07:53] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.519 ms 0/2590 (0%) +[UE3] [2025-07-19 12:07:54] [ 5] 71.00-72.00 sec 3.46 MBytes 29.0 Mbits/sec 0.528 ms 0/2504 (0%) +[UE3] [2025-07-19 12:07:55] [ 5] 72.00-73.00 sec 3.70 MBytes 31.0 Mbits/sec 0.579 ms 0/2676 (0%) +[UE3] [2025-07-19 12:07:56] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.425 ms 0/2591 (0%) +[UE3] [2025-07-19 12:07:57] [ 5] 74.00-75.00 sec 3.57 MBytes 30.0 Mbits/sec 0.529 ms 0/2588 (0%) +[UE3] [2025-07-19 12:07:58] [ 5] 75.00-76.00 sec 3.49 MBytes 29.3 Mbits/sec 0.603 ms 0/2528 (0%) +[UE3] [2025-07-19 12:07:59] [ 5] 76.00-77.00 sec 3.60 MBytes 30.2 Mbits/sec 0.590 ms 0/2608 (0%) +[UE3] [2025-07-19 12:08:00] [ 5] 77.00-78.00 sec 3.61 MBytes 30.3 Mbits/sec 0.606 ms 0/2616 (0%) +[UE3] [2025-07-19 12:08:01] [ 5] 78.00-79.00 sec 3.59 MBytes 30.1 Mbits/sec 0.491 ms 0/2602 (0%) +[UE3] [2025-07-19 12:08:02] [ 5] 79.00-80.00 sec 3.57 MBytes 29.9 Mbits/sec 0.545 ms 0/2584 (0%) +[UE3] [2025-07-19 12:08:03] [ 5] 80.00-81.00 sec 3.59 MBytes 30.1 Mbits/sec 0.497 ms 0/2600 (0%) +[UE3] [2025-07-19 12:08:04] [ 5] 81.00-82.00 sec 3.58 MBytes 30.1 Mbits/sec 0.527 ms 0/2595 (0%) +[UE3] [2025-07-19 12:08:05] [ 5] 82.00-83.00 sec 3.55 MBytes 29.8 Mbits/sec 0.570 ms 0/2574 (0%) +[UE3] [2025-07-19 12:08:06] [ 5] 83.00-84.00 sec 3.57 MBytes 30.0 Mbits/sec 0.608 ms 0/2588 (0%) +[UE3] [2025-07-19 12:08:07] [ 5] 84.00-85.00 sec 3.60 MBytes 30.2 Mbits/sec 0.328 ms 0/2605 (0%) +[UE3] [2025-07-19 12:08:08] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2592 (0%) +[UE3] [2025-07-19 12:08:09] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.313 ms 0/2588 (0%) +[UE3] [2025-07-19 12:08:10] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE3] [2025-07-19 12:08:11] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2592 (0%) +[UE3] [2025-07-19 12:08:12] [ 5] 89.00-90.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2587 (0%) +[UE3] [2025-07-19 12:08:12] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.260 ms 0/2590 (0%) +[UE3] [2025-07-19 12:08:14] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.516 ms 0/2587 (0%) +[UE3] [2025-07-19 12:08:15] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.369 ms 0/2593 (0%) +[UE3] [2025-07-19 12:08:16] [ 5] 93.00-94.00 sec 3.57 MBytes 29.9 Mbits/sec 0.572 ms 0/2585 (0%) +[UE3] [2025-07-19 12:08:17] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.536 ms 0/2588 (0%) +[UE3] [2025-07-19 12:08:18] [ 5] 95.00-96.00 sec 3.56 MBytes 29.9 Mbits/sec 0.613 ms 0/2580 (0%) +[UE3] [2025-07-19 12:08:19] [ 5] 96.00-97.00 sec 3.59 MBytes 30.2 Mbits/sec 0.581 ms 0/2603 (0%) +[UE3] [2025-07-19 12:08:20] [ 5] 97.00-98.00 sec 3.56 MBytes 29.9 Mbits/sec 0.660 ms 0/2580 (0%) +[UE3] [2025-07-19 12:08:21] [ 5] 98.00-99.00 sec 3.55 MBytes 29.8 Mbits/sec 0.669 ms 0/2573 (0%) +[UE3] [2025-07-19 12:08:22] [ 5] 99.00-100.00 sec 3.62 MBytes 30.3 Mbits/sec 0.500 ms 0/2618 (0%) +[UE3] [2025-07-19 12:08:24] [ 5] 0.00-1.00 sec 4.83 MBytes 40.6 Mbits/sec 0.304 ms 0/3501 (0%) +[UE3] [2025-07-19 12:08:25] [ 5] 1.00-2.00 sec 4.65 MBytes 39.0 Mbits/sec 0.330 ms 0/3364 (0%) +[UE3] [2025-07-19 12:08:26] [ 5] 2.00-3.00 sec 3.87 MBytes 32.5 Mbits/sec 0.106 ms 1930/4736 (41%) +[UE3] [2025-07-19 12:08:27] [ 5] 3.00-4.00 sec 4.61 MBytes 38.7 Mbits/sec 0.130 ms 6875/10212 (67%) +[UE3] [2025-07-19 12:08:28] [ 5] 4.00-5.00 sec 4.67 MBytes 39.1 Mbits/sec 0.122 ms 7108/10487 (68%) +[UE3] [2025-07-19 12:08:29] [ 5] 5.00-6.00 sec 4.12 MBytes 34.5 Mbits/sec 0.088 ms 7194/10176 (71%) +[UE3] [2025-07-19 12:08:30] [ 5] 6.00-7.00 sec 4.64 MBytes 38.9 Mbits/sec 0.080 ms 7000/10358 (68%) +[UE3] [2025-07-19 12:08:31] [ 5] 7.00-8.00 sec 4.27 MBytes 35.8 Mbits/sec 0.136 ms 7395/10485 (71%) +[UE3] [2025-07-19 12:08:32] [ 5] 8.00-9.00 sec 4.67 MBytes 39.2 Mbits/sec 0.117 ms 7029/10414 (67%) +[UE3] [2025-07-19 12:08:33] [ 5] 9.00-10.00 sec 4.68 MBytes 39.3 Mbits/sec 0.090 ms 8083/11473 (70%) +[UE3] [2025-07-19 12:08:34] [ 5] 10.00-11.00 sec 4.66 MBytes 39.1 Mbits/sec 0.111 ms 7146/10519 (68%) +[UE3] [2025-07-19 12:08:35] [ 5] 11.00-12.00 sec 4.56 MBytes 38.3 Mbits/sec 0.129 ms 6567/9869 (67%) +[UE3] [2025-07-19 12:08:36] [ 5] 12.00-13.00 sec 4.64 MBytes 38.9 Mbits/sec 0.102 ms 7165/10523 (68%) +[UE3] [2025-07-19 12:08:37] [ 5] 13.00-14.00 sec 4.66 MBytes 39.1 Mbits/sec 0.089 ms 7010/10388 (67%) +[UE3] [2025-07-19 12:08:38] [ 5] 14.00-15.00 sec 4.57 MBytes 38.3 Mbits/sec 0.112 ms 6814/10120 (67%) +[UE3] [2025-07-19 12:08:39] [ 5] 15.00-16.00 sec 4.58 MBytes 38.4 Mbits/sec 0.152 ms 6936/10250 (68%) +[UE3] [2025-07-19 12:08:40] [ 5] 16.00-17.00 sec 4.72 MBytes 39.6 Mbits/sec 0.149 ms 7358/10773 (68%) +[UE3] [2025-07-19 12:08:41] [ 5] 17.00-18.00 sec 4.80 MBytes 40.3 Mbits/sec 0.122 ms 7180/10657 (67%) +[UE3] [2025-07-19 12:08:42] [ 5] 18.00-19.00 sec 4.63 MBytes 38.8 Mbits/sec 0.120 ms 6931/10283 (67%) +[UE3] [2025-07-19 12:08:43] [ 5] 19.00-20.00 sec 4.61 MBytes 38.7 Mbits/sec 0.098 ms 6664/10003 (67%) +[UE3] [2025-07-19 12:08:44] [ 5] 20.00-21.00 sec 4.65 MBytes 39.0 Mbits/sec 0.136 ms 6804/10172 (67%) +[UE3] [2025-07-19 12:08:45] [ 5] 21.00-22.00 sec 4.54 MBytes 38.1 Mbits/sec 0.099 ms 6897/10182 (68%) +[UE3] [2025-07-19 12:08:46] [ 5] 22.00-23.00 sec 4.98 MBytes 41.8 Mbits/sec 0.078 ms 7609/11216 (68%) +[UE3] [2025-07-19 12:08:47] [ 5] 23.00-24.00 sec 4.54 MBytes 38.1 Mbits/sec 0.129 ms 6870/10157 (68%) +[UE3] [2025-07-19 12:08:48] [ 5] 24.00-25.00 sec 4.64 MBytes 38.9 Mbits/sec 0.086 ms 6781/10139 (67%) +[UE3] [2025-07-19 12:08:49] [ 5] 25.00-26.00 sec 4.67 MBytes 39.2 Mbits/sec 0.134 ms 7154/10539 (68%) +[UE3] [2025-07-19 12:08:50] [ 5] 26.00-27.00 sec 4.57 MBytes 38.4 Mbits/sec 0.085 ms 6771/10083 (67%) +[UE3] [2025-07-19 12:08:51] [ 5] 27.00-28.00 sec 4.38 MBytes 36.8 Mbits/sec 0.089 ms 6603/9776 (68%) +[UE3] [2025-07-19 12:08:52] [ 5] 28.00-29.00 sec 4.70 MBytes 39.4 Mbits/sec 0.160 ms 6987/10389 (67%) +[UE3] [2025-07-19 12:08:53] [ 5] 29.00-30.00 sec 4.67 MBytes 39.2 Mbits/sec 0.120 ms 8026/11408 (70%) +[UE3] [2025-07-19 12:08:54] [ 5] 30.00-31.00 sec 4.54 MBytes 38.1 Mbits/sec 0.091 ms 6636/9922 (67%) +[UE3] [2025-07-19 12:08:55] [ 5] 31.00-32.00 sec 4.94 MBytes 41.4 Mbits/sec 0.140 ms 7210/10784 (67%) +[UE3] [2025-07-19 12:08:56] [ 5] 32.00-33.00 sec 4.59 MBytes 38.5 Mbits/sec 0.131 ms 7189/10514 (68%) +[UE3] [2025-07-19 12:08:57] [ 5] 33.00-34.00 sec 4.60 MBytes 38.6 Mbits/sec 0.103 ms 6639/9969 (67%) +[UE3] [2025-07-19 12:08:58] [ 5] 34.00-35.00 sec 4.59 MBytes 38.5 Mbits/sec 0.089 ms 6602/9929 (66%) +[UE3] [2025-07-19 12:08:59] [ 5] 35.00-36.00 sec 4.68 MBytes 39.3 Mbits/sec 0.099 ms 7191/10581 (68%) +[UE3] [2025-07-19 12:09:00] [ 5] 36.00-37.00 sec 4.61 MBytes 38.7 Mbits/sec 0.093 ms 7019/10358 (68%) +[UE3] [2025-07-19 12:09:01] [ 5] 37.00-38.00 sec 4.52 MBytes 37.9 Mbits/sec 0.126 ms 6977/10251 (68%) +[UE3] [2025-07-19 12:09:02] [ 5] 38.00-39.00 sec 4.64 MBytes 38.9 Mbits/sec 0.083 ms 6991/10351 (68%) +[UE3] [2025-07-19 12:09:03] [ 5] 39.00-40.00 sec 4.44 MBytes 37.3 Mbits/sec 0.104 ms 6724/9940 (68%) +[UE3] [2025-07-19 12:09:04] [ 5] 40.00-41.00 sec 4.60 MBytes 38.6 Mbits/sec 0.128 ms 6931/10263 (68%) +[UE3] [2025-07-19 12:09:05] [ 5] 41.00-42.00 sec 4.57 MBytes 38.3 Mbits/sec 0.092 ms 7533/10840 (69%) +[UE3] [2025-07-19 12:09:06] [ 5] 42.00-43.00 sec 4.63 MBytes 38.8 Mbits/sec 0.130 ms 6984/10335 (68%) +[UE3] [2025-07-19 12:09:07] [ 5] 43.00-44.00 sec 4.66 MBytes 39.0 Mbits/sec 0.139 ms 7483/10854 (69%) +[UE3] [2025-07-19 12:09:08] [ 5] 44.00-45.00 sec 4.85 MBytes 40.7 Mbits/sec 0.113 ms 7045/10558 (67%) +[UE3] [2025-07-19 12:09:09] [ 5] 45.00-46.00 sec 4.66 MBytes 39.1 Mbits/sec 0.119 ms 6894/10269 (67%) +[UE3] [2025-07-19 12:09:10] [ 5] 46.00-47.00 sec 4.91 MBytes 41.2 Mbits/sec 0.130 ms 7304/10863 (67%) +[UE3] [2025-07-19 12:09:11] [ 5] 47.00-48.00 sec 4.61 MBytes 38.7 Mbits/sec 0.137 ms 6490/9830 (66%) +[UE3] [2025-07-19 12:09:12] [ 5] 48.00-49.00 sec 4.41 MBytes 37.0 Mbits/sec 0.116 ms 6481/9677 (67%) +[UE3] [2025-07-19 12:09:13] [ 5] 49.00-50.00 sec 4.62 MBytes 38.8 Mbits/sec 0.115 ms 6847/10194 (67%) +[UE3] [2025-07-19 12:09:14] [ 5] 50.00-51.00 sec 4.61 MBytes 38.7 Mbits/sec 0.109 ms 7732/11069 (70%) +[UE3] [2025-07-19 12:09:15] [ 5] 51.00-52.00 sec 4.56 MBytes 38.2 Mbits/sec 0.077 ms 6819/10121 (67%) +[UE3] [2025-07-19 12:09:16] [ 5] 52.00-53.00 sec 4.68 MBytes 39.2 Mbits/sec 0.127 ms 7037/10424 (68%) +[UE3] [2025-07-19 12:09:17] [ 5] 53.00-54.00 sec 4.07 MBytes 34.1 Mbits/sec 0.100 ms 6279/9223 (68%) +[UE3] [2025-07-19 12:09:18] [ 5] 54.00-55.00 sec 4.62 MBytes 38.7 Mbits/sec 0.151 ms 7093/10437 (68%) +[UE3] [2025-07-19 12:09:19] [ 5] 55.00-56.00 sec 4.79 MBytes 40.2 Mbits/sec 0.101 ms 8044/11516 (70%) +[UE3] [2025-07-19 12:09:20] [ 5] 56.00-57.00 sec 4.67 MBytes 39.2 Mbits/sec 0.123 ms 7049/10430 (68%) +[UE3] [2025-07-19 12:09:21] [ 5] 57.00-58.00 sec 4.87 MBytes 40.8 Mbits/sec 0.081 ms 7067/10592 (67%) +[UE3] [2025-07-19 12:09:22] [ 5] 58.00-59.00 sec 4.36 MBytes 36.5 Mbits/sec 0.120 ms 6419/9574 (67%) +[UE3] [2025-07-19 12:09:23] [ 5] 59.00-60.00 sec 4.66 MBytes 39.1 Mbits/sec 0.095 ms 6894/10271 (67%) +[UE3] [2025-07-19 12:09:24] [ 5] 60.00-61.00 sec 4.61 MBytes 38.6 Mbits/sec 0.106 ms 7655/10990 (70%) +[UE3] [2025-07-19 12:09:25] [ 5] 61.00-62.00 sec 4.56 MBytes 38.2 Mbits/sec 0.103 ms 6962/10263 (68%) +[UE3] [2025-07-19 12:09:26] [ 5] 62.00-63.00 sec 4.68 MBytes 39.2 Mbits/sec 0.093 ms 6845/10231 (67%) +[UE3] [2025-07-19 12:09:27] [ 5] 63.00-64.00 sec 4.37 MBytes 36.7 Mbits/sec 0.119 ms 6430/9596 (67%) +[UE3] [2025-07-19 12:09:28] [ 5] 64.00-65.00 sec 4.66 MBytes 39.1 Mbits/sec 0.097 ms 7082/10460 (68%) +[UE3] [2025-07-19 12:09:29] [ 5] 65.00-66.00 sec 4.32 MBytes 36.2 Mbits/sec 0.128 ms 7598/10723 (71%) +[UE3] [2025-07-19 12:09:30] [ 5] 66.00-67.00 sec 4.90 MBytes 41.1 Mbits/sec 0.142 ms 7358/10905 (67%) +[UE3] [2025-07-19 12:09:31] [ 5] 67.00-68.00 sec 4.38 MBytes 36.8 Mbits/sec 0.132 ms 6690/9864 (68%) +[UE3] [2025-07-19 12:09:32] [ 5] 68.00-69.00 sec 4.38 MBytes 36.7 Mbits/sec 0.097 ms 6427/9598 (67%) +[UE3] [2025-07-19 12:09:33] [ 5] 69.00-70.00 sec 4.63 MBytes 38.8 Mbits/sec 0.100 ms 7295/10646 (69%) +[UE3] [2025-07-19 12:09:34] [ 5] 70.00-71.00 sec 4.85 MBytes 40.6 Mbits/sec 0.099 ms 7912/11421 (69%) +[UE3] [2025-07-19 12:09:35] [ 5] 71.00-72.00 sec 4.69 MBytes 39.3 Mbits/sec 0.103 ms 7279/10672 (68%) +[UE3] [2025-07-19 12:09:36] [ 5] 72.00-73.00 sec 4.85 MBytes 40.6 Mbits/sec 0.087 ms 6981/10490 (67%) +[UE3] [2025-07-19 12:09:37] [ 5] 73.00-74.00 sec 4.55 MBytes 38.2 Mbits/sec 0.106 ms 6576/9872 (67%) +[UE3] [2025-07-19 12:09:38] [ 5] 74.00-75.00 sec 4.91 MBytes 41.2 Mbits/sec 0.099 ms 7303/10859 (67%) +[UE3] [2025-07-19 12:09:39] [ 5] 75.00-76.00 sec 4.58 MBytes 38.4 Mbits/sec 0.105 ms 6694/10011 (67%) +[UE3] [2025-07-19 12:09:40] [ 5] 76.00-77.00 sec 4.68 MBytes 39.3 Mbits/sec 0.102 ms 6784/10175 (67%) +[UE3] [2025-07-19 12:09:41] [ 5] 77.00-78.00 sec 4.61 MBytes 38.7 Mbits/sec 0.092 ms 7015/10353 (68%) +[UE3] [2025-07-19 12:09:42] [ 5] 78.00-79.00 sec 4.56 MBytes 38.3 Mbits/sec 0.126 ms 6797/10101 (67%) +[UE3] [2025-07-19 12:09:43] [ 5] 79.00-80.00 sec 4.61 MBytes 38.7 Mbits/sec 0.076 ms 6933/10270 (68%) +[UE3] [2025-07-19 12:09:44] [ 5] 80.00-81.00 sec 4.67 MBytes 39.2 Mbits/sec 0.131 ms 7007/10387 (67%) +[UE3] [2025-07-19 12:09:45] [ 5] 81.00-82.00 sec 4.93 MBytes 41.4 Mbits/sec 0.121 ms 7347/10919 (67%) +[UE3] [2025-07-19 12:09:46] [ 5] 82.00-83.00 sec 4.61 MBytes 38.6 Mbits/sec 0.119 ms 6807/10142 (67%) +[UE3] [2025-07-19 12:09:47] [ 5] 83.00-84.00 sec 4.66 MBytes 39.1 Mbits/sec 0.135 ms 6993/10368 (67%) +[UE3] [2025-07-19 12:09:48] [ 5] 84.00-85.00 sec 3.80 MBytes 31.9 Mbits/sec 0.128 ms 5571/8323 (67%) +[UE3] [2025-07-19 12:09:49] [ 5] 85.00-86.00 sec 4.92 MBytes 41.3 Mbits/sec 0.137 ms 7326/10892 (67%) +[UE3] [2025-07-19 12:09:50] [ 5] 86.00-87.00 sec 4.60 MBytes 38.6 Mbits/sec 0.092 ms 8551/11880 (72%) +[UE3] [2025-07-19 12:09:51] [ 5] 87.00-88.00 sec 4.59 MBytes 38.5 Mbits/sec 0.108 ms 6579/9903 (66%) +[UE3] [2025-07-19 12:09:52] [ 5] 88.00-89.00 sec 4.65 MBytes 39.0 Mbits/sec 0.127 ms 7100/10468 (68%) +[UE3] [2025-07-19 12:09:53] [ 5] 89.00-90.00 sec 4.61 MBytes 38.6 Mbits/sec 0.078 ms 7056/10391 (68%) +[UE3] [2025-07-19 12:09:54] [ 5] 90.00-91.00 sec 4.63 MBytes 38.9 Mbits/sec 0.127 ms 6785/10141 (67%) +[UE3] [2025-07-19 12:09:55] [ 5] 91.00-92.00 sec 4.34 MBytes 36.4 Mbits/sec 0.115 ms 6546/9691 (68%) +[UE3] [2025-07-19 12:09:56] [ 5] 92.00-93.00 sec 4.91 MBytes 41.2 Mbits/sec 0.084 ms 7599/11158 (68%) +[UE3] [2025-07-19 12:09:57] [ 5] 93.00-94.00 sec 4.51 MBytes 37.8 Mbits/sec 0.091 ms 7273/10537 (69%) +[UE3] [2025-07-19 12:09:58] [ 5] 94.00-95.00 sec 4.67 MBytes 39.1 Mbits/sec 0.103 ms 7008/10387 (67%) +[UE3] [2025-07-19 12:09:59] [ 5] 95.00-96.00 sec 4.66 MBytes 39.1 Mbits/sec 0.137 ms 7032/10404 (68%) +[UE3] [2025-07-19 12:10:00] [ 5] 96.00-97.00 sec 4.54 MBytes 38.1 Mbits/sec 0.125 ms 6552/9841 (67%) +[UE3] [2025-07-19 12:10:01] [ 5] 97.00-98.00 sec 4.67 MBytes 39.2 Mbits/sec 0.145 ms 7485/10867 (69%) +[UE3] [2025-07-19 12:10:02] [ 5] 98.00-99.00 sec 4.64 MBytes 38.9 Mbits/sec 0.106 ms 6855/10213 (67%) +[UE3] [2025-07-19 12:10:05] [ 5] 99.00-100.00 sec 4.65 MBytes 39.0 Mbits/sec 0.096 ms 7197/10564 (68%) +[UE3] [2025-07-19 12:10:06] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.804 ms 0/2714 (0%) +[UE3] [2025-07-19 12:10:07] [ 5] 1.00-2.00 sec 3.58 MBytes 30.1 Mbits/sec 0.548 ms 0/2595 (0%) +[UE3] [2025-07-19 12:10:08] [ 5] 2.00-3.00 sec 3.50 MBytes 29.4 Mbits/sec 0.805 ms 0/2535 (0%) +[UE3] [2025-07-19 12:10:09] [ 5] 3.00-4.00 sec 3.61 MBytes 30.2 Mbits/sec 0.524 ms 0/2611 (0%) +[UE3] [2025-07-19 12:10:10] [ 5] 4.00-5.00 sec 3.62 MBytes 30.4 Mbits/sec 0.502 ms 0/2624 (0%) +[UE3] [2025-07-19 12:10:11] [ 5] 5.00-6.00 sec 3.57 MBytes 29.9 Mbits/sec 0.587 ms 0/2585 (0%) +[UE3] [2025-07-19 12:10:12] [ 5] 6.00-7.00 sec 3.57 MBytes 30.0 Mbits/sec 0.634 ms 0/2586 (0%) +[UE3] [2025-07-19 12:10:13] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.586 ms 0/2586 (0%) +[UE3] [2025-07-19 12:10:14] [ 5] 8.00-9.00 sec 3.59 MBytes 30.2 Mbits/sec 0.552 ms 0/2603 (0%) +[UE3] [2025-07-19 12:10:15] [ 5] 9.00-10.00 sec 3.56 MBytes 29.9 Mbits/sec 0.753 ms 0/2581 (0%) +[UE3] [2025-07-19 12:10:16] [ 5] 10.00-11.00 sec 3.56 MBytes 29.9 Mbits/sec 0.598 ms 0/2580 (0%) +[UE3] [2025-07-19 12:10:17] [ 5] 11.00-12.00 sec 3.60 MBytes 30.2 Mbits/sec 0.434 ms 0/2605 (0%) +[UE3] [2025-07-19 12:10:18] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.484 ms 0/2594 (0%) +[UE3] [2025-07-19 12:10:19] [ 5] 13.00-14.00 sec 3.55 MBytes 29.8 Mbits/sec 0.565 ms 0/2573 (0%) +[UE3] [2025-07-19 12:10:20] [ 5] 14.00-15.00 sec 3.59 MBytes 30.2 Mbits/sec 0.613 ms 0/2603 (0%) +[UE3] [2025-07-19 12:10:21] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.685 ms 0/2587 (0%) +[UE3] [2025-07-19 12:10:22] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.512 ms 0/2586 (0%) +[UE3] [2025-07-19 12:10:23] [ 5] 17.00-18.00 sec 3.52 MBytes 29.5 Mbits/sec 0.992 ms 0/2550 (0%) +[UE3] [2025-07-19 12:10:24] [ 5] 18.00-19.00 sec 3.53 MBytes 29.6 Mbits/sec 0.583 ms 0/2558 (0%) +[UE3] [2025-07-19 12:10:25] [ 5] 19.00-20.00 sec 3.69 MBytes 30.9 Mbits/sec 0.450 ms 0/2670 (0%) +[UE3] [2025-07-19 12:10:26] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.590 ms 0/2586 (0%) +[UE3] [2025-07-19 12:10:27] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.509 ms 0/2594 (0%) +[UE3] [2025-07-19 12:10:28] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.498 ms 0/2590 (0%) +[UE3] [2025-07-19 12:10:29] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.457 ms 0/2591 (0%) +[UE3] [2025-07-19 12:10:30] [ 5] 24.00-25.00 sec 3.56 MBytes 29.8 Mbits/sec 0.649 ms 0/2575 (0%) +[UE3] [2025-07-19 12:10:31] [ 5] 25.00-26.00 sec 3.60 MBytes 30.2 Mbits/sec 0.495 ms 0/2604 (0%) +[UE3] [2025-07-19 12:10:32] [ 5] 26.00-27.00 sec 3.55 MBytes 29.8 Mbits/sec 0.583 ms 0/2571 (0%) +[UE3] [2025-07-19 12:10:33] [ 5] 27.00-28.00 sec 3.60 MBytes 30.2 Mbits/sec 0.506 ms 0/2610 (0%) +[UE3] [2025-07-19 12:10:34] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.525 ms 0/2589 (0%) +[UE3] [2025-07-19 12:10:35] [ 5] 29.00-30.00 sec 3.51 MBytes 29.4 Mbits/sec 0.549 ms 0/2540 (0%) +[UE3] [2025-07-19 12:10:36] [ 5] 30.00-31.00 sec 3.59 MBytes 30.1 Mbits/sec 0.496 ms 0/2598 (0%) +[UE3] [2025-07-19 12:10:37] [ 5] 31.00-32.00 sec 3.62 MBytes 30.4 Mbits/sec 0.519 ms 0/2623 (0%) +[UE3] [2025-07-19 12:10:38] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.469 ms 0/2594 (0%) +[UE3] [2025-07-19 12:10:39] [ 5] 33.00-34.00 sec 3.57 MBytes 30.0 Mbits/sec 0.651 ms 0/2587 (0%) +[UE3] [2025-07-19 12:10:40] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.602 ms 0/2593 (0%) +[UE3] [2025-07-19 12:10:41] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.495 ms 0/2590 (0%) +[UE3] [2025-07-19 12:10:42] [ 5] 36.00-37.00 sec 3.58 MBytes 30.1 Mbits/sec 0.513 ms 0/2596 (0%) +[UE3] [2025-07-19 12:10:43] [ 5] 37.00-38.00 sec 3.57 MBytes 29.9 Mbits/sec 0.515 ms 0/2584 (0%) +[UE3] [2025-07-19 12:10:44] [ 5] 38.00-39.00 sec 3.56 MBytes 29.9 Mbits/sec 0.564 ms 0/2580 (0%) +[UE3] [2025-07-19 12:10:45] [ 5] 39.00-40.00 sec 3.59 MBytes 30.1 Mbits/sec 0.518 ms 0/2600 (0%) +[UE3] [2025-07-19 12:10:46] [ 5] 40.00-41.00 sec 3.51 MBytes 29.5 Mbits/sec 0.626 ms 0/2543 (0%) +[UE3] [2025-07-19 12:10:47] [ 5] 41.00-42.00 sec 3.51 MBytes 29.4 Mbits/sec 0.665 ms 0/2540 (0%) +[UE3] [2025-07-19 12:10:48] [ 5] 42.00-43.00 sec 3.72 MBytes 31.2 Mbits/sec 0.473 ms 0/2692 (0%) +[UE3] [2025-07-19 12:10:49] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.397 ms 0/2590 (0%) +[UE3] [2025-07-19 12:10:50] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.502 ms 0/2589 (0%) +[UE3] [2025-07-19 12:10:51] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.616 ms 0/2586 (0%) +[UE3] [2025-07-19 12:10:52] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.623 ms 0/2587 (0%) +[UE3] [2025-07-19 12:10:53] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.509 ms 0/2593 (0%) +[UE3] [2025-07-19 12:10:54] [ 5] 48.00-49.00 sec 3.56 MBytes 29.9 Mbits/sec 0.618 ms 0/2581 (0%) +[UE3] [2025-07-19 12:10:55] [ 5] 49.00-50.00 sec 3.51 MBytes 29.4 Mbits/sec 0.623 ms 0/2539 (0%) +[UE3] [2025-07-19 12:10:56] [ 5] 50.00-51.00 sec 3.66 MBytes 30.7 Mbits/sec 0.573 ms 0/2650 (0%) +[UE3] [2025-07-19 12:10:57] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.551 ms 0/2590 (0%) +[UE3] [2025-07-19 12:10:58] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.544 ms 0/2590 (0%) +[UE3] [2025-07-19 12:10:59] [ 5] 53.00-54.00 sec 3.56 MBytes 29.9 Mbits/sec 0.591 ms 0/2580 (0%) +[UE3] [2025-07-19 12:11:00] [ 5] 54.00-55.00 sec 3.33 MBytes 28.0 Mbits/sec 0.838 ms 0/2413 (0%) +[UE3] [2025-07-19 12:11:01] [ 5] 55.00-56.00 sec 3.69 MBytes 30.9 Mbits/sec 0.869 ms 0/2671 (0%) +[UE3] [2025-07-19 12:11:02] [ 5] 56.00-57.00 sec 3.46 MBytes 29.1 Mbits/sec 0.558 ms 0/2509 (0%) +[UE3] [2025-07-19 12:11:03] [ 5] 57.00-58.00 sec 3.79 MBytes 31.8 Mbits/sec 0.629 ms 0/2746 (0%) +[UE3] [2025-07-19 12:11:04] [ 5] 58.00-59.00 sec 3.62 MBytes 30.3 Mbits/sec 0.498 ms 0/2620 (0%) +[UE3] [2025-07-19 12:11:05] [ 5] 59.00-60.00 sec 3.37 MBytes 28.2 Mbits/sec 0.659 ms 0/2438 (0%) +[UE3] [2025-07-19 12:11:06] [ 5] 60.00-61.00 sec 3.75 MBytes 31.5 Mbits/sec 0.713 ms 0/2719 (0%) +[UE3] [2025-07-19 12:11:07] [ 5] 61.00-62.00 sec 3.59 MBytes 30.1 Mbits/sec 0.624 ms 0/2598 (0%) +[UE3] [2025-07-19 12:11:08] [ 5] 62.00-63.00 sec 3.58 MBytes 30.1 Mbits/sec 0.582 ms 0/2596 (0%) +[UE3] [2025-07-19 12:11:09] [ 5] 63.00-64.00 sec 3.59 MBytes 30.1 Mbits/sec 0.563 ms 0/2597 (0%) +[UE3] [2025-07-19 12:11:10] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.526 ms 0/2586 (0%) +[UE3] [2025-07-19 12:11:11] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.481 ms 0/2593 (0%) +[UE3] [2025-07-19 12:11:12] [ 5] 66.00-67.00 sec 3.43 MBytes 28.8 Mbits/sec 0.603 ms 0/2486 (0%) +[UE3] [2025-07-19 12:11:13] [ 5] 67.00-68.00 sec 3.48 MBytes 29.2 Mbits/sec 0.548 ms 0/2519 (0%) +[UE3] [2025-07-19 12:11:14] [ 5] 68.00-69.00 sec 3.81 MBytes 32.0 Mbits/sec 0.706 ms 0/2759 (0%) +[UE3] [2025-07-19 12:11:15] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.616 ms 0/2591 (0%) +[UE3] [2025-07-19 12:11:16] [ 5] 70.00-71.00 sec 3.58 MBytes 30.1 Mbits/sec 0.480 ms 0/2595 (0%) +[UE3] [2025-07-19 12:11:17] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.472 ms 0/2592 (0%) +[UE3] [2025-07-19 12:11:18] [ 5] 72.00-73.00 sec 3.57 MBytes 29.9 Mbits/sec 0.584 ms 0/2584 (0%) +[UE3] [2025-07-19 12:11:19] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.550 ms 0/2593 (0%) +[UE3] [2025-07-19 12:11:20] [ 5] 74.00-75.00 sec 3.56 MBytes 29.9 Mbits/sec 0.633 ms 0/2581 (0%) +[UE3] [2025-07-19 12:11:21] [ 5] 75.00-76.00 sec 3.59 MBytes 30.1 Mbits/sec 0.609 ms 0/2599 (0%) +[UE3] [2025-07-19 12:11:22] [ 5] 76.00-77.00 sec 3.56 MBytes 29.8 Mbits/sec 0.596 ms 0/2575 (0%) +[UE3] [2025-07-19 12:11:23] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.618 ms 0/2592 (0%) +[UE3] [2025-07-19 12:11:24] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.602 ms 0/2593 (0%) +[UE3] [2025-07-19 12:11:25] [ 5] 79.00-80.00 sec 3.59 MBytes 30.1 Mbits/sec 0.546 ms 0/2599 (0%) +[UE3] [2025-07-19 12:11:26] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.434 ms 0/2592 (0%) +[UE3] [2025-07-19 12:11:27] [ 5] 81.00-82.00 sec 3.57 MBytes 29.9 Mbits/sec 0.577 ms 0/2584 (0%) +[UE3] [2025-07-19 12:11:28] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.615 ms 0/2587 (0%) +[UE3] [2025-07-19 12:11:29] [ 5] 83.00-84.00 sec 3.58 MBytes 30.1 Mbits/sec 0.529 ms 0/2596 (0%) +[UE3] [2025-07-19 12:11:30] [ 5] 84.00-85.00 sec 3.51 MBytes 29.4 Mbits/sec 0.637 ms 0/2541 (0%) +[UE3] [2025-07-19 12:11:31] [ 5] 85.00-86.00 sec 3.61 MBytes 30.3 Mbits/sec 0.638 ms 0/2616 (0%) +[UE3] [2025-07-19 12:11:32] [ 5] 86.00-87.00 sec 3.60 MBytes 30.2 Mbits/sec 0.460 ms 0/2609 (0%) +[UE3] [2025-07-19 12:11:33] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.581 ms 0/2588 (0%) +[UE3] [2025-07-19 12:11:34] [ 5] 88.00-89.00 sec 3.58 MBytes 30.1 Mbits/sec 0.489 ms 0/2595 (0%) +[UE3] [2025-07-19 12:11:35] [ 5] 89.00-90.00 sec 3.57 MBytes 30.0 Mbits/sec 0.590 ms 0/2586 (0%) +[UE3] [2025-07-19 12:11:36] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.453 ms 0/2594 (0%) +[UE3] [2025-07-19 12:11:37] [ 5] 91.00-92.00 sec 3.56 MBytes 29.8 Mbits/sec 0.746 ms 0/2575 (0%) +[UE3] [2025-07-19 12:11:38] [ 5] 92.00-93.00 sec 3.59 MBytes 30.1 Mbits/sec 0.712 ms 0/2599 (0%) +[UE3] [2025-07-19 12:11:39] [ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 0.524 ms 0/2587 (0%) +[UE3] [2025-07-19 12:11:40] [ 5] 94.00-95.00 sec 3.57 MBytes 29.9 Mbits/sec 0.766 ms 0/2582 (0%) +[UE3] [2025-07-19 12:11:41] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.490 ms 0/2594 (0%) +[UE3] [2025-07-19 12:11:42] [ 5] 96.00-97.00 sec 3.59 MBytes 30.1 Mbits/sec 0.647 ms 0/2600 (0%) +[UE3] [2025-07-19 12:11:43] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.500 ms 0/2588 (0%) +[UE3] [2025-07-19 12:11:44] [ 5] 98.00-99.00 sec 3.40 MBytes 28.5 Mbits/sec 0.916 ms 0/2464 (0%) +[UE3] [2025-07-19 12:11:45] [ 5] 99.00-100.00 sec 3.67 MBytes 30.8 Mbits/sec 0.586 ms 0/2657 (0%) +[UE3] [2025-07-19 12:11:47] [ 5] 0.00-1.00 sec 4.64 MBytes 38.9 Mbits/sec 0.259 ms 0/3359 (0%) +[UE3] [2025-07-19 12:11:48] [ 5] 1.00-2.00 sec 4.60 MBytes 38.6 Mbits/sec 0.287 ms 0/3332 (0%) +[UE3] [2025-07-19 12:11:49] [ 5] 2.00-3.00 sec 4.33 MBytes 36.3 Mbits/sec 0.107 ms 2446/5582 (44%) +[UE3] [2025-07-19 12:11:50] [ 5] 3.00-4.00 sec 4.63 MBytes 38.8 Mbits/sec 0.118 ms 6923/10275 (67%) +[UE3] [2025-07-19 12:11:51] [ 5] 4.00-5.00 sec 4.90 MBytes 41.1 Mbits/sec 0.140 ms 7334/10882 (67%) +[UE3] [2025-07-19 12:11:52] [ 5] 5.00-6.00 sec 4.62 MBytes 38.7 Mbits/sec 0.128 ms 6834/10176 (67%) +[UE3] [2025-07-19 12:11:53] [ 5] 6.00-7.00 sec 4.59 MBytes 38.5 Mbits/sec 0.126 ms 6756/10079 (67%) +[UE3] [2025-07-19 12:11:54] [ 5] 7.00-8.00 sec 4.69 MBytes 39.3 Mbits/sec 0.137 ms 7166/10559 (68%) +[UE3] [2025-07-19 12:11:55] [ 5] 8.00-9.00 sec 4.62 MBytes 38.7 Mbits/sec 0.128 ms 6908/10253 (67%) +[UE3] [2025-07-19 12:11:56] [ 5] 9.00-10.00 sec 4.86 MBytes 40.7 Mbits/sec 0.123 ms 7211/10727 (67%) +[UE3] [2025-07-19 12:11:57] [ 5] 10.00-11.00 sec 4.67 MBytes 39.2 Mbits/sec 0.154 ms 6766/10149 (67%) +[UE3] [2025-07-19 12:11:58] [ 5] 11.00-12.00 sec 4.39 MBytes 36.8 Mbits/sec 0.097 ms 6558/9734 (67%) +[UE3] [2025-07-19 12:11:59] [ 5] 12.00-13.00 sec 4.62 MBytes 38.8 Mbits/sec 0.087 ms 6969/10317 (68%) +[UE3] [2025-07-19 12:12:00] [ 5] 13.00-14.00 sec 4.60 MBytes 38.6 Mbits/sec 0.125 ms 6938/10269 (68%) +[UE3] [2025-07-19 12:12:01] [ 5] 14.00-15.00 sec 4.65 MBytes 39.0 Mbits/sec 0.138 ms 7108/10472 (68%) +[UE3] [2025-07-19 12:12:02] [ 5] 15.00-16.00 sec 4.87 MBytes 40.8 Mbits/sec 0.143 ms 7569/11093 (68%) +[UE3] [2025-07-19 12:12:03] [ 5] 16.00-17.00 sec 4.63 MBytes 38.8 Mbits/sec 0.131 ms 7032/10385 (68%) +[UE3] [2025-07-19 12:12:04] [ 5] 17.00-18.00 sec 4.70 MBytes 39.4 Mbits/sec 0.133 ms 6881/10283 (67%) +[UE3] [2025-07-19 12:12:05] [ 5] 18.00-19.00 sec 4.05 MBytes 33.9 Mbits/sec 0.110 ms 5985/8915 (67%) +[UE3] [2025-07-19 12:12:06] [ 5] 19.00-20.00 sec 4.77 MBytes 40.0 Mbits/sec 0.111 ms 6976/10428 (67%) +[UE3] [2025-07-19 12:12:07] [ 5] 20.00-21.00 sec 4.10 MBytes 34.4 Mbits/sec 0.097 ms 7236/10207 (71%) +[UE3] [2025-07-19 12:12:08] [ 5] 21.00-22.00 sec 4.91 MBytes 41.2 Mbits/sec 0.130 ms 7462/11017 (68%) +[UE3] [2025-07-19 12:12:09] [ 5] 22.00-23.00 sec 4.65 MBytes 39.0 Mbits/sec 0.082 ms 7914/11281 (70%) +[UE3] [2025-07-19 12:12:10] [ 5] 23.00-24.00 sec 4.57 MBytes 38.3 Mbits/sec 0.104 ms 6798/10108 (67%) +[UE3] [2025-07-19 12:12:11] [ 5] 24.00-25.00 sec 4.65 MBytes 39.0 Mbits/sec 0.132 ms 6903/10268 (67%) +[UE3] [2025-07-19 12:12:12] [ 5] 25.00-26.00 sec 4.61 MBytes 38.6 Mbits/sec 0.116 ms 6956/10291 (68%) +[UE3] [2025-07-19 12:12:13] [ 5] 26.00-27.00 sec 4.62 MBytes 38.7 Mbits/sec 0.115 ms 7036/10378 (68%) +[UE3] [2025-07-19 12:12:14] [ 5] 27.00-28.00 sec 4.63 MBytes 38.9 Mbits/sec 0.134 ms 6895/10251 (67%) +[UE3] [2025-07-19 12:12:15] [ 5] 28.00-29.00 sec 4.37 MBytes 36.6 Mbits/sec 0.098 ms 6939/10101 (69%) +[UE3] [2025-07-19 12:12:16] [ 5] 29.00-30.00 sec 4.61 MBytes 38.7 Mbits/sec 0.094 ms 6894/10235 (67%) +[UE3] [2025-07-19 12:12:17] [ 5] 30.00-31.00 sec 4.70 MBytes 39.4 Mbits/sec 0.099 ms 7123/10524 (68%) +[UE3] [2025-07-19 12:12:18] [ 5] 31.00-32.00 sec 4.89 MBytes 41.0 Mbits/sec 0.111 ms 7453/10991 (68%) +[UE3] [2025-07-19 12:12:19] [ 5] 32.00-33.00 sec 4.60 MBytes 38.6 Mbits/sec 0.087 ms 7044/10376 (68%) +[UE3] [2025-07-19 12:12:20] [ 5] 33.00-34.00 sec 4.59 MBytes 38.5 Mbits/sec 0.141 ms 6534/9857 (66%) +[UE3] [2025-07-19 12:12:21] [ 5] 34.00-35.00 sec 4.67 MBytes 39.2 Mbits/sec 0.125 ms 7028/10408 (68%) +[UE3] [2025-07-19 12:12:22] [ 5] 35.00-36.00 sec 4.65 MBytes 39.0 Mbits/sec 0.094 ms 7160/10528 (68%) +[UE3] [2025-07-19 12:12:23] [ 5] 36.00-37.00 sec 4.54 MBytes 38.1 Mbits/sec 0.096 ms 6602/9887 (67%) +[UE3] [2025-07-19 12:12:24] [ 5] 37.00-38.00 sec 4.67 MBytes 39.2 Mbits/sec 1.785 ms 7133/10515 (68%) +[UE3] [2025-07-19 12:12:25] [ 5] 38.00-39.00 sec 4.89 MBytes 41.0 Mbits/sec 0.150 ms 7447/10986 (68%) +[UE3] [2025-07-19 12:12:26] [ 5] 39.00-40.00 sec 4.07 MBytes 34.1 Mbits/sec 0.114 ms 6104/9048 (67%) +[UE3] [2025-07-19 12:12:27] [ 5] 40.00-41.00 sec 4.55 MBytes 38.2 Mbits/sec 0.095 ms 6675/9969 (67%) +[UE3] [2025-07-19 12:12:28] [ 5] 41.00-42.00 sec 4.43 MBytes 37.1 Mbits/sec 0.090 ms 7659/10865 (70%) +[UE3] [2025-07-19 12:12:29] [ 5] 42.00-43.00 sec 4.57 MBytes 38.4 Mbits/sec 0.103 ms 7051/10362 (68%) +[UE3] [2025-07-19 12:12:30] [ 5] 43.00-44.00 sec 4.69 MBytes 39.3 Mbits/sec 0.107 ms 7909/11302 (70%) +[UE3] [2025-07-19 12:12:31] [ 5] 44.00-45.00 sec 4.52 MBytes 37.9 Mbits/sec 0.099 ms 6607/9878 (67%) +[UE3] [2025-07-19 12:12:32] [ 5] 45.00-46.00 sec 4.65 MBytes 39.0 Mbits/sec 0.077 ms 7160/10526 (68%) +[UE3] [2025-07-19 12:12:33] [ 5] 46.00-47.00 sec 4.68 MBytes 39.2 Mbits/sec 0.120 ms 7033/10420 (67%) +[UE3] [2025-07-19 12:12:34] [ 5] 47.00-48.00 sec 4.68 MBytes 39.2 Mbits/sec 0.122 ms 7204/10592 (68%) +[UE3] [2025-07-19 12:12:35] [ 5] 48.00-49.00 sec 4.85 MBytes 40.6 Mbits/sec 0.113 ms 7341/10850 (68%) +[UE3] [2025-07-19 12:12:36] [ 5] 49.00-50.00 sec 4.08 MBytes 34.2 Mbits/sec 0.141 ms 6077/9030 (67%) +[UE3] [2025-07-19 12:12:37] [ 5] 50.00-51.00 sec 4.89 MBytes 41.0 Mbits/sec 0.093 ms 7075/10617 (67%) +[UE3] [2025-07-19 12:12:38] [ 5] 51.00-52.00 sec 4.62 MBytes 38.8 Mbits/sec 0.099 ms 6948/10294 (67%) +[UE3] [2025-07-19 12:12:39] [ 5] 52.00-53.00 sec 4.07 MBytes 34.2 Mbits/sec 0.081 ms 6820/9770 (70%) +[UE3] [2025-07-19 12:12:40] [ 5] 53.00-54.00 sec 4.70 MBytes 39.5 Mbits/sec 0.125 ms 6948/10355 (67%) +[UE3] [2025-07-19 12:12:41] [ 5] 54.00-55.00 sec 4.58 MBytes 38.4 Mbits/sec 0.126 ms 8232/11549 (71%) +[UE3] [2025-07-19 12:12:42] [ 5] 55.00-56.00 sec 4.83 MBytes 40.5 Mbits/sec 0.096 ms 7115/10614 (67%) +[UE3] [2025-07-19 12:12:43] [ 5] 56.00-57.00 sec 4.36 MBytes 36.6 Mbits/sec 0.124 ms 6471/9627 (67%) +[UE3] [2025-07-19 12:12:44] [ 5] 57.00-58.00 sec 4.90 MBytes 41.1 Mbits/sec 0.114 ms 7484/11035 (68%) +[UE3] [2025-07-19 12:12:45] [ 5] 58.00-59.00 sec 4.59 MBytes 38.5 Mbits/sec 0.085 ms 6956/10278 (68%) +[UE3] [2025-07-19 12:12:46] [ 5] 59.00-60.00 sec 4.65 MBytes 39.0 Mbits/sec 0.133 ms 6768/10135 (67%) +[UE3] [2025-07-19 12:12:47] [ 5] 60.00-61.00 sec 4.62 MBytes 38.8 Mbits/sec 0.105 ms 7029/10378 (68%) +[UE3] [2025-07-19 12:12:48] [ 5] 61.00-62.00 sec 4.63 MBytes 38.8 Mbits/sec 0.089 ms 7108/10460 (68%) +[UE3] [2025-07-19 12:12:49] [ 5] 62.00-63.00 sec 4.63 MBytes 38.9 Mbits/sec 0.094 ms 6693/10048 (67%) +[UE3] [2025-07-19 12:12:50] [ 5] 63.00-64.00 sec 4.54 MBytes 38.1 Mbits/sec 0.100 ms 7086/10372 (68%) +[UE3] [2025-07-19 12:12:51] [ 5] 64.00-65.00 sec 4.65 MBytes 39.0 Mbits/sec 0.137 ms 7120/10487 (68%) +[UE3] [2025-07-19 12:12:52] [ 5] 65.00-66.00 sec 4.93 MBytes 41.3 Mbits/sec 0.130 ms 7454/11021 (68%) +[UE3] [2025-07-19 12:12:53] [ 5] 66.00-67.00 sec 4.67 MBytes 39.2 Mbits/sec 0.088 ms 6831/10211 (67%) +[UE3] [2025-07-19 12:12:54] [ 5] 67.00-68.00 sec 4.66 MBytes 39.1 Mbits/sec 0.133 ms 6907/10280 (67%) +[UE3] [2025-07-19 12:12:55] [ 5] 68.00-69.00 sec 4.53 MBytes 38.0 Mbits/sec 0.136 ms 6621/9901 (67%) +[UE3] [2025-07-19 12:12:56] [ 5] 69.00-70.00 sec 4.65 MBytes 39.0 Mbits/sec 0.083 ms 6924/10290 (67%) +[UE3] [2025-07-19 12:12:57] [ 5] 70.00-71.00 sec 4.91 MBytes 41.2 Mbits/sec 0.144 ms 7515/11072 (68%) +[UE3] [2025-07-19 12:12:58] [ 5] 71.00-72.00 sec 4.63 MBytes 38.8 Mbits/sec 0.094 ms 6814/10165 (67%) +[UE3] [2025-07-19 12:12:59] [ 5] 72.00-73.00 sec 4.60 MBytes 38.6 Mbits/sec 0.107 ms 6787/10116 (67%) +[UE3] [2025-07-19 12:13:00] [ 5] 73.00-74.00 sec 4.42 MBytes 37.0 Mbits/sec 0.117 ms 6689/9887 (68%) +[UE3] [2025-07-19 12:13:01] [ 5] 74.00-75.00 sec 4.61 MBytes 38.7 Mbits/sec 0.093 ms 7077/10416 (68%) +[UE3] [2025-07-19 12:13:02] [ 5] 75.00-76.00 sec 4.28 MBytes 35.9 Mbits/sec 0.093 ms 6760/9857 (69%) +[UE3] [2025-07-19 12:13:03] [ 5] 76.00-77.00 sec 4.67 MBytes 39.2 Mbits/sec 0.100 ms 6907/10288 (67%) +[UE3] [2025-07-19 12:13:04] [ 5] 77.00-78.00 sec 4.30 MBytes 36.0 Mbits/sec 0.113 ms 7717/10829 (71%) +[UE3] [2025-07-19 12:13:05] [ 5] 78.00-79.00 sec 4.61 MBytes 38.7 Mbits/sec 0.101 ms 6721/10058 (67%) +[UE3] [2025-07-19 12:13:06] [ 5] 79.00-80.00 sec 4.60 MBytes 38.6 Mbits/sec 0.125 ms 7737/11068 (70%) +[UE3] [2025-07-19 12:13:07] [ 5] 80.00-81.00 sec 4.89 MBytes 41.0 Mbits/sec 0.117 ms 7120/10663 (67%) +[UE3] [2025-07-19 12:13:08] [ 5] 81.00-82.00 sec 4.66 MBytes 39.1 Mbits/sec 0.122 ms 7038/10410 (68%) +[UE3] [2025-07-19 12:13:09] [ 5] 82.00-83.00 sec 4.38 MBytes 36.7 Mbits/sec 0.130 ms 6469/9641 (67%) +[UE3] [2025-07-19 12:13:10] [ 5] 83.00-84.00 sec 4.61 MBytes 38.6 Mbits/sec 0.116 ms 6703/10039 (67%) +[UE3] [2025-07-19 12:13:11] [ 5] 84.00-85.00 sec 4.57 MBytes 38.3 Mbits/sec 0.091 ms 7669/10977 (70%) +[UE3] [2025-07-19 12:13:12] [ 5] 85.00-86.00 sec 4.68 MBytes 39.3 Mbits/sec 0.111 ms 6970/10359 (67%) +[UE3] [2025-07-19 12:13:13] [ 5] 86.00-87.00 sec 4.60 MBytes 38.6 Mbits/sec 0.094 ms 7081/10410 (68%) +[UE3] [2025-07-19 12:13:14] [ 5] 87.00-88.00 sec 4.97 MBytes 41.7 Mbits/sec 0.135 ms 7612/11214 (68%) +[UE3] [2025-07-19 12:13:15] [ 5] 88.00-89.00 sec 4.61 MBytes 38.6 Mbits/sec 0.103 ms 6790/10126 (67%) +[UE3] [2025-07-19 12:13:16] [ 5] 89.00-90.00 sec 4.60 MBytes 38.6 Mbits/sec 0.089 ms 6641/9972 (67%) +[UE3] [2025-07-19 12:13:17] [ 5] 90.00-91.00 sec 4.60 MBytes 38.6 Mbits/sec 0.111 ms 6742/10074 (67%) +[UE3] [2025-07-19 12:13:18] [ 5] 91.00-92.00 sec 4.67 MBytes 39.2 Mbits/sec 0.107 ms 7071/10451 (68%) +[UE3] [2025-07-19 12:13:19] [ 5] 92.00-93.00 sec 4.36 MBytes 36.5 Mbits/sec 0.097 ms 6583/9737 (68%) +[UE3] [2025-07-19 12:13:20] [ 5] 93.00-94.00 sec 4.61 MBytes 38.6 Mbits/sec 0.121 ms 6625/9960 (67%) +[UE3] [2025-07-19 12:13:21] [ 5] 94.00-95.00 sec 4.61 MBytes 38.6 Mbits/sec 0.120 ms 7098/10434 (68%) +[UE3] [2025-07-19 12:13:22] [ 5] 95.00-96.00 sec 4.67 MBytes 39.2 Mbits/sec 0.101 ms 7800/11183 (70%) +[UE3] [2025-07-19 12:13:23] [ 5] 96.00-97.00 sec 4.75 MBytes 39.8 Mbits/sec 0.081 ms 7274/10713 (68%) +[UE3] [2025-07-19 12:13:24] [ 5] 97.00-98.00 sec 4.33 MBytes 36.3 Mbits/sec 3.063 ms 6493/9629 (67%) +[UE3] [2025-07-19 12:13:25] [ 5] 98.00-99.00 sec 4.74 MBytes 39.8 Mbits/sec 0.089 ms 7180/10615 (68%) +[UE3] [2025-07-19 12:13:28] [ 5] 99.00-100.00 sec 4.86 MBytes 40.8 Mbits/sec 0.132 ms 7424/10947 (68%) +[UE3] [2025-07-19 12:13:30] [ 5] 0.00-1.00 sec 3.65 MBytes 30.6 Mbits/sec 0.579 ms 0/2644 (0%) +[UE3] [2025-07-19 12:13:31] [ 5] 1.00-2.00 sec 3.65 MBytes 30.6 Mbits/sec 0.486 ms 0/2644 (0%) +[UE3] [2025-07-19 12:13:32] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.546 ms 0/2593 (0%) +[UE3] [2025-07-19 12:13:33] [ 5] 3.00-4.00 sec 3.57 MBytes 29.9 Mbits/sec 0.576 ms 0/2585 (0%) +[UE3] [2025-07-19 12:13:34] [ 5] 4.00-5.00 sec 3.56 MBytes 29.8 Mbits/sec 0.766 ms 0/2576 (0%) +[UE3] [2025-07-19 12:13:35] [ 5] 5.00-6.00 sec 3.59 MBytes 30.1 Mbits/sec 0.590 ms 0/2601 (0%) +[UE3] [2025-07-19 12:13:36] [ 5] 6.00-7.00 sec 3.56 MBytes 29.8 Mbits/sec 0.590 ms 0/2576 (0%) +[UE3] [2025-07-19 12:13:37] [ 5] 7.00-8.00 sec 3.59 MBytes 30.1 Mbits/sec 0.627 ms 0/2597 (0%) +[UE3] [2025-07-19 12:13:38] [ 5] 8.00-9.00 sec 3.59 MBytes 30.1 Mbits/sec 0.513 ms 0/2598 (0%) +[UE3] [2025-07-19 12:13:39] [ 5] 9.00-10.00 sec 3.36 MBytes 28.2 Mbits/sec 0.587 ms 0/2436 (0%) +[UE3] [2025-07-19 12:13:40] [ 5] 10.00-11.00 sec 3.73 MBytes 31.3 Mbits/sec 0.703 ms 0/2698 (0%) +[UE3] [2025-07-19 12:13:41] [ 5] 11.00-12.00 sec 3.61 MBytes 30.3 Mbits/sec 0.539 ms 0/2617 (0%) +[UE3] [2025-07-19 12:13:42] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.566 ms 0/2593 (0%) +[UE3] [2025-07-19 12:13:43] [ 5] 13.00-14.00 sec 3.57 MBytes 29.9 Mbits/sec 0.591 ms 0/2582 (0%) +[UE3] [2025-07-19 12:13:44] [ 5] 14.00-15.00 sec 3.60 MBytes 30.2 Mbits/sec 0.603 ms 0/2609 (0%) +[UE3] [2025-07-19 12:13:45] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.547 ms 0/2594 (0%) +[UE3] [2025-07-19 12:13:46] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.575 ms 0/2592 (0%) +[UE3] [2025-07-19 12:13:47] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.456 ms 0/2591 (0%) +[UE3] [2025-07-19 12:13:48] [ 5] 18.00-19.00 sec 3.32 MBytes 27.8 Mbits/sec 0.465 ms 0/2402 (0%) +[UE3] [2025-07-19 12:13:49] [ 5] 19.00-20.00 sec 3.79 MBytes 31.8 Mbits/sec 0.703 ms 0/2742 (0%) +[UE3] [2025-07-19 12:13:50] [ 5] 20.00-21.00 sec 3.62 MBytes 30.3 Mbits/sec 0.626 ms 0/2620 (0%) +[UE3] [2025-07-19 12:13:51] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.600 ms 0/2592 (0%) +[UE3] [2025-07-19 12:13:52] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.570 ms 0/2588 (0%) +[UE3] [2025-07-19 12:13:53] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.445 ms 0/2592 (0%) +[UE3] [2025-07-19 12:13:54] [ 5] 24.00-25.00 sec 3.58 MBytes 30.1 Mbits/sec 0.478 ms 0/2595 (0%) +[UE3] [2025-07-19 12:13:55] [ 5] 25.00-26.00 sec 3.56 MBytes 29.8 Mbits/sec 0.543 ms 0/2578 (0%) +[UE3] [2025-07-19 12:13:56] [ 5] 26.00-27.00 sec 3.58 MBytes 30.1 Mbits/sec 0.541 ms 0/2593 (0%) +[UE3] [2025-07-19 12:13:57] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.680 ms 0/2589 (0%) +[UE3] [2025-07-19 12:13:58] [ 5] 28.00-29.00 sec 3.58 MBytes 30.1 Mbits/sec 0.600 ms 0/2595 (0%) +[UE3] [2025-07-19 12:13:59] [ 5] 29.00-30.00 sec 3.41 MBytes 28.6 Mbits/sec 0.581 ms 0/2466 (0%) +[UE3] [2025-07-19 12:14:00] [ 5] 30.00-31.00 sec 3.75 MBytes 31.4 Mbits/sec 0.465 ms 0/2714 (0%) +[UE3] [2025-07-19 12:14:01] [ 5] 31.00-32.00 sec 3.54 MBytes 29.7 Mbits/sec 0.553 ms 0/2562 (0%) +[UE3] [2025-07-19 12:14:02] [ 5] 32.00-33.00 sec 3.61 MBytes 30.3 Mbits/sec 0.516 ms 0/2617 (0%) +[UE3] [2025-07-19 12:14:03] [ 5] 33.00-34.00 sec 3.56 MBytes 29.9 Mbits/sec 0.644 ms 0/2579 (0%) +[UE3] [2025-07-19 12:14:04] [ 5] 34.00-35.00 sec 3.55 MBytes 29.8 Mbits/sec 0.692 ms 0/2570 (0%) +[UE3] [2025-07-19 12:14:05] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.573 ms 0/2587 (0%) +[UE3] [2025-07-19 12:14:06] [ 5] 36.00-37.00 sec 3.61 MBytes 30.3 Mbits/sec 0.663 ms 0/2615 (0%) +[UE3] [2025-07-19 12:14:07] [ 5] 37.00-38.00 sec 3.59 MBytes 30.1 Mbits/sec 0.519 ms 0/2599 (0%) +[UE3] [2025-07-19 12:14:08] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.611 ms 0/2586 (0%) +[UE3] [2025-07-19 12:14:09] [ 5] 39.00-40.00 sec 3.08 MBytes 25.8 Mbits/sec 0.653 ms 0/2230 (0%) +[UE3] [2025-07-19 12:14:10] [ 5] 40.00-41.00 sec 3.60 MBytes 30.2 Mbits/sec 0.586 ms 0/2605 (0%) +[UE3] [2025-07-19 12:14:11] [ 5] 41.00-42.00 sec 3.81 MBytes 32.0 Mbits/sec 0.643 ms 0/2760 (0%) +[UE3] [2025-07-19 12:14:12] [ 5] 42.00-43.00 sec 3.56 MBytes 29.8 Mbits/sec 0.613 ms 0/2575 (0%) +[UE3] [2025-07-19 12:14:13] [ 5] 43.00-44.00 sec 3.80 MBytes 31.9 Mbits/sec 0.620 ms 0/2750 (0%) +[UE3] [2025-07-19 12:14:14] [ 5] 44.00-45.00 sec 3.61 MBytes 30.3 Mbits/sec 0.441 ms 0/2617 (0%) +[UE3] [2025-07-19 12:14:15] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.520 ms 0/2592 (0%) +[UE3] [2025-07-19 12:14:16] [ 5] 46.00-47.00 sec 3.56 MBytes 29.9 Mbits/sec 0.615 ms 0/2581 (0%) +[UE3] [2025-07-19 12:14:17] [ 5] 47.00-48.00 sec 3.59 MBytes 30.1 Mbits/sec 0.574 ms 0/2597 (0%) +[UE3] [2025-07-19 12:14:18] [ 5] 48.00-49.00 sec 3.57 MBytes 29.9 Mbits/sec 0.595 ms 0/2585 (0%) +[UE3] [2025-07-19 12:14:19] [ 5] 49.00-50.00 sec 3.59 MBytes 30.1 Mbits/sec 0.613 ms 0/2600 (0%) +[UE3] [2025-07-19 12:14:20] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.604 ms 0/2589 (0%) +[UE3] [2025-07-19 12:14:21] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.490 ms 0/2592 (0%) +[UE3] [2025-07-19 12:14:22] [ 5] 52.00-53.00 sec 3.37 MBytes 28.3 Mbits/sec 0.618 ms 0/2442 (0%) +[UE3] [2025-07-19 12:14:23] [ 5] 53.00-54.00 sec 3.76 MBytes 31.5 Mbits/sec 0.594 ms 0/2721 (0%) +[UE3] [2025-07-19 12:14:24] [ 5] 54.00-55.00 sec 3.58 MBytes 30.1 Mbits/sec 0.623 ms 0/2595 (0%) +[UE3] [2025-07-19 12:14:25] [ 5] 55.00-56.00 sec 3.56 MBytes 29.9 Mbits/sec 0.656 ms 0/2580 (0%) +[UE3] [2025-07-19 12:14:26] [ 5] 56.00-57.00 sec 3.59 MBytes 30.1 Mbits/sec 0.623 ms 0/2599 (0%) +[UE3] [2025-07-19 12:14:27] [ 5] 57.00-58.00 sec 3.57 MBytes 30.0 Mbits/sec 0.523 ms 0/2586 (0%) +[UE3] [2025-07-19 12:14:28] [ 5] 58.00-59.00 sec 3.59 MBytes 30.1 Mbits/sec 0.549 ms 0/2601 (0%) +[UE3] [2025-07-19 12:14:29] [ 5] 59.00-60.00 sec 3.38 MBytes 28.3 Mbits/sec 0.445 ms 0/2445 (0%) +[UE3] [2025-07-19 12:14:30] [ 5] 60.00-61.00 sec 3.49 MBytes 29.2 Mbits/sec 0.597 ms 0/2525 (0%) +[UE3] [2025-07-19 12:14:31] [ 5] 61.00-62.00 sec 3.63 MBytes 30.5 Mbits/sec 0.688 ms 0/2631 (0%) +[UE3] [2025-07-19 12:14:32] [ 5] 62.00-63.00 sec 3.64 MBytes 30.5 Mbits/sec 0.536 ms 0/2636 (0%) +[UE3] [2025-07-19 12:14:33] [ 5] 63.00-64.00 sec 3.75 MBytes 31.4 Mbits/sec 0.511 ms 0/2714 (0%) +[UE3] [2025-07-19 12:14:34] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.447 ms 0/2592 (0%) +[UE3] [2025-07-19 12:14:35] [ 5] 65.00-66.00 sec 3.54 MBytes 29.7 Mbits/sec 0.539 ms 0/2561 (0%) +[UE3] [2025-07-19 12:14:36] [ 5] 66.00-67.00 sec 3.58 MBytes 30.1 Mbits/sec 0.567 ms 0/2595 (0%) +[UE3] [2025-07-19 12:14:37] [ 5] 67.00-68.00 sec 3.60 MBytes 30.2 Mbits/sec 0.591 ms 0/2610 (0%) +[UE3] [2025-07-19 12:14:38] [ 5] 68.00-69.00 sec 3.55 MBytes 29.8 Mbits/sec 0.613 ms 0/2571 (0%) +[UE3] [2025-07-19 12:14:39] [ 5] 69.00-70.00 sec 3.59 MBytes 30.1 Mbits/sec 0.644 ms 0/2600 (0%) +[UE3] [2025-07-19 12:14:40] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.582 ms 0/2593 (0%) +[UE3] [2025-07-19 12:14:41] [ 5] 71.00-72.00 sec 3.58 MBytes 30.1 Mbits/sec 0.424 ms 0/2596 (0%) +[UE3] [2025-07-19 12:14:42] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.403 ms 0/2590 (0%) +[UE3] [2025-07-19 12:14:43] [ 5] 73.00-74.00 sec 3.54 MBytes 29.7 Mbits/sec 0.521 ms 0/2563 (0%) +[UE3] [2025-07-19 12:14:44] [ 5] 74.00-75.00 sec 3.60 MBytes 30.2 Mbits/sec 0.542 ms 0/2606 (0%) +[UE3] [2025-07-19 12:14:45] [ 5] 75.00-76.00 sec 3.57 MBytes 29.9 Mbits/sec 0.719 ms 0/2585 (0%) +[UE3] [2025-07-19 12:14:46] [ 5] 76.00-77.00 sec 3.57 MBytes 29.9 Mbits/sec 0.476 ms 0/2584 (0%) +[UE3] [2025-07-19 12:14:47] [ 5] 77.00-78.00 sec 3.60 MBytes 30.2 Mbits/sec 0.614 ms 0/2606 (0%) +[UE3] [2025-07-19 12:14:48] [ 5] 78.00-79.00 sec 3.57 MBytes 29.9 Mbits/sec 0.581 ms 0/2585 (0%) +[UE3] [2025-07-19 12:14:49] [ 5] 79.00-80.00 sec 3.59 MBytes 30.1 Mbits/sec 0.606 ms 0/2597 (0%) +[UE3] [2025-07-19 12:14:50] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.525 ms 0/2590 (0%) +[UE3] [2025-07-19 12:14:51] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.426 ms 0/2592 (0%) +[UE3] [2025-07-19 12:14:52] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.543 ms 0/2590 (0%) +[UE3] [2025-07-19 12:14:53] [ 5] 83.00-84.00 sec 3.45 MBytes 28.9 Mbits/sec 0.632 ms 0/2498 (0%) +[UE3] [2025-07-19 12:14:54] [ 5] 84.00-85.00 sec 3.66 MBytes 30.7 Mbits/sec 0.658 ms 0/2649 (0%) +[UE3] [2025-07-19 12:14:55] [ 5] 85.00-86.00 sec 3.60 MBytes 30.2 Mbits/sec 0.526 ms 0/2607 (0%) +[UE3] [2025-07-19 12:14:56] [ 5] 86.00-87.00 sec 3.60 MBytes 30.2 Mbits/sec 0.616 ms 0/2604 (0%) +[UE3] [2025-07-19 12:14:57] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.566 ms 0/2589 (0%) +[UE3] [2025-07-19 12:14:58] [ 5] 88.00-89.00 sec 3.57 MBytes 30.0 Mbits/sec 0.619 ms 0/2588 (0%) +[UE3] [2025-07-19 12:14:59] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.412 ms 0/2591 (0%) +[UE3] [2025-07-19 12:15:00] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.422 ms 0/2592 (0%) +[UE3] [2025-07-19 12:15:01] [ 5] 91.00-92.00 sec 3.51 MBytes 29.5 Mbits/sec 0.668 ms 13/2558 (0.51%) +[UE3] [2025-07-19 12:15:02] [ 5] 92.00-93.00 sec 3.60 MBytes 30.2 Mbits/sec 0.678 ms 0/2610 (0%) +[UE3] [2025-07-19 12:15:03] [ 5] 93.00-94.00 sec 3.59 MBytes 30.1 Mbits/sec 0.407 ms 0/2602 (0%) +[UE3] [2025-07-19 12:15:04] [ 5] 94.00-95.00 sec 3.54 MBytes 29.7 Mbits/sec 0.508 ms 0/2566 (0%) +[UE3] [2025-07-19 12:15:05] [ 5] 95.00-96.00 sec 3.59 MBytes 30.2 Mbits/sec 0.606 ms 0/2603 (0%) +[UE3] [2025-07-19 12:15:06] [ 5] 96.00-97.00 sec 3.59 MBytes 30.1 Mbits/sec 0.514 ms 0/2598 (0%) +[UE3] [2025-07-19 12:15:07] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.577 ms 0/2592 (0%) +[UE3] [2025-07-19 12:15:08] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.501 ms 0/2588 (0%) +[UE3] [2025-07-19 12:15:09] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.409 ms 0/2594 (0%) +[UE3] [2025-07-19 12:15:11] [ 5] 0.00-1.00 sec 5.04 MBytes 42.3 Mbits/sec 0.247 ms 0/3649 (0%) +[UE3] [2025-07-19 12:15:12] [ 5] 1.00-2.00 sec 4.71 MBytes 39.5 Mbits/sec 0.312 ms 0/3409 (0%) +[UE3] [2025-07-19 12:15:13] [ 5] 2.00-3.00 sec 4.25 MBytes 35.7 Mbits/sec 0.107 ms 1832/4913 (37%) +[UE3] [2025-07-19 12:15:14] [ 5] 3.00-4.00 sec 4.95 MBytes 41.5 Mbits/sec 0.248 ms 7333/10915 (67%) +[UE3] [2025-07-19 12:15:15] [ 5] 4.00-5.00 sec 4.51 MBytes 37.8 Mbits/sec 0.076 ms 6781/10048 (67%) +[UE3] [2025-07-19 12:15:16] [ 5] 5.00-6.00 sec 4.62 MBytes 38.7 Mbits/sec 0.111 ms 6575/9918 (66%) +[UE3] [2025-07-19 12:15:17] [ 5] 6.00-7.00 sec 4.64 MBytes 38.9 Mbits/sec 0.142 ms 6977/10337 (67%) +[UE3] [2025-07-19 12:15:18] [ 5] 7.00-8.00 sec 4.92 MBytes 41.2 Mbits/sec 0.107 ms 7370/10930 (67%) +[UE3] [2025-07-19 12:15:19] [ 5] 8.00-9.00 sec 4.60 MBytes 38.6 Mbits/sec 0.096 ms 6906/10237 (67%) +[UE3] [2025-07-19 12:15:20] [ 5] 9.00-10.00 sec 4.68 MBytes 39.2 Mbits/sec 0.142 ms 6814/10200 (67%) +[UE3] [2025-07-19 12:15:21] [ 5] 10.00-11.00 sec 4.54 MBytes 38.1 Mbits/sec 0.102 ms 6773/10063 (67%) +[UE3] [2025-07-19 12:15:22] [ 5] 11.00-12.00 sec 4.61 MBytes 38.6 Mbits/sec 0.095 ms 7035/10371 (68%) +[UE3] [2025-07-19 12:15:23] [ 5] 12.00-13.00 sec 4.65 MBytes 39.0 Mbits/sec 0.126 ms 6871/10241 (67%) +[UE3] [2025-07-19 12:15:24] [ 5] 13.00-14.00 sec 4.66 MBytes 39.1 Mbits/sec 0.105 ms 7052/10425 (68%) +[UE3] [2025-07-19 12:15:25] [ 5] 14.00-15.00 sec 4.94 MBytes 41.4 Mbits/sec 0.090 ms 7364/10940 (67%) +[UE3] [2025-07-19 12:15:26] [ 5] 15.00-16.00 sec 4.67 MBytes 39.2 Mbits/sec 0.133 ms 6992/10377 (67%) +[UE3] [2025-07-19 12:15:27] [ 5] 16.00-17.00 sec 4.57 MBytes 38.3 Mbits/sec 0.111 ms 6679/9989 (67%) +[UE3] [2025-07-19 12:15:28] [ 5] 17.00-18.00 sec 4.32 MBytes 36.3 Mbits/sec 0.100 ms 6544/9675 (68%) +[UE3] [2025-07-19 12:15:29] [ 5] 18.00-19.00 sec 4.64 MBytes 38.9 Mbits/sec 0.110 ms 6643/10003 (66%) +[UE3] [2025-07-19 12:15:30] [ 5] 19.00-20.00 sec 4.91 MBytes 41.2 Mbits/sec 0.144 ms 8117/11672 (70%) +[UE3] [2025-07-19 12:15:31] [ 5] 20.00-21.00 sec 4.59 MBytes 38.5 Mbits/sec 0.113 ms 6926/10248 (68%) +[UE3] [2025-07-19 12:15:32] [ 5] 21.00-22.00 sec 4.59 MBytes 38.5 Mbits/sec 0.091 ms 6864/10191 (67%) +[UE3] [2025-07-19 12:15:33] [ 5] 22.00-23.00 sec 4.66 MBytes 39.1 Mbits/sec 0.118 ms 7110/10487 (68%) +[UE3] [2025-07-19 12:15:34] [ 5] 23.00-24.00 sec 4.59 MBytes 38.5 Mbits/sec 0.100 ms 7004/10326 (68%) +[UE3] [2025-07-19 12:15:35] [ 5] 24.00-25.00 sec 4.61 MBytes 38.7 Mbits/sec 0.126 ms 6905/10244 (67%) +[UE3] [2025-07-19 12:15:36] [ 5] 25.00-26.00 sec 4.59 MBytes 38.5 Mbits/sec 0.101 ms 6982/10306 (68%) +[UE3] [2025-07-19 12:15:37] [ 5] 26.00-27.00 sec 4.93 MBytes 41.3 Mbits/sec 0.131 ms 7311/10879 (67%) +[UE3] [2025-07-19 12:15:38] [ 5] 27.00-28.00 sec 4.57 MBytes 38.3 Mbits/sec 0.085 ms 6775/10085 (67%) +[UE3] [2025-07-19 12:15:39] [ 5] 28.00-29.00 sec 4.63 MBytes 38.8 Mbits/sec 0.093 ms 6788/10138 (67%) +[UE3] [2025-07-19 12:15:40] [ 5] 29.00-30.00 sec 4.72 MBytes 39.6 Mbits/sec 0.149 ms 6946/10366 (67%) +[UE3] [2025-07-19 12:15:41] [ 5] 30.00-31.00 sec 4.36 MBytes 36.6 Mbits/sec 0.139 ms 6703/9861 (68%) +[UE3] [2025-07-19 12:15:42] [ 5] 31.00-32.00 sec 4.07 MBytes 34.1 Mbits/sec 0.130 ms 6409/9353 (69%) +[UE3] [2025-07-19 12:15:43] [ 5] 32.00-33.00 sec 4.59 MBytes 38.5 Mbits/sec 0.112 ms 6564/9887 (66%) +[UE3] [2025-07-19 12:15:44] [ 5] 33.00-34.00 sec 4.66 MBytes 39.1 Mbits/sec 0.088 ms 8776/12152 (72%) +[UE3] [2025-07-19 12:15:45] [ 5] 34.00-35.00 sec 4.85 MBytes 40.7 Mbits/sec 0.075 ms 7367/10880 (68%) +[UE3] [2025-07-19 12:15:46] [ 5] 35.00-36.00 sec 4.69 MBytes 39.4 Mbits/sec 0.087 ms 6923/10322 (67%) +[UE3] [2025-07-19 12:15:47] [ 5] 36.00-37.00 sec 4.58 MBytes 38.4 Mbits/sec 0.105 ms 6787/10103 (67%) +[UE3] [2025-07-19 12:15:48] [ 5] 37.00-38.00 sec 4.91 MBytes 41.2 Mbits/sec 0.053 ms 7427/10983 (68%) +[UE3] [2025-07-19 12:15:49] [ 5] 38.00-39.00 sec 4.64 MBytes 38.9 Mbits/sec 0.084 ms 6815/10177 (67%) +[UE3] [2025-07-19 12:15:50] [ 5] 39.00-40.00 sec 4.60 MBytes 38.6 Mbits/sec 0.171 ms 6686/10017 (67%) +[UE3] [2025-07-19 12:15:51] [ 5] 40.00-41.00 sec 4.40 MBytes 36.9 Mbits/sec 0.088 ms 6577/9760 (67%) +[UE3] [2025-07-19 12:15:52] [ 5] 41.00-42.00 sec 4.32 MBytes 36.2 Mbits/sec 0.141 ms 6651/9779 (68%) +[UE3] [2025-07-19 12:15:53] [ 5] 42.00-43.00 sec 4.80 MBytes 40.2 Mbits/sec 0.080 ms 7392/10866 (68%) +[UE3] [2025-07-19 12:15:54] [ 5] 43.00-44.00 sec 4.66 MBytes 39.1 Mbits/sec 0.112 ms 7876/11248 (70%) +[UE3] [2025-07-19 12:15:55] [ 5] 44.00-45.00 sec 4.66 MBytes 39.1 Mbits/sec 0.100 ms 6986/10359 (67%) +[UE3] [2025-07-19 12:15:56] [ 5] 45.00-46.00 sec 4.77 MBytes 40.0 Mbits/sec 0.116 ms 7136/10592 (67%) +[UE3] [2025-07-19 12:15:57] [ 5] 46.00-47.00 sec 4.40 MBytes 36.9 Mbits/sec 0.108 ms 6277/9462 (66%) +[UE3] [2025-07-19 12:15:58] [ 5] 47.00-48.00 sec 4.68 MBytes 39.2 Mbits/sec 0.123 ms 6817/10204 (67%) +[UE3] [2025-07-19 12:15:59] [ 5] 48.00-49.00 sec 4.56 MBytes 38.3 Mbits/sec 0.138 ms 7452/10755 (69%) +[UE3] [2025-07-19 12:16:00] [ 5] 49.00-50.00 sec 4.60 MBytes 38.6 Mbits/sec 0.138 ms 6820/10154 (67%) +[UE3] [2025-07-19 12:16:01] [ 5] 50.00-51.00 sec 4.40 MBytes 36.9 Mbits/sec 0.110 ms 6817/10002 (68%) +[UE3] [2025-07-19 12:16:02] [ 5] 51.00-52.00 sec 4.67 MBytes 39.2 Mbits/sec 0.142 ms 7283/10666 (68%) +[UE3] [2025-07-19 12:16:03] [ 5] 52.00-53.00 sec 4.87 MBytes 40.9 Mbits/sec 0.135 ms 7553/11082 (68%) +[UE3] [2025-07-19 12:16:04] [ 5] 53.00-54.00 sec 4.65 MBytes 39.0 Mbits/sec 0.114 ms 6934/10303 (67%) +[UE3] [2025-07-19 12:16:05] [ 5] 54.00-55.00 sec 4.65 MBytes 39.0 Mbits/sec 0.135 ms 6954/10323 (67%) +[UE3] [2025-07-19 12:16:06] [ 5] 55.00-56.00 sec 4.60 MBytes 38.6 Mbits/sec 0.127 ms 6675/10006 (67%) +[UE3] [2025-07-19 12:16:07] [ 5] 56.00-57.00 sec 4.61 MBytes 38.6 Mbits/sec 0.089 ms 6966/10302 (68%) +[UE3] [2025-07-19 12:16:08] [ 5] 57.00-58.00 sec 4.67 MBytes 39.1 Mbits/sec 0.137 ms 6997/10377 (67%) +[UE3] [2025-07-19 12:16:09] [ 5] 58.00-59.00 sec 4.81 MBytes 40.4 Mbits/sec 0.090 ms 7292/10777 (68%) +[UE3] [2025-07-19 12:16:10] [ 5] 59.00-60.00 sec 4.63 MBytes 38.8 Mbits/sec 0.094 ms 6753/10104 (67%) +[UE3] [2025-07-19 12:16:11] [ 5] 60.00-61.00 sec 4.65 MBytes 39.0 Mbits/sec 0.099 ms 7127/10497 (68%) +[UE3] [2025-07-19 12:16:12] [ 5] 61.00-62.00 sec 4.61 MBytes 38.6 Mbits/sec 0.150 ms 6927/10263 (67%) +[UE3] [2025-07-19 12:16:13] [ 5] 62.00-63.00 sec 4.51 MBytes 37.9 Mbits/sec 0.133 ms 6562/9831 (67%) +[UE3] [2025-07-19 12:16:14] [ 5] 63.00-64.00 sec 4.72 MBytes 39.6 Mbits/sec 0.104 ms 7270/10688 (68%) +[UE3] [2025-07-19 12:16:15] [ 5] 64.00-65.00 sec 4.60 MBytes 38.6 Mbits/sec 0.104 ms 7352/10683 (69%) +[UE3] [2025-07-19 12:16:16] [ 5] 65.00-66.00 sec 4.82 MBytes 40.5 Mbits/sec 0.103 ms 7141/10633 (67%) +[UE3] [2025-07-19 12:16:17] [ 5] 66.00-67.00 sec 4.69 MBytes 39.4 Mbits/sec 0.099 ms 6720/10117 (66%) +[UE3] [2025-07-19 12:16:18] [ 5] 67.00-68.00 sec 4.07 MBytes 34.1 Mbits/sec 0.145 ms 5949/8897 (67%) +[UE3] [2025-07-19 12:16:19] [ 5] 68.00-69.00 sec 4.91 MBytes 41.2 Mbits/sec 0.085 ms 7442/11001 (68%) +[UE3] [2025-07-19 12:16:20] [ 5] 69.00-70.00 sec 4.60 MBytes 38.6 Mbits/sec 0.131 ms 7850/11179 (70%) +[UE3] [2025-07-19 12:16:21] [ 5] 70.00-71.00 sec 4.71 MBytes 39.5 Mbits/sec 0.130 ms 6990/10401 (67%) +[UE3] [2025-07-19 12:16:22] [ 5] 71.00-72.00 sec 4.61 MBytes 38.7 Mbits/sec 0.141 ms 6875/10214 (67%) +[UE3] [2025-07-19 12:16:23] [ 5] 72.00-73.00 sec 4.63 MBytes 38.9 Mbits/sec 0.112 ms 6819/10175 (67%) +[UE3] [2025-07-19 12:16:24] [ 5] 73.00-74.00 sec 4.55 MBytes 38.2 Mbits/sec 0.124 ms 6855/10152 (68%) +[UE3] [2025-07-19 12:16:25] [ 5] 74.00-75.00 sec 4.38 MBytes 36.7 Mbits/sec 0.117 ms 6628/9800 (68%) +[UE3] [2025-07-19 12:16:26] [ 5] 75.00-76.00 sec 4.14 MBytes 34.7 Mbits/sec 0.106 ms 6480/9475 (68%) +[UE3] [2025-07-19 12:16:27] [ 5] 76.00-77.00 sec 4.60 MBytes 38.6 Mbits/sec 0.091 ms 7691/11021 (70%) +[UE3] [2025-07-19 12:16:28] [ 5] 77.00-78.00 sec 4.59 MBytes 38.5 Mbits/sec 0.073 ms 8032/11358 (71%) +[UE3] [2025-07-19 12:16:29] [ 5] 78.00-79.00 sec 4.66 MBytes 39.1 Mbits/sec 0.094 ms 7114/10491 (68%) +[UE3] [2025-07-19 12:16:30] [ 5] 79.00-80.00 sec 4.57 MBytes 38.3 Mbits/sec 0.125 ms 6968/10278 (68%) +[UE3] [2025-07-19 12:16:31] [ 5] 80.00-81.00 sec 4.60 MBytes 38.6 Mbits/sec 0.106 ms 6979/10309 (68%) +[UE3] [2025-07-19 12:16:32] [ 5] 81.00-82.00 sec 4.01 MBytes 33.6 Mbits/sec 0.081 ms 6113/9017 (68%) +[UE3] [2025-07-19 12:16:33] [ 5] 82.00-83.00 sec 4.67 MBytes 39.2 Mbits/sec 0.098 ms 7173/10553 (68%) +[UE3] [2025-07-19 12:16:34] [ 5] 83.00-84.00 sec 4.67 MBytes 39.1 Mbits/sec 0.109 ms 8193/11572 (71%) +[UE3] [2025-07-19 12:16:35] [ 5] 84.00-85.00 sec 4.38 MBytes 36.7 Mbits/sec 0.080 ms 6467/9638 (67%) +[UE3] [2025-07-19 12:16:36] [ 5] 85.00-86.00 sec 4.02 MBytes 33.7 Mbits/sec 0.113 ms 6208/9121 (68%) +[UE3] [2025-07-19 12:16:37] [ 5] 86.00-87.00 sec 4.63 MBytes 38.9 Mbits/sec 0.086 ms 7641/10997 (69%) +[UE3] [2025-07-19 12:16:38] [ 5] 87.00-88.00 sec 4.59 MBytes 38.5 Mbits/sec 0.137 ms 7988/11310 (71%) +[UE3] [2025-07-19 12:16:39] [ 5] 88.00-89.00 sec 4.68 MBytes 39.3 Mbits/sec 0.105 ms 7074/10465 (68%) +[UE3] [2025-07-19 12:16:40] [ 5] 89.00-90.00 sec 4.88 MBytes 40.9 Mbits/sec 0.091 ms 7302/10834 (67%) +[UE3] [2025-07-19 12:16:41] [ 5] 90.00-91.00 sec 4.62 MBytes 38.8 Mbits/sec 0.147 ms 6970/10318 (68%) +[UE3] [2025-07-19 12:16:42] [ 5] 91.00-92.00 sec 4.66 MBytes 39.1 Mbits/sec 0.163 ms 6913/10286 (67%) +[UE3] [2025-07-19 12:16:43] [ 5] 92.00-93.00 sec 4.59 MBytes 38.5 Mbits/sec 0.104 ms 6846/10168 (67%) +[UE3] [2025-07-19 12:16:44] [ 5] 93.00-94.00 sec 4.60 MBytes 38.6 Mbits/sec 0.065 ms 6906/10240 (67%) +[UE3] [2025-07-19 12:16:45] [ 5] 94.00-95.00 sec 4.38 MBytes 36.7 Mbits/sec 0.163 ms 6642/9812 (68%) +[UE3] [2025-07-19 12:16:46] [ 5] 95.00-96.00 sec 4.67 MBytes 39.1 Mbits/sec 0.105 ms 7119/10498 (68%) +[UE3] [2025-07-19 12:16:47] [ 5] 96.00-97.00 sec 4.62 MBytes 38.8 Mbits/sec 0.093 ms 7534/10880 (69%) +[UE3] [2025-07-19 12:16:48] [ 5] 97.00-98.00 sec 4.87 MBytes 40.9 Mbits/sec 0.112 ms 7148/10678 (67%) +[UE3] [2025-07-19 12:16:49] [ 5] 98.00-99.00 sec 4.58 MBytes 38.4 Mbits/sec 0.101 ms 6988/10305 (68%) +[UE3] [2025-07-19 12:16:52] [ 5] 99.00-100.00 sec 4.56 MBytes 38.3 Mbits/sec 0.090 ms 6759/10063 (67%) +[UE3] [2025-07-19 14:01:26] [ 5] 0.00-1.00 sec 9.44 MBytes 79.2 Mbits/sec 0.095 ms 0/6837 (0%) +[UE3] [2025-07-19 14:01:27] [ 5] 1.00-2.00 sec 12.1 MBytes 102 Mbits/sec 0.182 ms 0/8790 (0%) +[UE3] [2025-07-19 14:01:28] [ 5] 2.00-3.00 sec 11.6 MBytes 97.6 Mbits/sec 0.078 ms 738/9163 (8.1%) +[UE3] [2025-07-19 14:01:29] [ 5] 3.00-4.00 sec 11.6 MBytes 97.0 Mbits/sec 0.093 ms 1254/9631 (13%) +[UE3] [2025-07-19 14:01:30] [ 5] 4.00-5.00 sec 12.4 MBytes 104 Mbits/sec 0.101 ms 2149/11101 (19%) +[UE3] [2025-07-19 14:01:31] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1467/10279 (14%) +[UE3] [2025-07-19 14:01:32] [ 5] 6.00-7.00 sec 11.2 MBytes 93.6 Mbits/sec 0.102 ms 1182/9261 (13%) +[UE3] [2025-07-19 14:01:33] [ 5] 7.00-8.00 sec 12.7 MBytes 107 Mbits/sec 0.075 ms 2314/11524 (20%) +[UE3] [2025-07-19 14:01:34] [ 5] 8.00-9.00 sec 12.2 MBytes 103 Mbits/sec 0.070 ms 1489/10340 (14%) +[UE3] [2025-07-19 14:01:35] [ 5] 9.00-10.00 sec 12.2 MBytes 103 Mbits/sec 0.101 ms 1357/10220 (13%) +[UE3] [2025-07-19 14:01:36] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1394/10238 (14%) +[UE3] [2025-07-19 14:01:37] [ 5] 11.00-12.00 sec 12.3 MBytes 103 Mbits/sec 0.119 ms 1438/10372 (14%) +[UE3] [2025-07-19 14:01:38] [ 5] 12.00-13.00 sec 13.0 MBytes 109 Mbits/sec 0.080 ms 1585/10989 (14%) +[UE3] [2025-07-19 14:01:39] [ 5] 13.00-14.00 sec 12.1 MBytes 102 Mbits/sec 0.091 ms 1086/9881 (11%) +[UE3] [2025-07-19 14:01:40] [ 5] 14.00-15.00 sec 11.0 MBytes 91.9 Mbits/sec 0.088 ms 1463/9395 (16%) +[UE3] [2025-07-19 14:01:41] [ 5] 15.00-16.00 sec 13.0 MBytes 109 Mbits/sec 0.073 ms 2138/11542 (19%) +[UE3] [2025-07-19 14:01:42] [ 5] 16.00-17.00 sec 12.4 MBytes 104 Mbits/sec 0.099 ms 1193/10157 (12%) +[UE3] [2025-07-19 14:01:43] [ 5] 17.00-18.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1495/10296 (15%) +[UE3] [2025-07-19 14:01:44] [ 5] 18.00-19.00 sec 12.4 MBytes 104 Mbits/sec 0.082 ms 1297/10252 (13%) +[UE3] [2025-07-19 14:01:45] [ 5] 19.00-20.00 sec 12.4 MBytes 104 Mbits/sec 0.099 ms 1508/10479 (14%) +[UE3] [2025-07-19 14:01:46] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1348/10156 (13%) +[UE3] [2025-07-19 14:01:47] [ 5] 21.00-22.00 sec 13.0 MBytes 109 Mbits/sec 0.115 ms 1393/10790 (13%) +[UE3] [2025-07-19 14:01:48] [ 5] 22.00-23.00 sec 11.6 MBytes 97.1 Mbits/sec 0.090 ms 1174/9552 (12%) +[UE3] [2025-07-19 14:01:49] [ 5] 23.00-24.00 sec 11.7 MBytes 98.5 Mbits/sec 0.093 ms 2095/10597 (20%) +[UE3] [2025-07-19 14:01:50] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.104 ms 2001/10813 (19%) +[UE3] [2025-07-19 14:01:51] [ 5] 25.00-26.00 sec 12.3 MBytes 103 Mbits/sec 0.100 ms 1307/10225 (13%) +[UE3] [2025-07-19 14:01:52] [ 5] 26.00-27.00 sec 12.3 MBytes 104 Mbits/sec 0.058 ms 1438/10379 (14%) +[UE3] [2025-07-19 14:01:53] [ 5] 27.00-28.00 sec 12.2 MBytes 102 Mbits/sec 0.053 ms 1433/10245 (14%) +[UE3] [2025-07-19 14:01:54] [ 5] 28.00-29.00 sec 12.4 MBytes 104 Mbits/sec 0.111 ms 1405/10379 (14%) +[UE3] [2025-07-19 14:01:55] [ 5] 29.00-30.00 sec 12.4 MBytes 104 Mbits/sec 0.082 ms 1489/10437 (14%) +[UE3] [2025-07-19 14:01:56] [ 5] 30.00-31.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1217/10022 (12%) +[UE3] [2025-07-19 14:01:57] [ 5] 31.00-32.00 sec 13.0 MBytes 109 Mbits/sec 0.082 ms 1542/10959 (14%) +[UE3] [2025-07-19 14:01:58] [ 5] 32.00-33.00 sec 10.9 MBytes 91.7 Mbits/sec 0.120 ms 1003/8922 (11%) +[UE3] [2025-07-19 14:01:59] [ 5] 33.00-34.00 sec 13.0 MBytes 109 Mbits/sec 0.113 ms 2406/11797 (20%) +[UE3] [2025-07-19 14:02:00] [ 5] 34.00-35.00 sec 11.6 MBytes 97.2 Mbits/sec 0.090 ms 1398/9785 (14%) +[UE3] [2025-07-19 14:02:01] [ 5] 35.00-36.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1675/10624 (16%) +[UE3] [2025-07-19 14:02:02] [ 5] 36.00-37.00 sec 13.0 MBytes 109 Mbits/sec 0.095 ms 1364/10755 (13%) +[UE3] [2025-07-19 14:02:03] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1226/10051 (12%) +[UE3] [2025-07-19 14:02:04] [ 5] 38.00-39.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1390/10338 (13%) +[UE3] [2025-07-19 14:02:05] [ 5] 39.00-40.00 sec 12.4 MBytes 104 Mbits/sec 0.080 ms 1447/10400 (14%) +[UE3] [2025-07-19 14:02:06] [ 5] 40.00-41.00 sec 12.8 MBytes 107 Mbits/sec 0.119 ms 1351/10622 (13%) +[UE3] [2025-07-19 14:02:07] [ 5] 41.00-42.00 sec 11.7 MBytes 98.5 Mbits/sec 0.083 ms 1171/9673 (12%) +[UE3] [2025-07-19 14:02:08] [ 5] 42.00-43.00 sec 11.6 MBytes 97.1 Mbits/sec 0.097 ms 1489/9868 (15%) +[UE3] [2025-07-19 14:02:09] [ 5] 43.00-44.00 sec 12.4 MBytes 104 Mbits/sec 0.082 ms 2311/11274 (20%) +[UE3] [2025-07-19 14:02:10] [ 5] 44.00-45.00 sec 13.0 MBytes 109 Mbits/sec 0.084 ms 1191/10576 (11%) +[UE3] [2025-07-19 14:02:11] [ 5] 45.00-46.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1229/10040 (12%) +[UE3] [2025-07-19 14:02:12] [ 5] 46.00-47.00 sec 11.6 MBytes 97.0 Mbits/sec 0.081 ms 1194/9571 (12%) +[UE3] [2025-07-19 14:02:13] [ 5] 47.00-48.00 sec 12.4 MBytes 104 Mbits/sec 0.119 ms 2341/11305 (21%) +[UE3] [2025-07-19 14:02:14] [ 5] 48.00-49.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1430/10242 (14%) +[UE3] [2025-07-19 14:02:15] [ 5] 49.00-50.00 sec 12.4 MBytes 104 Mbits/sec 0.099 ms 1331/10282 (13%) +[UE3] [2025-07-19 14:02:16] [ 5] 50.00-51.00 sec 13.2 MBytes 111 Mbits/sec 0.123 ms 1320/10859 (12%) +[UE3] [2025-07-19 14:02:17] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1221/10031 (12%) +[UE3] [2025-07-19 14:02:18] [ 5] 52.00-53.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1300/10127 (13%) +[UE3] [2025-07-19 14:02:19] [ 5] 53.00-54.00 sec 10.9 MBytes 91.8 Mbits/sec 0.098 ms 2066/9994 (21%) +[UE3] [2025-07-19 14:02:20] [ 5] 54.00-55.00 sec 12.5 MBytes 105 Mbits/sec 0.143 ms 1695/10782 (16%) +[UE3] [2025-07-19 14:02:21] [ 5] 55.00-56.00 sec 12.0 MBytes 100 Mbits/sec 0.132 ms 1433/10099 (14%) +[UE3] [2025-07-19 14:02:22] [ 5] 56.00-57.00 sec 13.0 MBytes 109 Mbits/sec 0.119 ms 1486/10909 (14%) +[UE3] [2025-07-19 14:02:23] [ 5] 57.00-58.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1377/10179 (14%) +[UE3] [2025-07-19 14:02:24] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1524/10368 (15%) +[UE3] [2025-07-19 14:02:25] [ 5] 59.00-60.00 sec 12.0 MBytes 101 Mbits/sec 0.096 ms 1363/10058 (14%) +[UE3] [2025-07-19 14:02:26] [ 5] 60.00-61.00 sec 12.8 MBytes 107 Mbits/sec 0.089 ms 1510/10774 (14%) +[UE3] [2025-07-19 14:02:27] [ 5] 61.00-62.00 sec 12.5 MBytes 105 Mbits/sec 0.076 ms 1307/10344 (13%) +[UE3] [2025-07-19 14:02:28] [ 5] 62.00-63.00 sec 12.1 MBytes 102 Mbits/sec 0.105 ms 1237/10031 (12%) +[UE3] [2025-07-19 14:02:29] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1300/10125 (13%) +[UE3] [2025-07-19 14:02:30] [ 5] 64.00-65.00 sec 12.4 MBytes 104 Mbits/sec 0.090 ms 1596/10554 (15%) +[UE3] [2025-07-19 14:02:31] [ 5] 65.00-66.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1457/10401 (14%) +[UE3] [2025-07-19 14:02:32] [ 5] 66.00-67.00 sec 11.0 MBytes 91.9 Mbits/sec 0.107 ms 1273/9205 (14%) +[UE3] [2025-07-19 14:02:33] [ 5] 67.00-68.00 sec 13.0 MBytes 109 Mbits/sec 0.071 ms 2568/11982 (21%) +[UE3] [2025-07-19 14:02:34] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1290/10105 (13%) +[UE3] [2025-07-19 14:02:35] [ 5] 69.00-70.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1488/10436 (14%) +[UE3] [2025-07-19 14:02:36] [ 5] 70.00-71.00 sec 11.5 MBytes 96.9 Mbits/sec 0.072 ms 1212/9574 (13%) +[UE3] [2025-07-19 14:02:37] [ 5] 71.00-72.00 sec 12.6 MBytes 106 Mbits/sec 0.089 ms 2109/11225 (19%) +[UE3] [2025-07-19 14:02:38] [ 5] 72.00-73.00 sec 12.0 MBytes 100 Mbits/sec 0.095 ms 1279/9936 (13%) +[UE3] [2025-07-19 14:02:39] [ 5] 73.00-74.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 1540/10494 (15%) +[UE3] [2025-07-19 14:02:40] [ 5] 74.00-75.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1367/10192 (13%) +[UE3] [2025-07-19 14:02:41] [ 5] 75.00-76.00 sec 11.8 MBytes 98.6 Mbits/sec 0.083 ms 1493/10007 (15%) +[UE3] [2025-07-19 14:02:42] [ 5] 76.00-77.00 sec 12.2 MBytes 102 Mbits/sec 0.128 ms 1835/10643 (17%) +[UE3] [2025-07-19 14:02:43] [ 5] 77.00-78.00 sec 13.0 MBytes 109 Mbits/sec 0.124 ms 1575/10980 (14%) +[UE3] [2025-07-19 14:02:44] [ 5] 78.00-79.00 sec 12.6 MBytes 105 Mbits/sec 0.081 ms 1266/10356 (12%) +[UE3] [2025-07-19 14:02:45] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1424/10229 (14%) +[UE3] [2025-07-19 14:02:46] [ 5] 80.00-81.00 sec 12.4 MBytes 104 Mbits/sec 0.115 ms 1231/10216 (12%) +[UE3] [2025-07-19 14:02:47] [ 5] 81.00-82.00 sec 12.5 MBytes 105 Mbits/sec 0.218 ms 1368/10450 (13%) +[UE3] [2025-07-19 14:02:48] [ 5] 82.00-83.00 sec 12.6 MBytes 106 Mbits/sec 0.074 ms 1424/10544 (14%) +[UE3] [2025-07-19 14:02:49] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1333/10150 (13%) +[UE3] [2025-07-19 14:02:50] [ 5] 84.00-85.00 sec 12.3 MBytes 104 Mbits/sec 0.115 ms 1309/10250 (13%) +[UE3] [2025-07-19 14:02:51] [ 5] 85.00-86.00 sec 11.6 MBytes 97.0 Mbits/sec 0.073 ms 1941/10314 (19%) +[UE3] [2025-07-19 14:02:52] [ 5] 86.00-87.00 sec 11.6 MBytes 97.1 Mbits/sec 0.109 ms 1568/9949 (16%) +[UE3] [2025-07-19 14:02:53] [ 5] 87.00-88.00 sec 12.4 MBytes 104 Mbits/sec 0.099 ms 1749/10713 (16%) +[UE3] [2025-07-19 14:02:54] [ 5] 88.00-89.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1392/10344 (13%) +[UE3] [2025-07-19 14:02:55] [ 5] 89.00-90.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1457/10268 (14%) +[UE3] [2025-07-19 14:02:56] [ 5] 90.00-91.00 sec 13.0 MBytes 109 Mbits/sec 0.091 ms 1448/10829 (13%) +[UE3] [2025-07-19 14:02:57] [ 5] 91.00-92.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1342/10306 (13%) +[UE3] [2025-07-19 14:02:58] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1365/10184 (13%) +[UE3] [2025-07-19 14:02:59] [ 5] 93.00-94.00 sec 13.0 MBytes 109 Mbits/sec 0.093 ms 1380/10773 (13%) +[UE3] [2025-07-19 14:03:00] [ 5] 94.00-95.00 sec 11.6 MBytes 97.3 Mbits/sec 0.864 ms 1159/9556 (12%) +[UE3] [2025-07-19 14:03:01] [ 5] 95.00-96.00 sec 11.7 MBytes 98.5 Mbits/sec 0.109 ms 1438/9938 (14%) +[UE3] [2025-07-19 14:03:02] [ 5] 96.00-97.00 sec 11.6 MBytes 97.0 Mbits/sec 0.115 ms 2055/10431 (20%) +[UE3] [2025-07-19 14:03:03] [ 5] 97.00-98.00 sec 12.3 MBytes 104 Mbits/sec 0.090 ms 2161/11098 (19%) +[UE3] [2025-07-19 14:03:04] [ 5] 98.00-99.00 sec 10.8 MBytes 90.2 Mbits/sec 0.088 ms 1567/9357 (17%) +[UE3] [2025-07-19 14:03:06] [ 5] 99.00-100.00 sec 13.0 MBytes 109 Mbits/sec 0.076 ms 2302/11706 (20%) +[UE3] [2025-07-19 14:03:07] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.164 ms 0/2697 (0%) +[UE3] [2025-07-19 14:03:08] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:09] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:10] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:11] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:12] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:13] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:14] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:15] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:16] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:17] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.333 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:18] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.219 ms 0/2588 (0%) +[UE3] [2025-07-19 14:03:19] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2592 (0%) +[UE3] [2025-07-19 14:03:20] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:21] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:22] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:23] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:24] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.284 ms 0/2587 (0%) +[UE3] [2025-07-19 14:03:25] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2593 (0%) +[UE3] [2025-07-19 14:03:26] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:27] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:28] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:29] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:30] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:31] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:32] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:33] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:34] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:35] [ 5] 28.00-29.00 sec 3.57 MBytes 30.0 Mbits/sec 0.322 ms 0/2587 (0%) +[UE3] [2025-07-19 14:03:36] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2592 (0%) +[UE3] [2025-07-19 14:03:37] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:38] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:39] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:40] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:41] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:42] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2591 (0%) +[UE3] [2025-07-19 14:03:43] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:44] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.272 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:45] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:46] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:47] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:48] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:49] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.357 ms 0/2591 (0%) +[UE3] [2025-07-19 14:03:50] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:51] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.276 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:52] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:53] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:54] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:55] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 14:03:56] [ 5] 49.00-50.00 sec 3.56 MBytes 29.9 Mbits/sec 0.216 ms 0/2581 (0%) +[UE3] [2025-07-19 14:03:57] [ 5] 50.00-51.00 sec 3.59 MBytes 30.1 Mbits/sec 0.167 ms 0/2599 (0%) +[UE3] [2025-07-19 14:03:58] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE3] [2025-07-19 14:03:59] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.267 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:00] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.284 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:01] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.340 ms 0/2587 (0%) +[UE3] [2025-07-19 14:04:02] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2593 (0%) +[UE3] [2025-07-19 14:04:03] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:04] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:05] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:06] [ 5] 59.00-60.00 sec 3.57 MBytes 30.0 Mbits/sec 0.200 ms 0/2588 (0%) +[UE3] [2025-07-19 14:04:07] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.363 ms 0/2591 (0%) +[UE3] [2025-07-19 14:04:08] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:09] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2587 (0%) +[UE3] [2025-07-19 14:04:10] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2593 (0%) +[UE3] [2025-07-19 14:04:11] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.182 ms 0/2586 (0%) +[UE3] [2025-07-19 14:04:12] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2593 (0%) +[UE3] [2025-07-19 14:04:13] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:14] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:15] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.199 ms 0/2587 (0%) +[UE3] [2025-07-19 14:04:16] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.329 ms 0/2592 (0%) +[UE3] [2025-07-19 14:04:17] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:18] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.298 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:19] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2591 (0%) +[UE3] [2025-07-19 14:04:20] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:21] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:22] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.281 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:23] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.313 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:24] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2591 (0%) +[UE3] [2025-07-19 14:04:25] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.123 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:26] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:27] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:28] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2591 (0%) +[UE3] [2025-07-19 14:04:29] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:30] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:31] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:32] [ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 0.257 ms 0/2587 (0%) +[UE3] [2025-07-19 14:04:33] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2593 (0%) +[UE3] [2025-07-19 14:04:34] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:35] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2591 (0%) +[UE3] [2025-07-19 14:04:36] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:37] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:38] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:39] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2589 (0%) +[UE3] [2025-07-19 14:04:40] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:41] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:42] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE3] [2025-07-19 14:04:43] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.213 ms 0/2588 (0%) +[UE3] [2025-07-19 14:04:44] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2591 (0%) +[UE3] [2025-07-19 14:04:45] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.263 ms 0/2587 (0%) +[UE3] [2025-07-19 14:04:47] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2591 (0%) +[UE3] [2025-07-19 14:04:49] [ 5] 0.00-1.00 sec 8.67 MBytes 72.7 Mbits/sec 0.167 ms 0/6278 (0%) +[UE3] [2025-07-19 14:04:50] [ 5] 1.00-2.00 sec 12.2 MBytes 103 Mbits/sec 0.205 ms 0/8870 (0%) +[UE3] [2025-07-19 14:04:51] [ 5] 2.00-3.00 sec 9.71 MBytes 81.4 Mbits/sec 0.074 ms 630/7658 (8.2%) +[UE3] [2025-07-19 14:04:52] [ 5] 3.00-4.00 sec 12.7 MBytes 106 Mbits/sec 0.083 ms 2679/11847 (23%) +[UE3] [2025-07-19 14:04:53] [ 5] 4.00-5.00 sec 12.0 MBytes 101 Mbits/sec 0.120 ms 1456/10154 (14%) +[UE3] [2025-07-19 14:04:54] [ 5] 5.00-6.00 sec 12.1 MBytes 101 Mbits/sec 0.093 ms 1637/10379 (16%) +[UE3] [2025-07-19 14:04:55] [ 5] 6.00-7.00 sec 12.7 MBytes 106 Mbits/sec 0.088 ms 1500/10665 (14%) +[UE3] [2025-07-19 14:04:56] [ 5] 7.00-8.00 sec 11.8 MBytes 99.4 Mbits/sec 0.108 ms 1396/9973 (14%) +[UE3] [2025-07-19 14:04:57] [ 5] 8.00-9.00 sec 10.7 MBytes 89.7 Mbits/sec 0.115 ms 1617/9365 (17%) +[UE3] [2025-07-19 14:04:58] [ 5] 9.00-10.00 sec 12.6 MBytes 106 Mbits/sec 0.081 ms 2552/11691 (22%) +[UE3] [2025-07-19 14:04:59] [ 5] 10.00-11.00 sec 12.1 MBytes 101 Mbits/sec 0.116 ms 1362/10103 (13%) +[UE3] [2025-07-19 14:05:00] [ 5] 11.00-12.00 sec 12.6 MBytes 106 Mbits/sec 0.098 ms 1422/10559 (13%) +[UE3] [2025-07-19 14:05:01] [ 5] 12.00-13.00 sec 11.9 MBytes 99.9 Mbits/sec 0.093 ms 1538/10163 (15%) +[UE3] [2025-07-19 14:05:02] [ 5] 13.00-14.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1555/10263 (15%) +[UE3] [2025-07-19 14:05:03] [ 5] 14.00-15.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1722/10437 (16%) +[UE3] [2025-07-19 14:05:04] [ 5] 15.00-16.00 sec 11.9 MBytes 99.9 Mbits/sec 0.114 ms 1469/10095 (15%) +[UE3] [2025-07-19 14:05:05] [ 5] 16.00-17.00 sec 12.6 MBytes 106 Mbits/sec 0.088 ms 1726/10859 (16%) +[UE3] [2025-07-19 14:05:06] [ 5] 17.00-18.00 sec 12.1 MBytes 101 Mbits/sec 0.088 ms 1472/10214 (14%) +[UE3] [2025-07-19 14:05:07] [ 5] 18.00-19.00 sec 12.0 MBytes 101 Mbits/sec 0.086 ms 1483/10195 (15%) +[UE3] [2025-07-19 14:05:08] [ 5] 19.00-20.00 sec 11.9 MBytes 99.6 Mbits/sec 0.111 ms 1692/10294 (16%) +[UE3] [2025-07-19 14:05:09] [ 5] 20.00-21.00 sec 11.2 MBytes 94.4 Mbits/sec 0.073 ms 1732/9878 (18%) +[UE3] [2025-07-19 14:05:10] [ 5] 21.00-22.00 sec 12.1 MBytes 101 Mbits/sec 0.095 ms 2141/10883 (20%) +[UE3] [2025-07-19 14:05:11] [ 5] 22.00-23.00 sec 12.5 MBytes 105 Mbits/sec 0.096 ms 1587/10618 (15%) +[UE3] [2025-07-19 14:05:12] [ 5] 23.00-24.00 sec 12.0 MBytes 101 Mbits/sec 0.131 ms 1532/10240 (15%) +[UE3] [2025-07-19 14:05:13] [ 5] 24.00-25.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1595/10321 (15%) +[UE3] [2025-07-19 14:05:14] [ 5] 25.00-26.00 sec 11.9 MBytes 99.7 Mbits/sec 0.072 ms 1531/10138 (15%) +[UE3] [2025-07-19 14:05:15] [ 5] 26.00-27.00 sec 12.6 MBytes 106 Mbits/sec 0.087 ms 1713/10853 (16%) +[UE3] [2025-07-19 14:05:16] [ 5] 27.00-28.00 sec 12.1 MBytes 101 Mbits/sec 0.117 ms 1448/10188 (14%) +[UE3] [2025-07-19 14:05:17] [ 5] 28.00-29.00 sec 12.6 MBytes 106 Mbits/sec 0.106 ms 1403/10540 (13%) +[UE3] [2025-07-19 14:05:18] [ 5] 29.00-30.00 sec 12.1 MBytes 101 Mbits/sec 0.088 ms 1416/10173 (14%) +[UE3] [2025-07-19 14:05:19] [ 5] 30.00-31.00 sec 10.6 MBytes 89.3 Mbits/sec 0.061 ms 1415/9125 (16%) +[UE3] [2025-07-19 14:05:20] [ 5] 31.00-32.00 sec 12.6 MBytes 106 Mbits/sec 0.091 ms 2723/11875 (23%) +[UE3] [2025-07-19 14:05:21] [ 5] 32.00-33.00 sec 12.1 MBytes 101 Mbits/sec 0.092 ms 1335/10097 (13%) +[UE3] [2025-07-19 14:05:22] [ 5] 33.00-34.00 sec 11.8 MBytes 99.1 Mbits/sec 0.086 ms 1597/10156 (16%) +[UE3] [2025-07-19 14:05:23] [ 5] 34.00-35.00 sec 11.9 MBytes 99.7 Mbits/sec 0.089 ms 1501/10108 (15%) +[UE3] [2025-07-19 14:05:24] [ 5] 35.00-36.00 sec 12.7 MBytes 106 Mbits/sec 0.109 ms 1683/10852 (16%) +[UE3] [2025-07-19 14:05:25] [ 5] 36.00-37.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 1579/10287 (15%) +[UE3] [2025-07-19 14:05:26] [ 5] 37.00-38.00 sec 10.7 MBytes 89.8 Mbits/sec 0.100 ms 1348/9096 (15%) +[UE3] [2025-07-19 14:05:27] [ 5] 38.00-39.00 sec 11.8 MBytes 99.1 Mbits/sec 0.086 ms 2615/11170 (23%) +[UE3] [2025-07-19 14:05:28] [ 5] 39.00-40.00 sec 12.7 MBytes 106 Mbits/sec 0.105 ms 1666/10844 (15%) +[UE3] [2025-07-19 14:05:29] [ 5] 40.00-41.00 sec 11.3 MBytes 94.5 Mbits/sec 0.115 ms 1286/9446 (14%) +[UE3] [2025-07-19 14:05:30] [ 5] 41.00-42.00 sec 12.0 MBytes 101 Mbits/sec 0.098 ms 2414/11139 (22%) +[UE3] [2025-07-19 14:05:31] [ 5] 42.00-43.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1791/10517 (17%) +[UE3] [2025-07-19 14:05:32] [ 5] 43.00-44.00 sec 11.9 MBytes 99.6 Mbits/sec 0.083 ms 1315/9913 (13%) +[UE3] [2025-07-19 14:05:33] [ 5] 44.00-45.00 sec 12.0 MBytes 101 Mbits/sec 0.100 ms 1813/10531 (17%) +[UE3] [2025-07-19 14:05:34] [ 5] 45.00-46.00 sec 12.1 MBytes 101 Mbits/sec 0.102 ms 1513/10246 (15%) +[UE3] [2025-07-19 14:05:35] [ 5] 46.00-47.00 sec 12.5 MBytes 105 Mbits/sec 0.124 ms 1700/10729 (16%) +[UE3] [2025-07-19 14:05:36] [ 5] 47.00-48.00 sec 10.8 MBytes 90.5 Mbits/sec 0.089 ms 1274/9091 (14%) +[UE3] [2025-07-19 14:05:37] [ 5] 48.00-49.00 sec 12.8 MBytes 107 Mbits/sec 0.090 ms 2647/11922 (22%) +[UE3] [2025-07-19 14:05:38] [ 5] 49.00-50.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1375/10210 (13%) +[UE3] [2025-07-19 14:05:39] [ 5] 50.00-51.00 sec 10.8 MBytes 90.6 Mbits/sec 0.092 ms 1248/9068 (14%) +[UE3] [2025-07-19 14:05:40] [ 5] 51.00-52.00 sec 12.8 MBytes 107 Mbits/sec 0.119 ms 2477/11742 (21%) +[UE3] [2025-07-19 14:05:41] [ 5] 52.00-53.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1238/9931 (12%) +[UE3] [2025-07-19 14:05:42] [ 5] 53.00-54.00 sec 12.5 MBytes 105 Mbits/sec 0.102 ms 1569/10645 (15%) +[UE3] [2025-07-19 14:05:43] [ 5] 54.00-55.00 sec 12.5 MBytes 105 Mbits/sec 0.107 ms 1391/10443 (13%) +[UE3] [2025-07-19 14:05:44] [ 5] 55.00-56.00 sec 12.0 MBytes 101 Mbits/sec 0.093 ms 1551/10239 (15%) +[UE3] [2025-07-19 14:05:45] [ 5] 56.00-57.00 sec 11.6 MBytes 97.2 Mbits/sec 0.127 ms 1257/9646 (13%) +[UE3] [2025-07-19 14:05:46] [ 5] 57.00-58.00 sec 12.8 MBytes 108 Mbits/sec 0.113 ms 2036/11325 (18%) +[UE3] [2025-07-19 14:05:47] [ 5] 58.00-59.00 sec 12.0 MBytes 100 Mbits/sec 0.111 ms 1311/9986 (13%) +[UE3] [2025-07-19 14:05:48] [ 5] 59.00-60.00 sec 12.2 MBytes 102 Mbits/sec 0.099 ms 1368/10216 (13%) +[UE3] [2025-07-19 14:05:49] [ 5] 60.00-61.00 sec 10.8 MBytes 90.7 Mbits/sec 0.103 ms 1317/9148 (14%) +[UE3] [2025-07-19 14:05:50] [ 5] 61.00-62.00 sec 12.0 MBytes 101 Mbits/sec 0.105 ms 3059/11735 (26%) +[UE3] [2025-07-19 14:05:51] [ 5] 62.00-63.00 sec 12.8 MBytes 108 Mbits/sec 0.121 ms 1241/10523 (12%) +[UE3] [2025-07-19 14:05:52] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1439/10267 (14%) +[UE3] [2025-07-19 14:05:53] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1474/10314 (14%) +[UE3] [2025-07-19 14:05:54] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1578/10423 (15%) +[UE3] [2025-07-19 14:05:55] [ 5] 66.00-67.00 sec 12.6 MBytes 106 Mbits/sec 0.112 ms 1336/10475 (13%) +[UE3] [2025-07-19 14:05:56] [ 5] 67.00-68.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1334/10012 (13%) +[UE3] [2025-07-19 14:05:57] [ 5] 68.00-69.00 sec 13.0 MBytes 109 Mbits/sec 0.085 ms 1563/10980 (14%) +[UE3] [2025-07-19 14:05:58] [ 5] 69.00-70.00 sec 11.4 MBytes 95.8 Mbits/sec 0.108 ms 1090/9361 (12%) +[UE3] [2025-07-19 14:05:59] [ 5] 70.00-71.00 sec 11.4 MBytes 95.2 Mbits/sec 0.073 ms 2113/10335 (20%) +[UE3] [2025-07-19 14:06:00] [ 5] 71.00-72.00 sec 12.9 MBytes 108 Mbits/sec 0.091 ms 2044/11360 (18%) +[UE3] [2025-07-19 14:06:01] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1486/10308 (14%) +[UE3] [2025-07-19 14:06:02] [ 5] 73.00-74.00 sec 12.0 MBytes 101 Mbits/sec 0.091 ms 1374/10060 (14%) +[UE3] [2025-07-19 14:06:03] [ 5] 74.00-75.00 sec 12.2 MBytes 103 Mbits/sec 0.114 ms 1350/10208 (13%) +[UE3] [2025-07-19 14:06:04] [ 5] 75.00-76.00 sec 12.0 MBytes 101 Mbits/sec 0.118 ms 1586/10266 (15%) +[UE3] [2025-07-19 14:06:05] [ 5] 76.00-77.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1664/10499 (16%) +[UE3] [2025-07-19 14:06:06] [ 5] 77.00-78.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1409/10391 (14%) +[UE3] [2025-07-19 14:06:07] [ 5] 78.00-79.00 sec 11.8 MBytes 99.1 Mbits/sec 0.096 ms 1519/10076 (15%) +[UE3] [2025-07-19 14:06:08] [ 5] 79.00-80.00 sec 12.8 MBytes 107 Mbits/sec 0.075 ms 1433/10705 (13%) +[UE3] [2025-07-19 14:06:09] [ 5] 80.00-81.00 sec 11.4 MBytes 95.7 Mbits/sec 0.123 ms 1503/9762 (15%) +[UE3] [2025-07-19 14:06:10] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 2012/10841 (19%) +[UE3] [2025-07-19 14:06:11] [ 5] 82.00-83.00 sec 12.8 MBytes 107 Mbits/sec 0.089 ms 1565/10836 (14%) +[UE3] [2025-07-19 14:06:12] [ 5] 83.00-84.00 sec 12.0 MBytes 101 Mbits/sec 0.112 ms 1271/9973 (13%) +[UE3] [2025-07-19 14:06:13] [ 5] 84.00-85.00 sec 12.1 MBytes 101 Mbits/sec 0.074 ms 1494/10251 (15%) +[UE3] [2025-07-19 14:06:14] [ 5] 85.00-86.00 sec 11.9 MBytes 100 Mbits/sec 0.297 ms 1719/10350 (17%) +[UE3] [2025-07-19 14:06:15] [ 5] 86.00-87.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1537/10236 (15%) +[UE3] [2025-07-19 14:06:16] [ 5] 87.00-88.00 sec 12.9 MBytes 108 Mbits/sec 0.106 ms 1748/11065 (16%) +[UE3] [2025-07-19 14:06:17] [ 5] 88.00-89.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1230/10055 (12%) +[UE3] [2025-07-19 14:06:18] [ 5] 89.00-90.00 sec 12.4 MBytes 104 Mbits/sec 0.093 ms 1315/10281 (13%) +[UE3] [2025-07-19 14:06:19] [ 5] 90.00-91.00 sec 11.6 MBytes 97.0 Mbits/sec 0.089 ms 1163/9533 (12%) +[UE3] [2025-07-19 14:06:20] [ 5] 91.00-92.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 2271/11219 (20%) +[UE3] [2025-07-19 14:06:21] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1274/10090 (13%) +[UE3] [2025-07-19 14:06:22] [ 5] 93.00-94.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1474/10437 (14%) +[UE3] [2025-07-19 14:06:23] [ 5] 94.00-95.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1468/10416 (14%) +[UE3] [2025-07-19 14:06:24] [ 5] 95.00-96.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1399/10215 (14%) +[UE3] [2025-07-19 14:06:25] [ 5] 96.00-97.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1398/10361 (13%) +[UE3] [2025-07-19 14:06:26] [ 5] 97.00-98.00 sec 12.1 MBytes 102 Mbits/sec 0.080 ms 1407/10201 (14%) +[UE3] [2025-07-19 14:06:27] [ 5] 98.00-99.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1532/10495 (15%) +[UE3] [2025-07-19 14:06:29] [ 5] 99.00-100.00 sec 13.0 MBytes 109 Mbits/sec 0.104 ms 1372/10768 (13%) +[UE3] [2025-07-19 14:06:30] [ 5] 0.00-1.00 sec 3.76 MBytes 31.6 Mbits/sec 0.133 ms 0/2725 (0%) +[UE3] [2025-07-19 14:06:31] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:32] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.180 ms 0/2587 (0%) +[UE3] [2025-07-19 14:06:33] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2592 (0%) +[UE3] [2025-07-19 14:06:34] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:35] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.137 ms 0/2587 (0%) +[UE3] [2025-07-19 14:06:36] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2592 (0%) +[UE3] [2025-07-19 14:06:37] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.327 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:38] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:39] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:40] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.176 ms 0/2587 (0%) +[UE3] [2025-07-19 14:06:41] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:42] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2592 (0%) +[UE3] [2025-07-19 14:06:43] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.292 ms 0/2588 (0%) +[UE3] [2025-07-19 14:06:44] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE3] [2025-07-19 14:06:45] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2591 (0%) +[UE3] [2025-07-19 14:06:46] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.309 ms 0/2592 (0%) +[UE3] [2025-07-19 14:06:47] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.145 ms 0/2587 (0%) +[UE3] [2025-07-19 14:06:48] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2591 (0%) +[UE3] [2025-07-19 14:06:49] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2589 (0%) +[UE3] [2025-07-19 14:06:50] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2591 (0%) +[UE3] [2025-07-19 14:06:51] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2591 (0%) +[UE3] [2025-07-19 14:06:52] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.201 ms 0/2587 (0%) +[UE3] [2025-07-19 14:06:53] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2589 (0%) +[UE3] [2025-07-19 14:06:54] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:55] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE3] [2025-07-19 14:06:56] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2591 (0%) +[UE3] [2025-07-19 14:06:57] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2591 (0%) +[UE3] [2025-07-19 14:06:58] [ 5] 28.00-29.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2588 (0%) +[UE3] [2025-07-19 14:06:59] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:00] [ 5] 30.00-31.00 sec 3.57 MBytes 29.9 Mbits/sec 0.177 ms 0/2582 (0%) +[UE3] [2025-07-19 14:07:01] [ 5] 31.00-32.00 sec 3.59 MBytes 30.1 Mbits/sec 0.352 ms 0/2598 (0%) +[UE3] [2025-07-19 14:07:02] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.115 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:03] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.330 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:04] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:05] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:06] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2592 (0%) +[UE3] [2025-07-19 14:07:07] [ 5] 37.00-38.00 sec 3.57 MBytes 30.0 Mbits/sec 0.260 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:08] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:09] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2593 (0%) +[UE3] [2025-07-19 14:07:10] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.214 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:11] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:12] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2592 (0%) +[UE3] [2025-07-19 14:07:13] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.240 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:14] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2593 (0%) +[UE3] [2025-07-19 14:07:15] [ 5] 45.00-46.00 sec 3.56 MBytes 29.9 Mbits/sec 0.290 ms 0/2581 (0%) +[UE3] [2025-07-19 14:07:16] [ 5] 46.00-47.00 sec 3.58 MBytes 30.1 Mbits/sec 0.196 ms 0/2596 (0%) +[UE3] [2025-07-19 14:07:17] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:18] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2591 (0%) +[UE3] [2025-07-19 14:07:19] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2591 (0%) +[UE3] [2025-07-19 14:07:20] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:21] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.155 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:22] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2591 (0%) +[UE3] [2025-07-19 14:07:23] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2591 (0%) +[UE3] [2025-07-19 14:07:24] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.218 ms 0/2588 (0%) +[UE3] [2025-07-19 14:07:25] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:26] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.126 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:27] [ 5] 57.00-58.00 sec 3.58 MBytes 30.1 Mbits/sec 0.185 ms 0/2595 (0%) +[UE3] [2025-07-19 14:07:28] [ 5] 58.00-59.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:29] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2591 (0%) +[UE3] [2025-07-19 14:07:30] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.192 ms 0/2588 (0%) +[UE3] [2025-07-19 14:07:31] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:32] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:33] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2593 (0%) +[UE3] [2025-07-19 14:07:34] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.175 ms 0/2588 (0%) +[UE3] [2025-07-19 14:07:35] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:36] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2592 (0%) +[UE3] [2025-07-19 14:07:37] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:38] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:39] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:40] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:41] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:42] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.124 ms 0/2593 (0%) +[UE3] [2025-07-19 14:07:43] [ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 0.259 ms 0/2586 (0%) +[UE3] [2025-07-19 14:07:44] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2593 (0%) +[UE3] [2025-07-19 14:07:45] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.203 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:46] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2592 (0%) +[UE3] [2025-07-19 14:07:47] [ 5] 77.00-78.00 sec 3.57 MBytes 30.0 Mbits/sec 0.197 ms 0/2588 (0%) +[UE3] [2025-07-19 14:07:48] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:49] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2593 (0%) +[UE3] [2025-07-19 14:07:50] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.267 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:51] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.266 ms 0/2588 (0%) +[UE3] [2025-07-19 14:07:52] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:53] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2592 (0%) +[UE3] [2025-07-19 14:07:54] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:55] [ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 0.148 ms 0/2587 (0%) +[UE3] [2025-07-19 14:07:56] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.113 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:57] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2589 (0%) +[UE3] [2025-07-19 14:07:58] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE3] [2025-07-19 14:07:59] [ 5] 89.00-90.00 sec 3.57 MBytes 30.0 Mbits/sec 0.447 ms 0/2588 (0%) +[UE3] [2025-07-19 14:08:00] [ 5] 90.00-91.00 sec 3.57 MBytes 29.9 Mbits/sec 0.132 ms 0/2584 (0%) +[UE3] [2025-07-19 14:08:01] [ 5] 91.00-92.00 sec 3.59 MBytes 30.1 Mbits/sec 0.231 ms 0/2597 (0%) +[UE3] [2025-07-19 14:08:02] [ 5] 92.00-93.00 sec 3.57 MBytes 30.0 Mbits/sec 0.161 ms 0/2588 (0%) +[UE3] [2025-07-19 14:08:03] [ 5] 93.00-94.00 sec 3.58 MBytes 30.1 Mbits/sec 0.166 ms 0/2595 (0%) +[UE3] [2025-07-19 14:08:04] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.171 ms 0/2587 (0%) +[UE3] [2025-07-19 14:08:05] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2591 (0%) +[UE3] [2025-07-19 14:08:06] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2591 (0%) +[UE3] [2025-07-19 14:08:07] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.264 ms 0/2587 (0%) +[UE3] [2025-07-19 14:08:08] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2590 (0%) +[UE3] [2025-07-19 14:08:09] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE3] [2025-07-19 14:08:11] [ 5] 0.00-1.00 sec 9.52 MBytes 79.9 Mbits/sec 0.171 ms 0/6896 (0%) +[UE3] [2025-07-19 14:08:12] [ 5] 1.00-2.00 sec 12.4 MBytes 104 Mbits/sec 0.164 ms 0/8992 (0%) +[UE3] [2025-07-19 14:08:13] [ 5] 2.00-3.00 sec 11.7 MBytes 98.1 Mbits/sec 0.097 ms 265/8732 (3%) +[UE3] [2025-07-19 14:08:14] [ 5] 3.00-4.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1316/10272 (13%) +[UE3] [2025-07-19 14:08:15] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1430/10260 (14%) +[UE3] [2025-07-19 14:08:16] [ 5] 5.00-6.00 sec 12.3 MBytes 104 Mbits/sec 0.096 ms 1336/10277 (13%) +[UE3] [2025-07-19 14:08:17] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1427/10239 (14%) +[UE3] [2025-07-19 14:08:18] [ 5] 7.00-8.00 sec 12.8 MBytes 107 Mbits/sec 0.158 ms 1367/10626 (13%) +[UE3] [2025-07-19 14:08:19] [ 5] 8.00-9.00 sec 12.6 MBytes 105 Mbits/sec 0.098 ms 1520/10622 (14%) +[UE3] [2025-07-19 14:08:20] [ 5] 9.00-10.00 sec 10.9 MBytes 91.7 Mbits/sec 0.118 ms 1097/9013 (12%) +[UE3] [2025-07-19 14:08:21] [ 5] 10.00-11.00 sec 13.0 MBytes 109 Mbits/sec 0.070 ms 2249/11673 (19%) +[UE3] [2025-07-19 14:08:22] [ 5] 11.00-12.00 sec 12.1 MBytes 102 Mbits/sec 0.111 ms 1340/10134 (13%) +[UE3] [2025-07-19 14:08:23] [ 5] 12.00-13.00 sec 12.4 MBytes 104 Mbits/sec 0.127 ms 1317/10276 (13%) +[UE3] [2025-07-19 14:08:24] [ 5] 13.00-14.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1380/10354 (13%) +[UE3] [2025-07-19 14:08:25] [ 5] 14.00-15.00 sec 12.1 MBytes 102 Mbits/sec 0.078 ms 1572/10366 (15%) +[UE3] [2025-07-19 14:08:26] [ 5] 15.00-16.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1453/10412 (14%) +[UE3] [2025-07-19 14:08:27] [ 5] 16.00-17.00 sec 13.0 MBytes 109 Mbits/sec 0.090 ms 1334/10725 (12%) +[UE3] [2025-07-19 14:08:28] [ 5] 17.00-18.00 sec 12.2 MBytes 102 Mbits/sec 0.106 ms 1300/10126 (13%) +[UE3] [2025-07-19 14:08:29] [ 5] 18.00-19.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1348/10304 (13%) +[UE3] [2025-07-19 14:08:30] [ 5] 19.00-20.00 sec 11.6 MBytes 97.1 Mbits/sec 0.117 ms 1208/9585 (13%) +[UE3] [2025-07-19 14:08:31] [ 5] 20.00-21.00 sec 12.4 MBytes 104 Mbits/sec 0.083 ms 2072/11017 (19%) +[UE3] [2025-07-19 14:08:32] [ 5] 21.00-22.00 sec 12.4 MBytes 104 Mbits/sec 0.070 ms 1290/10249 (13%) +[UE3] [2025-07-19 14:08:33] [ 5] 22.00-23.00 sec 12.6 MBytes 106 Mbits/sec 0.117 ms 1881/10993 (17%) +[UE3] [2025-07-19 14:08:34] [ 5] 23.00-24.00 sec 12.0 MBytes 100 Mbits/sec 0.091 ms 1242/9898 (13%) +[UE3] [2025-07-19 14:08:35] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1366/10175 (13%) +[UE3] [2025-07-19 14:08:36] [ 5] 25.00-26.00 sec 11.6 MBytes 97.0 Mbits/sec 0.095 ms 1246/9620 (13%) +[UE3] [2025-07-19 14:08:37] [ 5] 26.00-27.00 sec 13.2 MBytes 111 Mbits/sec 0.080 ms 2091/11635 (18%) +[UE3] [2025-07-19 14:08:38] [ 5] 27.00-28.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1154/9970 (12%) +[UE3] [2025-07-19 14:08:39] [ 5] 28.00-29.00 sec 12.4 MBytes 104 Mbits/sec 0.096 ms 1268/10227 (12%) +[UE3] [2025-07-19 14:08:40] [ 5] 29.00-30.00 sec 12.8 MBytes 107 Mbits/sec 0.081 ms 1422/10674 (13%) +[UE3] [2025-07-19 14:08:41] [ 5] 30.00-31.00 sec 11.8 MBytes 98.6 Mbits/sec 0.103 ms 1268/9784 (13%) +[UE3] [2025-07-19 14:08:42] [ 5] 31.00-32.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1689/10498 (16%) +[UE3] [2025-07-19 14:08:43] [ 5] 32.00-33.00 sec 11.7 MBytes 98.5 Mbits/sec 0.102 ms 1357/9860 (14%) +[UE3] [2025-07-19 14:08:44] [ 5] 33.00-34.00 sec 13.0 MBytes 109 Mbits/sec 0.083 ms 2126/11541 (18%) +[UE3] [2025-07-19 14:08:45] [ 5] 34.00-35.00 sec 12.1 MBytes 101 Mbits/sec 0.124 ms 1295/10032 (13%) +[UE3] [2025-07-19 14:08:46] [ 5] 35.00-36.00 sec 11.7 MBytes 98.0 Mbits/sec 0.781 ms 1288/9752 (13%) +[UE3] [2025-07-19 14:08:47] [ 5] 36.00-37.00 sec 12.3 MBytes 103 Mbits/sec 0.105 ms 1964/10896 (18%) +[UE3] [2025-07-19 14:08:48] [ 5] 37.00-38.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1372/10333 (13%) +[UE3] [2025-07-19 14:08:49] [ 5] 38.00-39.00 sec 13.0 MBytes 109 Mbits/sec 0.087 ms 1362/10752 (13%) +[UE3] [2025-07-19 14:08:50] [ 5] 39.00-40.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1182/10001 (12%) +[UE3] [2025-07-19 14:08:51] [ 5] 40.00-41.00 sec 12.4 MBytes 104 Mbits/sec 0.099 ms 1381/10341 (13%) +[UE3] [2025-07-19 14:08:52] [ 5] 41.00-42.00 sec 12.2 MBytes 102 Mbits/sec 0.094 ms 1341/10147 (13%) +[UE3] [2025-07-19 14:08:53] [ 5] 42.00-43.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1513/10474 (14%) +[UE3] [2025-07-19 14:08:54] [ 5] 43.00-44.00 sec 13.0 MBytes 109 Mbits/sec 0.077 ms 1284/10689 (12%) +[UE3] [2025-07-19 14:08:55] [ 5] 44.00-45.00 sec 12.4 MBytes 104 Mbits/sec 0.092 ms 1359/10316 (13%) +[UE3] [2025-07-19 14:08:56] [ 5] 45.00-46.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1434/10236 (14%) +[UE3] [2025-07-19 14:08:57] [ 5] 46.00-47.00 sec 12.4 MBytes 104 Mbits/sec 0.107 ms 1365/10333 (13%) +[UE3] [2025-07-19 14:08:58] [ 5] 47.00-48.00 sec 12.2 MBytes 103 Mbits/sec 0.254 ms 1171/10025 (12%) +[UE3] [2025-07-19 14:08:59] [ 5] 48.00-49.00 sec 12.9 MBytes 108 Mbits/sec 0.081 ms 1411/10760 (13%) +[UE3] [2025-07-19 14:09:00] [ 5] 49.00-50.00 sec 12.4 MBytes 104 Mbits/sec 0.069 ms 1382/10328 (13%) +[UE3] [2025-07-19 14:09:01] [ 5] 50.00-51.00 sec 12.4 MBytes 104 Mbits/sec 0.061 ms 1406/10372 (14%) +[UE3] [2025-07-19 14:09:02] [ 5] 51.00-52.00 sec 12.8 MBytes 107 Mbits/sec 0.098 ms 1231/10489 (12%) +[UE3] [2025-07-19 14:09:03] [ 5] 52.00-53.00 sec 11.7 MBytes 98.5 Mbits/sec 0.081 ms 1196/9699 (12%) +[UE3] [2025-07-19 14:09:04] [ 5] 53.00-54.00 sec 11.0 MBytes 92.0 Mbits/sec 0.121 ms 1615/9554 (17%) +[UE3] [2025-07-19 14:09:05] [ 5] 54.00-55.00 sec 13.0 MBytes 109 Mbits/sec 0.113 ms 2454/11852 (21%) +[UE3] [2025-07-19 14:09:06] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1372/10202 (13%) +[UE3] [2025-07-19 14:09:07] [ 5] 56.00-57.00 sec 12.0 MBytes 101 Mbits/sec 0.123 ms 1427/10148 (14%) +[UE3] [2025-07-19 14:09:08] [ 5] 57.00-58.00 sec 11.1 MBytes 92.8 Mbits/sec 0.089 ms 1336/9346 (14%) +[UE3] [2025-07-19 14:09:09] [ 5] 58.00-59.00 sec 12.4 MBytes 104 Mbits/sec 0.123 ms 2314/11265 (21%) +[UE3] [2025-07-19 14:09:10] [ 5] 59.00-60.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1329/10288 (13%) +[UE3] [2025-07-19 14:09:11] [ 5] 60.00-61.00 sec 13.0 MBytes 109 Mbits/sec 0.083 ms 1536/10933 (14%) +[UE3] [2025-07-19 14:09:12] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1188/10001 (12%) +[UE3] [2025-07-19 14:09:13] [ 5] 62.00-63.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1366/10314 (13%) +[UE3] [2025-07-19 14:09:14] [ 5] 63.00-64.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1323/10281 (13%) +[UE3] [2025-07-19 14:09:15] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1898/10719 (18%) +[UE3] [2025-07-19 14:09:16] [ 5] 65.00-66.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1424/10379 (14%) +[UE3] [2025-07-19 14:09:17] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1197/10007 (12%) +[UE3] [2025-07-19 14:09:18] [ 5] 67.00-68.00 sec 11.8 MBytes 98.6 Mbits/sec 0.073 ms 1296/9808 (13%) +[UE3] [2025-07-19 14:09:19] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 2300/11134 (21%) +[UE3] [2025-07-19 14:09:20] [ 5] 69.00-70.00 sec 12.6 MBytes 105 Mbits/sec 0.071 ms 1285/10383 (12%) +[UE3] [2025-07-19 14:09:21] [ 5] 70.00-71.00 sec 12.8 MBytes 107 Mbits/sec 0.080 ms 1243/10495 (12%) +[UE3] [2025-07-19 14:09:22] [ 5] 71.00-72.00 sec 12.3 MBytes 104 Mbits/sec 0.104 ms 1361/10302 (13%) +[UE3] [2025-07-19 14:09:23] [ 5] 72.00-73.00 sec 12.3 MBytes 103 Mbits/sec 0.120 ms 1100/10025 (11%) +[UE3] [2025-07-19 14:09:24] [ 5] 73.00-74.00 sec 12.9 MBytes 108 Mbits/sec 0.114 ms 1436/10742 (13%) +[UE3] [2025-07-19 14:09:25] [ 5] 74.00-75.00 sec 11.5 MBytes 96.7 Mbits/sec 0.119 ms 1307/9653 (14%) +[UE3] [2025-07-19 14:09:26] [ 5] 75.00-76.00 sec 12.4 MBytes 104 Mbits/sec 0.114 ms 1600/10567 (15%) +[UE3] [2025-07-19 14:09:27] [ 5] 76.00-77.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1656/10471 (16%) +[UE3] [2025-07-19 14:09:28] [ 5] 77.00-78.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1348/10294 (13%) +[UE3] [2025-07-19 14:09:29] [ 5] 78.00-79.00 sec 11.6 MBytes 97.1 Mbits/sec 0.116 ms 2346/10727 (22%) +[UE3] [2025-07-19 14:09:30] [ 5] 79.00-80.00 sec 12.4 MBytes 104 Mbits/sec 0.069 ms 1164/10120 (12%) +[UE3] [2025-07-19 14:09:31] [ 5] 80.00-81.00 sec 13.0 MBytes 109 Mbits/sec 0.124 ms 1612/11001 (15%) +[UE3] [2025-07-19 14:09:32] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1073/9901 (11%) +[UE3] [2025-07-19 14:09:33] [ 5] 82.00-83.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1271/10225 (12%) +[UE3] [2025-07-19 14:09:34] [ 5] 83.00-84.00 sec 12.4 MBytes 104 Mbits/sec 0.112 ms 1328/10280 (13%) +[UE3] [2025-07-19 14:09:35] [ 5] 84.00-85.00 sec 11.6 MBytes 97.0 Mbits/sec 0.087 ms 1225/9600 (13%) +[UE3] [2025-07-19 14:09:36] [ 5] 85.00-86.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 2362/11174 (21%) +[UE3] [2025-07-19 14:09:37] [ 5] 86.00-87.00 sec 12.4 MBytes 104 Mbits/sec 0.118 ms 1422/10396 (14%) +[UE3] [2025-07-19 14:09:38] [ 5] 87.00-88.00 sec 12.3 MBytes 103 Mbits/sec 0.081 ms 1742/10676 (16%) +[UE3] [2025-07-19 14:09:39] [ 5] 88.00-89.00 sec 12.2 MBytes 102 Mbits/sec 0.106 ms 1238/10064 (12%) +[UE3] [2025-07-19 14:09:40] [ 5] 89.00-90.00 sec 12.4 MBytes 104 Mbits/sec 0.126 ms 1255/10222 (12%) +[UE3] [2025-07-19 14:09:41] [ 5] 90.00-91.00 sec 13.0 MBytes 109 Mbits/sec 0.091 ms 1416/10803 (13%) +[UE3] [2025-07-19 14:09:42] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1173/9985 (12%) +[UE3] [2025-07-19 14:09:43] [ 5] 92.00-93.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1349/10294 (13%) +[UE3] [2025-07-19 14:09:44] [ 5] 93.00-94.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1375/10201 (13%) +[UE3] [2025-07-19 14:09:45] [ 5] 94.00-95.00 sec 12.4 MBytes 104 Mbits/sec 0.122 ms 1350/10306 (13%) +[UE3] [2025-07-19 14:09:46] [ 5] 95.00-96.00 sec 13.0 MBytes 109 Mbits/sec 0.077 ms 1495/10885 (14%) +[UE3] [2025-07-19 14:09:47] [ 5] 96.00-97.00 sec 12.4 MBytes 104 Mbits/sec 0.070 ms 1317/10271 (13%) +[UE3] [2025-07-19 14:09:48] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1378/10199 (14%) +[UE3] [2025-07-19 14:09:49] [ 5] 98.00-99.00 sec 12.4 MBytes 104 Mbits/sec 0.117 ms 1669/10621 (16%) +[UE3] [2025-07-19 14:09:51] [ 5] 99.00-100.00 sec 13.0 MBytes 109 Mbits/sec 0.074 ms 1227/10625 (12%) +[UE3] [2025-07-19 14:09:52] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.240 ms 0/2713 (0%) +[UE3] [2025-07-19 14:09:53] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2592 (0%) +[UE3] [2025-07-19 14:09:54] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2589 (0%) +[UE3] [2025-07-19 14:09:55] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.297 ms 0/2590 (0%) +[UE3] [2025-07-19 14:09:56] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE3] [2025-07-19 14:09:57] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE3] [2025-07-19 14:09:58] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE3] [2025-07-19 14:09:59] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.260 ms 0/2588 (0%) +[UE3] [2025-07-19 14:10:00] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2592 (0%) +[UE3] [2025-07-19 14:10:01] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:02] [ 5] 10.00-11.00 sec 3.57 MBytes 30.0 Mbits/sec 0.172 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:03] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2591 (0%) +[UE3] [2025-07-19 14:10:04] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2591 (0%) +[UE3] [2025-07-19 14:10:05] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:06] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.118 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:07] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:08] [ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 0.273 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:09] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2593 (0%) +[UE3] [2025-07-19 14:10:10] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:11] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2591 (0%) +[UE3] [2025-07-19 14:10:12] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:13] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:14] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:15] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.136 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:16] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2593 (0%) +[UE3] [2025-07-19 14:10:17] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:18] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:19] [ 5] 27.00-28.00 sec 3.57 MBytes 30.0 Mbits/sec 0.305 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:20] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2592 (0%) +[UE3] [2025-07-19 14:10:21] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:22] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:23] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:24] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:25] [ 5] 33.00-34.00 sec 3.57 MBytes 29.9 Mbits/sec 0.318 ms 0/2585 (0%) +[UE3] [2025-07-19 14:10:26] [ 5] 34.00-35.00 sec 3.58 MBytes 30.1 Mbits/sec 0.217 ms 0/2595 (0%) +[UE3] [2025-07-19 14:10:27] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.321 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:28] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:29] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2593 (0%) +[UE3] [2025-07-19 14:10:30] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:31] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:32] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.146 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:33] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2593 (0%) +[UE3] [2025-07-19 14:10:34] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:35] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.253 ms 0/2586 (0%) +[UE3] [2025-07-19 14:10:36] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2593 (0%) +[UE3] [2025-07-19 14:10:37] [ 5] 45.00-46.00 sec 3.57 MBytes 30.0 Mbits/sec 0.240 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:38] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2591 (0%) +[UE3] [2025-07-19 14:10:39] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:40] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2592 (0%) +[UE3] [2025-07-19 14:10:41] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:42] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2591 (0%) +[UE3] [2025-07-19 14:10:43] [ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 0.200 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:44] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2593 (0%) +[UE3] [2025-07-19 14:10:45] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:46] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.298 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:47] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.320 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:48] [ 5] 56.00-57.00 sec 3.57 MBytes 30.0 Mbits/sec 0.203 ms 0/2588 (0%) +[UE3] [2025-07-19 14:10:49] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2591 (0%) +[UE3] [2025-07-19 14:10:50] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:51] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.130 ms 0/2593 (0%) +[UE3] [2025-07-19 14:10:52] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.249 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:53] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2591 (0%) +[UE3] [2025-07-19 14:10:54] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE3] [2025-07-19 14:10:55] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2592 (0%) +[UE3] [2025-07-19 14:10:56] [ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 0.231 ms 0/2587 (0%) +[UE3] [2025-07-19 14:10:57] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2590 (0%) +[UE3] [2025-07-19 14:10:58] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.126 ms 0/2592 (0%) +[UE3] [2025-07-19 14:10:59] [ 5] 67.00-68.00 sec 3.57 MBytes 30.0 Mbits/sec 0.199 ms 0/2587 (0%) +[UE3] [2025-07-19 14:11:00] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:01] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2593 (0%) +[UE3] [2025-07-19 14:11:02] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:11:03] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:04] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.198 ms 0/2588 (0%) +[UE3] [2025-07-19 14:11:05] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2592 (0%) +[UE3] [2025-07-19 14:11:06] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2589 (0%) +[UE3] [2025-07-19 14:11:07] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.133 ms 0/2588 (0%) +[UE3] [2025-07-19 14:11:08] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.271 ms 0/2587 (0%) +[UE3] [2025-07-19 14:11:09] [ 5] 77.00-78.00 sec 3.58 MBytes 30.1 Mbits/sec 0.149 ms 0/2595 (0%) +[UE3] [2025-07-19 14:11:10] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.207 ms 0/2587 (0%) +[UE3] [2025-07-19 14:11:11] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2592 (0%) +[UE3] [2025-07-19 14:11:12] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:13] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:14] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.138 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:15] [ 5] 83.00-84.00 sec 3.57 MBytes 30.0 Mbits/sec 0.306 ms 0/2587 (0%) +[UE3] [2025-07-19 14:11:16] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2591 (0%) +[UE3] [2025-07-19 14:11:17] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2591 (0%) +[UE3] [2025-07-19 14:11:18] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:19] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.161 ms 0/2587 (0%) +[UE3] [2025-07-19 14:11:20] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2592 (0%) +[UE3] [2025-07-19 14:11:21] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:22] [ 5] 90.00-91.00 sec 3.57 MBytes 30.0 Mbits/sec 0.235 ms 0/2587 (0%) +[UE3] [2025-07-19 14:11:23] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:24] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2592 (0%) +[UE3] [2025-07-19 14:11:25] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:26] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:27] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE3] [2025-07-19 14:11:28] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.153 ms 0/2587 (0%) +[UE3] [2025-07-19 14:11:29] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2592 (0%) +[UE3] [2025-07-19 14:11:30] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.244 ms 0/2588 (0%) +[UE3] [2025-07-19 14:11:31] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2592 (0%) +[UE3] [2025-07-19 14:11:33] [ 5] 0.00-1.00 sec 8.86 MBytes 74.4 Mbits/sec 0.163 ms 0/6419 (0%) +[UE3] [2025-07-19 14:11:34] [ 5] 1.00-2.00 sec 12.4 MBytes 104 Mbits/sec 0.178 ms 0/9000 (0%) +[UE3] [2025-07-19 14:11:35] [ 5] 2.00-3.00 sec 11.1 MBytes 93.4 Mbits/sec 0.072 ms 842/8906 (9.5%) +[UE3] [2025-07-19 14:11:36] [ 5] 3.00-4.00 sec 12.4 MBytes 104 Mbits/sec 0.144 ms 1461/10436 (14%) +[UE3] [2025-07-19 14:11:37] [ 5] 4.00-5.00 sec 12.4 MBytes 104 Mbits/sec 0.080 ms 1598/10546 (15%) +[UE3] [2025-07-19 14:11:38] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1379/10183 (14%) +[UE3] [2025-07-19 14:11:39] [ 5] 6.00-7.00 sec 11.6 MBytes 97.2 Mbits/sec 0.108 ms 1195/9582 (12%) +[UE3] [2025-07-19 14:11:40] [ 5] 7.00-8.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 2280/11230 (20%) +[UE3] [2025-07-19 14:11:41] [ 5] 8.00-9.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1530/10489 (15%) +[UE3] [2025-07-19 14:11:42] [ 5] 9.00-10.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1467/10285 (14%) +[UE3] [2025-07-19 14:11:43] [ 5] 10.00-11.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1353/10303 (13%) +[UE3] [2025-07-19 14:11:44] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.100 ms 1382/10204 (14%) +[UE3] [2025-07-19 14:11:45] [ 5] 12.00-13.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1385/10340 (13%) +[UE3] [2025-07-19 14:11:46] [ 5] 13.00-14.00 sec 12.4 MBytes 104 Mbits/sec 0.071 ms 1445/10395 (14%) +[UE3] [2025-07-19 14:11:47] [ 5] 14.00-15.00 sec 12.2 MBytes 102 Mbits/sec 0.195 ms 1474/10289 (14%) +[UE3] [2025-07-19 14:11:48] [ 5] 15.00-16.00 sec 12.4 MBytes 104 Mbits/sec 0.093 ms 1433/10395 (14%) +[UE3] [2025-07-19 14:11:49] [ 5] 16.00-17.00 sec 11.2 MBytes 93.6 Mbits/sec 0.125 ms 1314/9396 (14%) +[UE3] [2025-07-19 14:11:50] [ 5] 17.00-18.00 sec 12.8 MBytes 107 Mbits/sec 0.115 ms 2563/11804 (22%) +[UE3] [2025-07-19 14:11:51] [ 5] 18.00-19.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1384/10191 (14%) +[UE3] [2025-07-19 14:11:52] [ 5] 19.00-20.00 sec 11.6 MBytes 97.0 Mbits/sec 0.118 ms 1345/9721 (14%) +[UE3] [2025-07-19 14:11:53] [ 5] 20.00-21.00 sec 11.8 MBytes 98.7 Mbits/sec 0.077 ms 1739/10262 (17%) +[UE3] [2025-07-19 14:11:54] [ 5] 21.00-22.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1967/10766 (18%) +[UE3] [2025-07-19 14:11:55] [ 5] 22.00-23.00 sec 12.6 MBytes 106 Mbits/sec 0.113 ms 1361/10506 (13%) +[UE3] [2025-07-19 14:11:56] [ 5] 23.00-24.00 sec 12.7 MBytes 107 Mbits/sec 0.110 ms 1424/10636 (13%) +[UE3] [2025-07-19 14:11:57] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1400/10222 (14%) +[UE3] [2025-07-19 14:11:58] [ 5] 25.00-26.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1333/10285 (13%) +[UE3] [2025-07-19 14:11:59] [ 5] 26.00-27.00 sec 11.6 MBytes 97.0 Mbits/sec 0.118 ms 1432/9803 (15%) +[UE3] [2025-07-19 14:12:00] [ 5] 27.00-28.00 sec 12.4 MBytes 104 Mbits/sec 0.094 ms 2220/11172 (20%) +[UE3] [2025-07-19 14:12:01] [ 5] 28.00-29.00 sec 11.0 MBytes 92.0 Mbits/sec 0.101 ms 1014/8958 (11%) +[UE3] [2025-07-19 14:12:02] [ 5] 29.00-30.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 2433/11234 (22%) +[UE3] [2025-07-19 14:12:03] [ 5] 30.00-31.00 sec 12.4 MBytes 104 Mbits/sec 0.117 ms 1389/10353 (13%) +[UE3] [2025-07-19 14:12:04] [ 5] 31.00-32.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1710/10665 (16%) +[UE3] [2025-07-19 14:12:05] [ 5] 32.00-33.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1448/10256 (14%) +[UE3] [2025-07-19 14:12:06] [ 5] 33.00-34.00 sec 12.4 MBytes 104 Mbits/sec 0.072 ms 1417/10381 (14%) +[UE3] [2025-07-19 14:12:07] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1509/10321 (15%) +[UE3] [2025-07-19 14:12:08] [ 5] 35.00-36.00 sec 13.0 MBytes 109 Mbits/sec 0.092 ms 1235/10635 (12%) +[UE3] [2025-07-19 14:12:09] [ 5] 36.00-37.00 sec 10.3 MBytes 86.7 Mbits/sec 0.085 ms 1155/8638 (13%) +[UE3] [2025-07-19 14:12:10] [ 5] 37.00-38.00 sec 13.0 MBytes 109 Mbits/sec 0.067 ms 2765/12158 (23%) +[UE3] [2025-07-19 14:12:11] [ 5] 38.00-39.00 sec 12.4 MBytes 104 Mbits/sec 0.094 ms 1361/10319 (13%) +[UE3] [2025-07-19 14:12:12] [ 5] 39.00-40.00 sec 10.7 MBytes 90.2 Mbits/sec 0.114 ms 1030/8813 (12%) +[UE3] [2025-07-19 14:12:13] [ 5] 40.00-41.00 sec 13.0 MBytes 109 Mbits/sec 0.120 ms 2420/11820 (20%) +[UE3] [2025-07-19 14:12:14] [ 5] 41.00-42.00 sec 12.4 MBytes 104 Mbits/sec 0.111 ms 1244/10204 (12%) +[UE3] [2025-07-19 14:12:15] [ 5] 42.00-43.00 sec 12.4 MBytes 104 Mbits/sec 0.089 ms 1547/10507 (15%) +[UE3] [2025-07-19 14:12:16] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1314/10121 (13%) +[UE3] [2025-07-19 14:12:17] [ 5] 44.00-45.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1374/10333 (13%) +[UE3] [2025-07-19 14:12:18] [ 5] 45.00-46.00 sec 13.0 MBytes 109 Mbits/sec 0.077 ms 1543/10949 (14%) +[UE3] [2025-07-19 14:12:19] [ 5] 46.00-47.00 sec 11.0 MBytes 91.9 Mbits/sec 0.079 ms 1032/8964 (12%) +[UE3] [2025-07-19 14:12:20] [ 5] 47.00-48.00 sec 11.5 MBytes 96.6 Mbits/sec 0.091 ms 2952/11294 (26%) +[UE3] [2025-07-19 14:12:21] [ 5] 48.00-49.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1393/10220 (14%) +[UE3] [2025-07-19 14:12:22] [ 5] 49.00-50.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1374/10345 (13%) +[UE3] [2025-07-19 14:12:23] [ 5] 50.00-51.00 sec 13.0 MBytes 109 Mbits/sec 0.089 ms 1462/10845 (13%) +[UE3] [2025-07-19 14:12:24] [ 5] 51.00-52.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1290/10251 (13%) +[UE3] [2025-07-19 14:12:25] [ 5] 52.00-53.00 sec 11.6 MBytes 97.1 Mbits/sec 0.117 ms 1374/9757 (14%) +[UE3] [2025-07-19 14:12:26] [ 5] 53.00-54.00 sec 12.1 MBytes 102 Mbits/sec 0.104 ms 1633/10424 (16%) +[UE3] [2025-07-19 14:12:27] [ 5] 54.00-55.00 sec 11.8 MBytes 98.9 Mbits/sec 0.096 ms 1452/9987 (15%) +[UE3] [2025-07-19 14:12:28] [ 5] 55.00-56.00 sec 12.4 MBytes 104 Mbits/sec 0.093 ms 2034/10985 (19%) +[UE3] [2025-07-19 14:12:29] [ 5] 56.00-57.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1480/10300 (14%) +[UE3] [2025-07-19 14:12:30] [ 5] 57.00-58.00 sec 11.5 MBytes 96.8 Mbits/sec 0.075 ms 1658/10014 (17%) +[UE3] [2025-07-19 14:12:31] [ 5] 58.00-59.00 sec 12.4 MBytes 104 Mbits/sec 0.109 ms 1937/10891 (18%) +[UE3] [2025-07-19 14:12:32] [ 5] 59.00-60.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1429/10254 (14%) +[UE3] [2025-07-19 14:12:33] [ 5] 60.00-61.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1274/10222 (12%) +[UE3] [2025-07-19 14:12:34] [ 5] 61.00-62.00 sec 13.0 MBytes 109 Mbits/sec 0.087 ms 1457/10865 (13%) +[UE3] [2025-07-19 14:12:35] [ 5] 62.00-63.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1244/10060 (12%) +[UE3] [2025-07-19 14:12:36] [ 5] 63.00-64.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1299/10244 (13%) +[UE3] [2025-07-19 14:12:37] [ 5] 64.00-65.00 sec 12.4 MBytes 104 Mbits/sec 0.123 ms 1615/10581 (15%) +[UE3] [2025-07-19 14:12:38] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.204 ms 1260/10076 (13%) +[UE3] [2025-07-19 14:12:39] [ 5] 66.00-67.00 sec 12.6 MBytes 106 Mbits/sec 0.142 ms 1331/10465 (13%) +[UE3] [2025-07-19 14:12:40] [ 5] 67.00-68.00 sec 11.9 MBytes 99.9 Mbits/sec 0.117 ms 1406/10029 (14%) +[UE3] [2025-07-19 14:12:41] [ 5] 68.00-69.00 sec 13.0 MBytes 109 Mbits/sec 0.073 ms 1521/10921 (14%) +[UE3] [2025-07-19 14:12:42] [ 5] 69.00-70.00 sec 12.4 MBytes 104 Mbits/sec 0.120 ms 1324/10284 (13%) +[UE3] [2025-07-19 14:12:43] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.094 ms 1413/10230 (14%) +[UE3] [2025-07-19 14:12:44] [ 5] 71.00-72.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1204/10154 (12%) +[UE3] [2025-07-19 14:12:45] [ 5] 72.00-73.00 sec 12.4 MBytes 104 Mbits/sec 0.071 ms 1361/10320 (13%) +[UE3] [2025-07-19 14:12:46] [ 5] 73.00-74.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1465/10283 (14%) +[UE3] [2025-07-19 14:12:47] [ 5] 74.00-75.00 sec 12.4 MBytes 104 Mbits/sec 0.116 ms 1579/10529 (15%) +[UE3] [2025-07-19 14:12:48] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.100 ms 1260/10082 (12%) +[UE3] [2025-07-19 14:12:49] [ 5] 76.00-77.00 sec 12.4 MBytes 104 Mbits/sec 0.092 ms 1760/10715 (16%) +[UE3] [2025-07-19 14:12:50] [ 5] 77.00-78.00 sec 12.4 MBytes 104 Mbits/sec 0.115 ms 1404/10354 (14%) +[UE3] [2025-07-19 14:12:51] [ 5] 78.00-79.00 sec 13.0 MBytes 109 Mbits/sec 0.084 ms 1388/10778 (13%) +[UE3] [2025-07-19 14:12:52] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.129 ms 1292/10118 (13%) +[UE3] [2025-07-19 14:12:53] [ 5] 80.00-81.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1354/10301 (13%) +[UE3] [2025-07-19 14:12:54] [ 5] 81.00-82.00 sec 12.4 MBytes 104 Mbits/sec 0.059 ms 1333/10287 (13%) +[UE3] [2025-07-19 14:12:55] [ 5] 82.00-83.00 sec 10.8 MBytes 90.2 Mbits/sec 0.118 ms 1225/9015 (14%) +[UE3] [2025-07-19 14:12:56] [ 5] 83.00-84.00 sec 11.0 MBytes 91.9 Mbits/sec 0.085 ms 2876/10813 (27%) +[UE3] [2025-07-19 14:12:57] [ 5] 84.00-85.00 sec 11.8 MBytes 98.7 Mbits/sec 0.092 ms 2239/10759 (21%) +[UE3] [2025-07-19 14:12:58] [ 5] 85.00-86.00 sec 11.5 MBytes 96.9 Mbits/sec 0.090 ms 2247/10609 (21%) +[UE3] [2025-07-19 14:12:59] [ 5] 86.00-87.00 sec 10.9 MBytes 91.7 Mbits/sec 0.129 ms 1844/9763 (19%) +[UE3] [2025-07-19 14:13:00] [ 5] 87.00-88.00 sec 9.56 MBytes 80.2 Mbits/sec 0.100 ms 2096/9020 (23%) +[UE3] [2025-07-19 14:13:01] [ 5] 88.00-89.00 sec 12.1 MBytes 102 Mbits/sec 0.103 ms 3696/12492 (30%) +[UE3] [2025-07-19 14:13:02] [ 5] 89.00-90.00 sec 11.8 MBytes 98.7 Mbits/sec 0.067 ms 1617/10134 (16%) +[UE3] [2025-07-19 14:13:03] [ 5] 90.00-91.00 sec 11.6 MBytes 97.0 Mbits/sec 0.117 ms 1746/10123 (17%) +[UE3] [2025-07-19 14:13:04] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.128 ms 1735/10555 (16%) +[UE3] [2025-07-19 14:13:05] [ 5] 92.00-93.00 sec 12.4 MBytes 104 Mbits/sec 0.082 ms 1860/10816 (17%) +[UE3] [2025-07-19 14:13:06] [ 5] 93.00-94.00 sec 11.5 MBytes 96.8 Mbits/sec 0.073 ms 1464/9818 (15%) +[UE3] [2025-07-19 14:13:07] [ 5] 94.00-95.00 sec 12.4 MBytes 104 Mbits/sec 0.110 ms 1731/10705 (16%) +[UE3] [2025-07-19 14:13:08] [ 5] 95.00-96.00 sec 11.5 MBytes 96.9 Mbits/sec 0.113 ms 1779/10141 (18%) +[UE3] [2025-07-19 14:13:09] [ 5] 96.00-97.00 sec 12.2 MBytes 103 Mbits/sec 0.105 ms 1825/10682 (17%) +[UE3] [2025-07-19 14:13:10] [ 5] 97.00-98.00 sec 11.7 MBytes 98.1 Mbits/sec 0.130 ms 1564/10034 (16%) +[UE3] [2025-07-19 14:13:11] [ 5] 98.00-99.00 sec 11.0 MBytes 91.9 Mbits/sec 0.087 ms 2640/10573 (25%) +[UE3] [2025-07-19 14:13:13] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1714/10534 (16%) +[UE3] [2025-07-19 14:13:14] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.221 ms 0/2712 (0%) +[UE3] [2025-07-19 14:13:15] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:16] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.287 ms 0/2587 (0%) +[UE3] [2025-07-19 14:13:17] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.352 ms 0/2593 (0%) +[UE3] [2025-07-19 14:13:18] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.111 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:20] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:20] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2591 (0%) +[UE3] [2025-07-19 14:13:21] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:22] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.345 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:23] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:25] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2593 (0%) +[UE3] [2025-07-19 14:13:25] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.198 ms 0/2587 (0%) +[UE3] [2025-07-19 14:13:26] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:27] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:29] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:29] [ 5] 15.00-16.00 sec 3.57 MBytes 30.0 Mbits/sec 0.171 ms 0/2587 (0%) +[UE3] [2025-07-19 14:13:30] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2593 (0%) +[UE3] [2025-07-19 14:13:32] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2587 (0%) +[UE3] [2025-07-19 14:13:32] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.291 ms 0/2588 (0%) +[UE3] [2025-07-19 14:13:33] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2594 (0%) +[UE3] [2025-07-19 14:13:34] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:35] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:36] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2591 (0%) +[UE3] [2025-07-19 14:13:37] [ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 0.117 ms 0/2588 (0%) +[UE3] [2025-07-19 14:13:39] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:39] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:40] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:41] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:42] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:43] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:44] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2587 (0%) +[UE3] [2025-07-19 14:13:45] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.306 ms 0/2592 (0%) +[UE3] [2025-07-19 14:13:46] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:47] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:48] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2591 (0%) +[UE3] [2025-07-19 14:13:49] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:50] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:51] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:52] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:53] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:54] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:56] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:56] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2590 (0%) +[UE3] [2025-07-19 14:13:57] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2591 (0%) +[UE3] [2025-07-19 14:13:58] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2589 (0%) +[UE3] [2025-07-19 14:13:59] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:00] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:01] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.157 ms 0/2588 (0%) +[UE3] [2025-07-19 14:14:02] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2592 (0%) +[UE3] [2025-07-19 14:14:03] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:04] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:05] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:06] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2591 (0%) +[UE3] [2025-07-19 14:14:07] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.144 ms 0/2588 (0%) +[UE3] [2025-07-19 14:14:08] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2591 (0%) +[UE3] [2025-07-19 14:14:09] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:11] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:11] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:13] [ 5] 58.00-59.00 sec 3.57 MBytes 30.0 Mbits/sec 0.287 ms 0/2586 (0%) +[UE3] [2025-07-19 14:14:14] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.100 ms 0/2594 (0%) +[UE3] [2025-07-19 14:14:14] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:15] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:16] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:17] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:18] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:19] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:20] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:21] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:22] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2592 (0%) +[UE3] [2025-07-19 14:14:23] [ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 0.273 ms 0/2588 (0%) +[UE3] [2025-07-19 14:14:24] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:26] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:26] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:27] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:28] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:29] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.137 ms 0/2587 (0%) +[UE3] [2025-07-19 14:14:30] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2593 (0%) +[UE3] [2025-07-19 14:14:31] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.340 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:32] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:33] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:34] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:35] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:37] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:37] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:38] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.133 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:39] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:40] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:41] [ 5] 87.00-88.00 sec 3.57 MBytes 30.0 Mbits/sec 0.222 ms 0/2587 (0%) +[UE3] [2025-07-19 14:14:42] [ 5] 88.00-89.00 sec 3.57 MBytes 30.0 Mbits/sec 0.229 ms 0/2588 (0%) +[UE3] [2025-07-19 14:14:43] [ 5] 89.00-90.00 sec 3.58 MBytes 30.1 Mbits/sec 0.151 ms 0/2595 (0%) +[UE3] [2025-07-19 14:14:44] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:45] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:46] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:47] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:48] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:49] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:50] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2593 (0%) +[UE3] [2025-07-19 14:14:51] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.246 ms 0/2587 (0%) +[UE3] [2025-07-19 14:14:52] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2589 (0%) +[UE3] [2025-07-19 14:14:54] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2590 (0%) +[UE3] [2025-07-19 14:14:56] [ 5] 0.00-1.00 sec 9.05 MBytes 75.9 Mbits/sec 0.205 ms 0/6551 (0%) +[UE3] [2025-07-19 14:14:57] [ 5] 1.00-2.00 sec 12.1 MBytes 101 Mbits/sec 0.204 ms 0/8735 (0%) +[UE3] [2025-07-19 14:14:58] [ 5] 2.00-3.00 sec 11.1 MBytes 93.4 Mbits/sec 0.081 ms 758/8820 (8.6%) +[UE3] [2025-07-19 14:14:59] [ 5] 3.00-4.00 sec 12.1 MBytes 101 Mbits/sec 0.067 ms 1563/10295 (15%) +[UE3] [2025-07-19 14:15:00] [ 5] 4.00-5.00 sec 11.9 MBytes 99.6 Mbits/sec 0.067 ms 1627/10229 (16%) +[UE3] [2025-07-19 14:15:01] [ 5] 5.00-6.00 sec 12.6 MBytes 106 Mbits/sec 0.097 ms 1698/10841 (16%) +[UE3] [2025-07-19 14:15:02] [ 5] 6.00-7.00 sec 12.1 MBytes 101 Mbits/sec 0.083 ms 1500/10239 (15%) +[UE3] [2025-07-19 14:15:03] [ 5] 7.00-8.00 sec 12.1 MBytes 101 Mbits/sec 0.093 ms 1440/10189 (14%) +[UE3] [2025-07-19 14:15:04] [ 5] 8.00-9.00 sec 10.5 MBytes 87.8 Mbits/sec 0.106 ms 1489/9065 (16%) +[UE3] [2025-07-19 14:15:05] [ 5] 9.00-10.00 sec 12.6 MBytes 106 Mbits/sec 0.109 ms 2669/11817 (23%) +[UE3] [2025-07-19 14:15:06] [ 5] 10.00-11.00 sec 12.1 MBytes 101 Mbits/sec 0.075 ms 1461/10189 (14%) +[UE3] [2025-07-19 14:15:07] [ 5] 11.00-12.00 sec 12.1 MBytes 101 Mbits/sec 0.085 ms 1621/10357 (16%) +[UE3] [2025-07-19 14:15:08] [ 5] 12.00-13.00 sec 12.6 MBytes 106 Mbits/sec 0.084 ms 1534/10681 (14%) +[UE3] [2025-07-19 14:15:09] [ 5] 13.00-14.00 sec 11.5 MBytes 96.3 Mbits/sec 0.119 ms 1500/9814 (15%) +[UE3] [2025-07-19 14:15:10] [ 5] 14.00-15.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1836/10846 (17%) +[UE3] [2025-07-19 14:15:11] [ 5] 15.00-16.00 sec 11.9 MBytes 99.4 Mbits/sec 0.105 ms 1531/10114 (15%) +[UE3] [2025-07-19 14:15:12] [ 5] 16.00-17.00 sec 12.7 MBytes 106 Mbits/sec 0.112 ms 1489/10657 (14%) +[UE3] [2025-07-19 14:15:13] [ 5] 17.00-18.00 sec 12.1 MBytes 101 Mbits/sec 0.109 ms 1485/10224 (15%) +[UE3] [2025-07-19 14:15:14] [ 5] 18.00-19.00 sec 11.8 MBytes 99.3 Mbits/sec 0.082 ms 1537/10106 (15%) +[UE3] [2025-07-19 14:15:15] [ 5] 19.00-20.00 sec 12.1 MBytes 101 Mbits/sec 0.088 ms 1448/10181 (14%) +[UE3] [2025-07-19 14:15:16] [ 5] 20.00-21.00 sec 12.1 MBytes 101 Mbits/sec 0.110 ms 1806/10553 (17%) +[UE3] [2025-07-19 14:15:17] [ 5] 21.00-22.00 sec 12.7 MBytes 106 Mbits/sec 0.070 ms 1606/10767 (15%) +[UE3] [2025-07-19 14:15:18] [ 5] 22.00-23.00 sec 12.0 MBytes 101 Mbits/sec 0.093 ms 1557/10262 (15%) +[UE3] [2025-07-19 14:15:19] [ 5] 23.00-24.00 sec 11.9 MBytes 99.6 Mbits/sec 0.122 ms 1498/10098 (15%) +[UE3] [2025-07-19 14:15:20] [ 5] 24.00-25.00 sec 12.7 MBytes 106 Mbits/sec 0.102 ms 1571/10747 (15%) +[UE3] [2025-07-19 14:15:21] [ 5] 25.00-26.00 sec 11.8 MBytes 99.3 Mbits/sec 0.103 ms 1447/10016 (14%) +[UE3] [2025-07-19 14:15:22] [ 5] 26.00-27.00 sec 12.0 MBytes 101 Mbits/sec 0.110 ms 1468/10193 (14%) +[UE3] [2025-07-19 14:15:23] [ 5] 27.00-28.00 sec 12.6 MBytes 106 Mbits/sec 0.109 ms 1676/10827 (15%) +[UE3] [2025-07-19 14:15:24] [ 5] 28.00-29.00 sec 11.9 MBytes 99.9 Mbits/sec 0.108 ms 1364/9985 (14%) +[UE3] [2025-07-19 14:15:25] [ 5] 29.00-30.00 sec 12.8 MBytes 108 Mbits/sec 0.106 ms 1414/10700 (13%) +[UE3] [2025-07-19 14:15:26] [ 5] 30.00-31.00 sec 11.8 MBytes 99.4 Mbits/sec 0.081 ms 1604/10184 (16%) +[UE3] [2025-07-19 14:15:27] [ 5] 31.00-32.00 sec 12.1 MBytes 101 Mbits/sec 0.098 ms 1800/10528 (17%) +[UE3] [2025-07-19 14:15:28] [ 5] 32.00-33.00 sec 11.9 MBytes 99.5 Mbits/sec 0.077 ms 1440/10027 (14%) +[UE3] [2025-07-19 14:15:29] [ 5] 33.00-34.00 sec 10.7 MBytes 89.8 Mbits/sec 0.082 ms 2303/10059 (23%) +[UE3] [2025-07-19 14:15:30] [ 5] 34.00-35.00 sec 12.0 MBytes 101 Mbits/sec 0.087 ms 1785/10483 (17%) +[UE3] [2025-07-19 14:15:31] [ 5] 35.00-36.00 sec 12.7 MBytes 106 Mbits/sec 0.073 ms 1826/11005 (17%) +[UE3] [2025-07-19 14:15:32] [ 5] 36.00-37.00 sec 11.7 MBytes 98.4 Mbits/sec 0.118 ms 1491/9989 (15%) +[UE3] [2025-07-19 14:15:33] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1718/10539 (16%) +[UE3] [2025-07-19 14:15:34] [ 5] 38.00-39.00 sec 12.0 MBytes 101 Mbits/sec 0.088 ms 1390/10112 (14%) +[UE3] [2025-07-19 14:15:35] [ 5] 39.00-40.00 sec 12.6 MBytes 106 Mbits/sec 0.115 ms 1552/10695 (15%) +[UE3] [2025-07-19 14:15:36] [ 5] 40.00-41.00 sec 11.9 MBytes 99.6 Mbits/sec 0.112 ms 1449/10049 (14%) +[UE3] [2025-07-19 14:15:37] [ 5] 41.00-42.00 sec 12.1 MBytes 101 Mbits/sec 0.087 ms 1656/10393 (16%) +[UE3] [2025-07-19 14:15:38] [ 5] 42.00-43.00 sec 11.8 MBytes 99.3 Mbits/sec 0.077 ms 1563/10136 (15%) +[UE3] [2025-07-19 14:15:39] [ 5] 43.00-44.00 sec 12.0 MBytes 101 Mbits/sec 0.071 ms 1654/10379 (16%) +[UE3] [2025-07-19 14:15:40] [ 5] 44.00-45.00 sec 12.1 MBytes 101 Mbits/sec 0.104 ms 1692/10436 (16%) +[UE3] [2025-07-19 14:15:41] [ 5] 45.00-46.00 sec 11.9 MBytes 99.5 Mbits/sec 0.107 ms 1523/10110 (15%) +[UE3] [2025-07-19 14:15:42] [ 5] 46.00-47.00 sec 11.3 MBytes 94.5 Mbits/sec 0.079 ms 2546/10706 (24%) +[UE3] [2025-07-19 14:15:43] [ 5] 47.00-48.00 sec 12.7 MBytes 106 Mbits/sec 0.066 ms 1351/10518 (13%) +[UE3] [2025-07-19 14:15:44] [ 5] 48.00-49.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 1359/10074 (13%) +[UE3] [2025-07-19 14:15:45] [ 5] 49.00-50.00 sec 12.5 MBytes 105 Mbits/sec 0.081 ms 1612/10687 (15%) +[UE3] [2025-07-19 14:15:46] [ 5] 50.00-51.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1460/10150 (14%) +[UE3] [2025-07-19 14:15:47] [ 5] 51.00-52.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 1486/10191 (15%) +[UE3] [2025-07-19 14:15:48] [ 5] 52.00-53.00 sec 12.1 MBytes 101 Mbits/sec 0.071 ms 1611/10350 (16%) +[UE3] [2025-07-19 14:15:49] [ 5] 53.00-54.00 sec 11.9 MBytes 99.6 Mbits/sec 0.119 ms 1497/10094 (15%) +[UE3] [2025-07-19 14:15:50] [ 5] 54.00-55.00 sec 12.0 MBytes 101 Mbits/sec 0.090 ms 2084/10797 (19%) +[UE3] [2025-07-19 14:15:51] [ 5] 55.00-56.00 sec 12.6 MBytes 106 Mbits/sec 0.099 ms 1480/10590 (14%) +[UE3] [2025-07-19 14:15:52] [ 5] 56.00-57.00 sec 12.1 MBytes 102 Mbits/sec 0.090 ms 1542/10315 (15%) +[UE3] [2025-07-19 14:15:53] [ 5] 57.00-58.00 sec 11.9 MBytes 99.9 Mbits/sec 0.085 ms 1511/10132 (15%) +[UE3] [2025-07-19 14:15:54] [ 5] 58.00-59.00 sec 12.6 MBytes 106 Mbits/sec 0.082 ms 1564/10711 (15%) +[UE3] [2025-07-19 14:15:55] [ 5] 59.00-60.00 sec 12.0 MBytes 101 Mbits/sec 0.126 ms 1415/10134 (14%) +[UE3] [2025-07-19 14:15:56] [ 5] 60.00-61.00 sec 11.9 MBytes 99.5 Mbits/sec 0.091 ms 1624/10210 (16%) +[UE3] [2025-07-19 14:15:57] [ 5] 61.00-62.00 sec 12.7 MBytes 106 Mbits/sec 0.091 ms 1531/10700 (14%) +[UE3] [2025-07-19 14:15:58] [ 5] 62.00-63.00 sec 12.1 MBytes 101 Mbits/sec 0.108 ms 1401/10130 (14%) +[UE3] [2025-07-19 14:15:59] [ 5] 63.00-64.00 sec 12.0 MBytes 101 Mbits/sec 0.072 ms 1524/10233 (15%) +[UE3] [2025-07-19 14:16:00] [ 5] 64.00-65.00 sec 11.9 MBytes 99.9 Mbits/sec 0.084 ms 1863/10489 (18%) +[UE3] [2025-07-19 14:16:01] [ 5] 65.00-66.00 sec 11.2 MBytes 94.1 Mbits/sec 0.084 ms 1685/9810 (17%) +[UE3] [2025-07-19 14:16:02] [ 5] 66.00-67.00 sec 12.0 MBytes 101 Mbits/sec 0.069 ms 2268/10994 (21%) +[UE3] [2025-07-19 14:16:03] [ 5] 67.00-68.00 sec 11.9 MBytes 99.7 Mbits/sec 0.080 ms 1461/10069 (15%) +[UE3] [2025-07-19 14:16:04] [ 5] 68.00-69.00 sec 12.8 MBytes 108 Mbits/sec 0.109 ms 1704/10994 (15%) +[UE3] [2025-07-19 14:16:05] [ 5] 69.00-70.00 sec 11.9 MBytes 99.6 Mbits/sec 0.089 ms 1431/10031 (14%) +[UE3] [2025-07-19 14:16:06] [ 5] 70.00-71.00 sec 12.1 MBytes 101 Mbits/sec 0.081 ms 1497/10238 (15%) +[UE3] [2025-07-19 14:16:07] [ 5] 71.00-72.00 sec 12.0 MBytes 101 Mbits/sec 0.270 ms 1558/10271 (15%) +[UE3] [2025-07-19 14:16:08] [ 5] 72.00-73.00 sec 12.5 MBytes 104 Mbits/sec 0.078 ms 1593/10613 (15%) +[UE3] [2025-07-19 14:16:09] [ 5] 73.00-74.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 1355/10067 (13%) +[UE3] [2025-07-19 14:16:10] [ 5] 74.00-75.00 sec 11.9 MBytes 99.9 Mbits/sec 0.104 ms 1642/10263 (16%) +[UE3] [2025-07-19 14:16:11] [ 5] 75.00-76.00 sec 11.4 MBytes 95.8 Mbits/sec 0.073 ms 1546/9815 (16%) +[UE3] [2025-07-19 14:16:12] [ 5] 76.00-77.00 sec 12.6 MBytes 106 Mbits/sec 0.086 ms 2411/11570 (21%) +[UE3] [2025-07-19 14:16:13] [ 5] 77.00-78.00 sec 10.7 MBytes 89.5 Mbits/sec 0.082 ms 1273/9003 (14%) +[UE3] [2025-07-19 14:16:14] [ 5] 78.00-79.00 sec 11.9 MBytes 99.5 Mbits/sec 0.105 ms 2467/11058 (22%) +[UE3] [2025-07-19 14:16:15] [ 5] 79.00-80.00 sec 12.7 MBytes 106 Mbits/sec 0.092 ms 1553/10734 (14%) +[UE3] [2025-07-19 14:16:16] [ 5] 80.00-81.00 sec 12.0 MBytes 101 Mbits/sec 0.121 ms 1556/10261 (15%) +[UE3] [2025-07-19 14:16:17] [ 5] 81.00-82.00 sec 12.0 MBytes 100 Mbits/sec 0.156 ms 1319/9989 (13%) +[UE3] [2025-07-19 14:16:18] [ 5] 82.00-83.00 sec 12.5 MBytes 105 Mbits/sec 0.089 ms 1738/10819 (16%) +[UE3] [2025-07-19 14:16:19] [ 5] 83.00-84.00 sec 12.1 MBytes 101 Mbits/sec 0.075 ms 1586/10332 (15%) +[UE3] [2025-07-19 14:16:20] [ 5] 84.00-85.00 sec 11.2 MBytes 94.3 Mbits/sec 0.114 ms 1472/9614 (15%) +[UE3] [2025-07-19 14:16:21] [ 5] 85.00-86.00 sec 11.3 MBytes 94.5 Mbits/sec 0.071 ms 2098/10253 (20%) +[UE3] [2025-07-19 14:16:22] [ 5] 86.00-87.00 sec 12.1 MBytes 101 Mbits/sec 0.113 ms 2183/10916 (20%) +[UE3] [2025-07-19 14:16:23] [ 5] 87.00-88.00 sec 11.9 MBytes 99.5 Mbits/sec 0.106 ms 1679/10274 (16%) +[UE3] [2025-07-19 14:16:24] [ 5] 88.00-89.00 sec 12.7 MBytes 106 Mbits/sec 0.071 ms 1704/10874 (16%) +[UE3] [2025-07-19 14:16:25] [ 5] 89.00-90.00 sec 10.7 MBytes 89.6 Mbits/sec 0.069 ms 1257/8989 (14%) +[UE3] [2025-07-19 14:16:26] [ 5] 90.00-91.00 sec 12.3 MBytes 103 Mbits/sec 0.086 ms 2494/11404 (22%) +[UE3] [2025-07-19 14:16:27] [ 5] 91.00-92.00 sec 12.4 MBytes 104 Mbits/sec 0.092 ms 1640/10605 (15%) +[UE3] [2025-07-19 14:16:28] [ 5] 92.00-93.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1577/10289 (15%) +[UE3] [2025-07-19 14:16:29] [ 5] 93.00-94.00 sec 11.9 MBytes 99.7 Mbits/sec 0.094 ms 1510/10118 (15%) +[UE3] [2025-07-19 14:16:30] [ 5] 94.00-95.00 sec 12.0 MBytes 101 Mbits/sec 0.074 ms 1559/10280 (15%) +[UE3] [2025-07-19 14:16:31] [ 5] 95.00-96.00 sec 11.9 MBytes 99.4 Mbits/sec 0.079 ms 1628/10213 (16%) +[UE3] [2025-07-19 14:16:32] [ 5] 96.00-97.00 sec 12.1 MBytes 101 Mbits/sec 0.108 ms 1684/10427 (16%) +[UE3] [2025-07-19 14:16:33] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1703/10511 (16%) +[UE3] [2025-07-19 14:16:34] [ 5] 98.00-99.00 sec 12.3 MBytes 103 Mbits/sec 0.086 ms 1663/10598 (16%) +[UE3] [2025-07-19 14:16:36] [ 5] 99.00-100.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 1565/10272 (15%) +[UE3] [2025-07-19 14:16:37] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.223 ms 0/2713 (0%) +[UE3] [2025-07-19 14:16:38] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:39] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.228 ms 0/2587 (0%) +[UE3] [2025-07-19 14:16:40] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2592 (0%) +[UE3] [2025-07-19 14:16:41] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2589 (0%) +[UE3] [2025-07-19 14:16:42] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:43] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:44] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:45] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2592 (0%) +[UE3] [2025-07-19 14:16:46] [ 5] 9.00-10.00 sec 3.57 MBytes 30.0 Mbits/sec 0.242 ms 0/2587 (0%) +[UE3] [2025-07-19 14:16:47] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:48] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.310 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:49] [ 5] 12.00-13.00 sec 3.57 MBytes 30.0 Mbits/sec 0.342 ms 0/2587 (0%) +[UE3] [2025-07-19 14:16:50] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2593 (0%) +[UE3] [2025-07-19 14:16:51] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:52] [ 5] 15.00-16.00 sec 3.57 MBytes 29.9 Mbits/sec 0.254 ms 0/2587 (0%) +[UE3] [2025-07-19 14:16:53] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2589 (0%) +[UE3] [2025-07-19 14:16:54] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2593 (0%) +[UE3] [2025-07-19 14:16:55] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2589 (0%) +[UE3] [2025-07-19 14:16:56] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.279 ms 0/2590 (0%) +[UE3] [2025-07-19 14:16:57] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2591 (0%) +[UE3] [2025-07-19 14:16:58] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2591 (0%) +[UE3] [2025-07-19 14:16:59] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.119 ms 0/2587 (0%) +[UE3] [2025-07-19 14:17:00] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:01] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:02] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:03] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:04] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:05] [ 5] 28.00-29.00 sec 3.57 MBytes 30.0 Mbits/sec 0.211 ms 0/2587 (0%) +[UE3] [2025-07-19 14:17:06] [ 5] 29.00-30.00 sec 3.57 MBytes 30.0 Mbits/sec 0.317 ms 0/2588 (0%) +[UE3] [2025-07-19 14:17:07] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:08] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:09] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:10] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:11] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.235 ms 0/2588 (0%) +[UE3] [2025-07-19 14:17:12] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:13] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:14] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:15] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.119 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:16] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:17] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:18] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:19] [ 5] 42.00-43.00 sec 3.57 MBytes 30.0 Mbits/sec 0.365 ms 0/2587 (0%) +[UE3] [2025-07-19 14:17:20] [ 5] 43.00-44.00 sec 3.58 MBytes 30.1 Mbits/sec 0.254 ms 0/2595 (0%) +[UE3] [2025-07-19 14:17:21] [ 5] 44.00-45.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2587 (0%) +[UE3] [2025-07-19 14:17:22] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.114 ms 0/2592 (0%) +[UE3] [2025-07-19 14:17:23] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:24] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.115 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:25] [ 5] 48.00-49.00 sec 3.57 MBytes 30.0 Mbits/sec 0.259 ms 0/2588 (0%) +[UE3] [2025-07-19 14:17:26] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:27] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:28] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2592 (0%) +[UE3] [2025-07-19 14:17:29] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.185 ms 0/2587 (0%) +[UE3] [2025-07-19 14:17:30] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.227 ms 0/2588 (0%) +[UE3] [2025-07-19 14:17:31] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2592 (0%) +[UE3] [2025-07-19 14:17:32] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:33] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:34] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:35] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:36] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:37] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.294 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:38] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:39] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:40] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.280 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:41] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.123 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:42] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:43] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:44] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:45] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.251 ms 0/2588 (0%) +[UE3] [2025-07-19 14:17:46] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:47] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:48] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:49] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.280 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:50] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:51] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.261 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:52] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:53] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:54] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2591 (0%) +[UE3] [2025-07-19 14:17:55] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:56] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:57] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2590 (0%) +[UE3] [2025-07-19 14:17:58] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2589 (0%) +[UE3] [2025-07-19 14:17:59] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE3] [2025-07-19 14:18:00] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 14:18:01] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2592 (0%) +[UE3] [2025-07-19 14:18:02] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2589 (0%) +[UE3] [2025-07-19 14:18:03] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.217 ms 0/2588 (0%) +[UE3] [2025-07-19 14:18:04] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.113 ms 0/2590 (0%) +[UE3] [2025-07-19 14:18:05] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2589 (0%) +[UE3] [2025-07-19 14:18:06] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.377 ms 0/2591 (0%) +[UE3] [2025-07-19 14:18:07] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2589 (0%) +[UE3] [2025-07-19 14:18:08] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE3] [2025-07-19 14:18:09] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2593 (0%) +[UE3] [2025-07-19 14:18:10] [ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 0.183 ms 0/2587 (0%) +[UE3] [2025-07-19 14:18:11] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE3] [2025-07-19 14:18:12] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2592 (0%) +[UE3] [2025-07-19 14:18:13] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2591 (0%) +[UE3] [2025-07-19 14:18:14] [ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 0.159 ms 0/2587 (0%) +[UE3] [2025-07-19 14:18:15] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.224 ms 0/2587 (0%) +[UE3] [2025-07-19 14:18:16] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.248 ms 0/2592 (0%) +[UE3] [2025-07-19 14:18:18] [ 5] 0.00-1.00 sec 9.66 MBytes 81.0 Mbits/sec 0.147 ms 0/6993 (0%) +[UE3] [2025-07-19 14:18:19] [ 5] 1.00-2.00 sec 12.5 MBytes 105 Mbits/sec 0.216 ms 0/9066 (0%) +[UE3] [2025-07-19 14:18:20] [ 5] 2.00-3.00 sec 11.4 MBytes 96.0 Mbits/sec 0.092 ms 247/8533 (2.9%) +[UE3] [2025-07-19 14:18:21] [ 5] 3.00-4.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1527/10341 (15%) +[UE3] [2025-07-19 14:18:22] [ 5] 4.00-5.00 sec 12.4 MBytes 104 Mbits/sec 0.101 ms 1425/10395 (14%) +[UE3] [2025-07-19 14:18:23] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1436/10235 (14%) +[UE3] [2025-07-19 14:18:24] [ 5] 6.00-7.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1541/10499 (15%) +[UE3] [2025-07-19 14:18:25] [ 5] 7.00-8.00 sec 11.6 MBytes 97.0 Mbits/sec 0.092 ms 1296/9672 (13%) +[UE3] [2025-07-19 14:18:26] [ 5] 8.00-9.00 sec 13.0 MBytes 109 Mbits/sec 0.107 ms 1814/11207 (16%) +[UE3] [2025-07-19 14:18:27] [ 5] 9.00-10.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1311/10269 (13%) +[UE3] [2025-07-19 14:18:28] [ 5] 10.00-11.00 sec 11.0 MBytes 91.9 Mbits/sec 0.120 ms 1245/9182 (14%) +[UE3] [2025-07-19 14:18:29] [ 5] 11.00-12.00 sec 13.0 MBytes 109 Mbits/sec 0.109 ms 2313/11697 (20%) +[UE3] [2025-07-19 14:18:30] [ 5] 12.00-13.00 sec 11.6 MBytes 97.1 Mbits/sec 0.126 ms 1372/9756 (14%) +[UE3] [2025-07-19 14:18:31] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1732/10537 (16%) +[UE3] [2025-07-19 14:18:32] [ 5] 14.00-15.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1521/10491 (14%) +[UE3] [2025-07-19 14:18:33] [ 5] 15.00-16.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1366/10311 (13%) +[UE3] [2025-07-19 14:18:34] [ 5] 16.00-17.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1356/10168 (13%) +[UE3] [2025-07-19 14:18:35] [ 5] 17.00-18.00 sec 13.0 MBytes 109 Mbits/sec 0.086 ms 1340/10740 (12%) +[UE3] [2025-07-19 14:18:36] [ 5] 18.00-19.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1392/10351 (13%) +[UE3] [2025-07-19 14:18:37] [ 5] 19.00-20.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1615/10433 (15%) +[UE3] [2025-07-19 14:18:38] [ 5] 20.00-21.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1404/10354 (14%) +[UE3] [2025-07-19 14:18:39] [ 5] 21.00-22.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1217/10183 (12%) +[UE3] [2025-07-19 14:18:40] [ 5] 22.00-23.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1449/10260 (14%) +[UE3] [2025-07-19 14:18:41] [ 5] 23.00-24.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1539/10489 (15%) +[UE3] [2025-07-19 14:18:42] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1425/10247 (14%) +[UE3] [2025-07-19 14:18:43] [ 5] 25.00-26.00 sec 11.3 MBytes 94.4 Mbits/sec 0.117 ms 1230/9381 (13%) +[UE3] [2025-07-19 14:18:44] [ 5] 26.00-27.00 sec 12.7 MBytes 106 Mbits/sec 0.088 ms 2304/11474 (20%) +[UE3] [2025-07-19 14:18:45] [ 5] 27.00-28.00 sec 12.4 MBytes 104 Mbits/sec 0.088 ms 1262/10212 (12%) +[UE3] [2025-07-19 14:18:46] [ 5] 28.00-29.00 sec 13.2 MBytes 111 Mbits/sec 0.113 ms 1413/10966 (13%) +[UE3] [2025-07-19 14:18:47] [ 5] 29.00-30.00 sec 12.0 MBytes 100 Mbits/sec 0.076 ms 1242/9911 (13%) +[UE3] [2025-07-19 14:18:48] [ 5] 30.00-31.00 sec 10.9 MBytes 91.7 Mbits/sec 0.081 ms 1130/9043 (12%) +[UE3] [2025-07-19 14:18:49] [ 5] 31.00-32.00 sec 13.0 MBytes 109 Mbits/sec 0.085 ms 2351/11757 (20%) +[UE3] [2025-07-19 14:18:50] [ 5] 32.00-33.00 sec 12.4 MBytes 104 Mbits/sec 0.090 ms 1384/10347 (13%) +[UE3] [2025-07-19 14:18:51] [ 5] 33.00-34.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 1634/10583 (15%) +[UE3] [2025-07-19 14:18:52] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.121 ms 1346/10161 (13%) +[UE3] [2025-07-19 14:18:53] [ 5] 35.00-36.00 sec 12.4 MBytes 104 Mbits/sec 0.088 ms 1349/10312 (13%) +[UE3] [2025-07-19 14:18:54] [ 5] 36.00-37.00 sec 11.5 MBytes 96.8 Mbits/sec 0.103 ms 1346/9704 (14%) +[UE3] [2025-07-19 14:18:55] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 2123/10951 (19%) +[UE3] [2025-07-19 14:18:56] [ 5] 38.00-39.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1347/10293 (13%) +[UE3] [2025-07-19 14:18:57] [ 5] 39.00-40.00 sec 12.4 MBytes 104 Mbits/sec 0.101 ms 1409/10362 (14%) +[UE3] [2025-07-19 14:18:58] [ 5] 40.00-41.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1336/10157 (13%) +[UE3] [2025-07-19 14:18:59] [ 5] 41.00-42.00 sec 12.4 MBytes 104 Mbits/sec 0.080 ms 1398/10358 (13%) +[UE3] [2025-07-19 14:19:00] [ 5] 42.00-43.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1620/10573 (15%) +[UE3] [2025-07-19 14:19:01] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1630/10444 (16%) +[UE3] [2025-07-19 14:19:02] [ 5] 44.00-45.00 sec 12.4 MBytes 104 Mbits/sec 0.109 ms 1385/10345 (13%) +[UE3] [2025-07-19 14:19:03] [ 5] 45.00-46.00 sec 12.2 MBytes 102 Mbits/sec 0.099 ms 1357/10165 (13%) +[UE3] [2025-07-19 14:19:04] [ 5] 46.00-47.00 sec 10.9 MBytes 91.7 Mbits/sec 0.074 ms 1377/9296 (15%) +[UE3] [2025-07-19 14:19:05] [ 5] 47.00-48.00 sec 12.7 MBytes 106 Mbits/sec 0.089 ms 2342/11508 (20%) +[UE3] [2025-07-19 14:19:06] [ 5] 48.00-49.00 sec 12.7 MBytes 107 Mbits/sec 0.074 ms 1378/10589 (13%) +[UE3] [2025-07-19 14:19:07] [ 5] 49.00-50.00 sec 12.1 MBytes 102 Mbits/sec 0.102 ms 1455/10251 (14%) +[UE3] [2025-07-19 14:19:08] [ 5] 50.00-51.00 sec 11.8 MBytes 98.7 Mbits/sec 0.084 ms 1260/9777 (13%) +[UE3] [2025-07-19 14:19:09] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 2089/10916 (19%) +[UE3] [2025-07-19 14:19:10] [ 5] 52.00-53.00 sec 11.6 MBytes 97.0 Mbits/sec 0.101 ms 1467/9844 (15%) +[UE3] [2025-07-19 14:19:11] [ 5] 53.00-54.00 sec 12.4 MBytes 104 Mbits/sec 0.109 ms 1605/10555 (15%) +[UE3] [2025-07-19 14:19:12] [ 5] 54.00-55.00 sec 13.0 MBytes 109 Mbits/sec 0.080 ms 1513/10913 (14%) +[UE3] [2025-07-19 14:19:13] [ 5] 55.00-56.00 sec 10.9 MBytes 91.9 Mbits/sec 0.101 ms 1184/9112 (13%) +[UE3] [2025-07-19 14:19:14] [ 5] 56.00-57.00 sec 11.2 MBytes 93.6 Mbits/sec 0.101 ms 2230/10308 (22%) +[UE3] [2025-07-19 14:19:15] [ 5] 57.00-58.00 sec 11.9 MBytes 100 Mbits/sec 0.089 ms 2592/11242 (23%) +[UE3] [2025-07-19 14:19:16] [ 5] 58.00-59.00 sec 13.0 MBytes 109 Mbits/sec 0.125 ms 1394/10798 (13%) +[UE3] [2025-07-19 14:19:17] [ 5] 59.00-60.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1270/10227 (12%) +[UE3] [2025-07-19 14:19:18] [ 5] 60.00-61.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1372/10187 (13%) +[UE3] [2025-07-19 14:19:19] [ 5] 61.00-62.00 sec 12.4 MBytes 104 Mbits/sec 0.104 ms 1270/10232 (12%) +[UE3] [2025-07-19 14:19:20] [ 5] 62.00-63.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1440/10390 (14%) +[UE3] [2025-07-19 14:19:21] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1296/10111 (13%) +[UE3] [2025-07-19 14:19:22] [ 5] 64.00-65.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1835/10797 (17%) +[UE3] [2025-07-19 14:19:23] [ 5] 65.00-66.00 sec 11.0 MBytes 91.9 Mbits/sec 0.096 ms 1193/9126 (13%) +[UE3] [2025-07-19 14:19:24] [ 5] 66.00-67.00 sec 13.0 MBytes 109 Mbits/sec 0.109 ms 2312/11702 (20%) +[UE3] [2025-07-19 14:19:25] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1361/10168 (13%) +[UE3] [2025-07-19 14:19:26] [ 5] 68.00-69.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1228/10191 (12%) +[UE3] [2025-07-19 14:19:27] [ 5] 69.00-70.00 sec 12.4 MBytes 104 Mbits/sec 0.109 ms 1482/10439 (14%) +[UE3] [2025-07-19 14:19:28] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1473/10280 (14%) +[UE3] [2025-07-19 14:19:29] [ 5] 71.00-72.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1245/10215 (12%) +[UE3] [2025-07-19 14:19:30] [ 5] 72.00-73.00 sec 12.1 MBytes 102 Mbits/sec 0.091 ms 1421/10213 (14%) +[UE3] [2025-07-19 14:19:31] [ 5] 73.00-74.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1614/10579 (15%) +[UE3] [2025-07-19 14:19:32] [ 5] 74.00-75.00 sec 12.4 MBytes 104 Mbits/sec 0.089 ms 1591/10554 (15%) +[UE3] [2025-07-19 14:19:33] [ 5] 75.00-76.00 sec 11.0 MBytes 91.9 Mbits/sec 0.070 ms 1224/9160 (13%) +[UE3] [2025-07-19 14:19:34] [ 5] 76.00-77.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 2823/11622 (24%) +[UE3] [2025-07-19 14:19:35] [ 5] 77.00-78.00 sec 12.4 MBytes 104 Mbits/sec 0.091 ms 1263/10222 (12%) +[UE3] [2025-07-19 14:19:36] [ 5] 78.00-79.00 sec 12.4 MBytes 104 Mbits/sec 0.115 ms 1427/10396 (14%) +[UE3] [2025-07-19 14:19:37] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1541/10347 (15%) +[UE3] [2025-07-19 14:19:38] [ 5] 80.00-81.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1216/10174 (12%) +[UE3] [2025-07-19 14:19:39] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.117 ms 1511/10328 (15%) +[UE3] [2025-07-19 14:19:40] [ 5] 82.00-83.00 sec 11.7 MBytes 98.5 Mbits/sec 0.086 ms 1307/9810 (13%) +[UE3] [2025-07-19 14:19:41] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 2377/11187 (21%) +[UE3] [2025-07-19 14:19:42] [ 5] 84.00-85.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 1470/10439 (14%) +[UE3] [2025-07-19 14:19:43] [ 5] 85.00-86.00 sec 13.4 MBytes 112 Mbits/sec 0.113 ms 1316/11006 (12%) +[UE3] [2025-07-19 14:19:44] [ 5] 86.00-87.00 sec 10.6 MBytes 88.5 Mbits/sec 0.097 ms 1847/9491 (19%) +[UE3] [2025-07-19 14:19:45] [ 5] 87.00-88.00 sec 12.2 MBytes 102 Mbits/sec 0.060 ms 1751/10552 (17%) +[UE3] [2025-07-19 14:19:46] [ 5] 88.00-89.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1466/10430 (14%) +[UE3] [2025-07-19 14:19:47] [ 5] 89.00-90.00 sec 12.4 MBytes 104 Mbits/sec 0.094 ms 1383/10337 (13%) +[UE3] [2025-07-19 14:19:48] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1491/10300 (14%) +[UE3] [2025-07-19 14:19:49] [ 5] 91.00-92.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1248/10212 (12%) +[UE3] [2025-07-19 14:19:50] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1420/10225 (14%) +[UE3] [2025-07-19 14:19:51] [ 5] 93.00-94.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1417/10375 (14%) +[UE3] [2025-07-19 14:19:52] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1451/10270 (14%) +[UE3] [2025-07-19 14:19:53] [ 5] 95.00-96.00 sec 13.0 MBytes 109 Mbits/sec 0.084 ms 1521/10907 (14%) +[UE3] [2025-07-19 14:19:54] [ 5] 96.00-97.00 sec 11.8 MBytes 98.7 Mbits/sec 0.092 ms 1195/9717 (12%) +[UE3] [2025-07-19 14:19:55] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 2000/10819 (18%) +[UE3] [2025-07-19 14:19:56] [ 5] 98.00-99.00 sec 11.7 MBytes 98.5 Mbits/sec 0.110 ms 1606/10112 (16%) +[UE3] [2025-07-19 14:19:58] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1494/10298 (15%) +[UE3] [2025-07-19 14:19:59] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.308 ms 0/2715 (0%) +[UE3] [2025-07-19 14:20:00] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2592 (0%) +[UE3] [2025-07-19 14:20:01] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.333 ms 0/2587 (0%) +[UE3] [2025-07-19 14:20:02] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2593 (0%) +[UE3] [2025-07-19 14:20:03] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2592 (0%) +[UE3] [2025-07-19 14:20:04] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.218 ms 0/2588 (0%) +[UE3] [2025-07-19 14:20:05] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:06] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:07] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:08] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:09] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:10] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:11] [ 5] 12.00-13.00 sec 3.57 MBytes 29.9 Mbits/sec 0.280 ms 0/2585 (0%) +[UE3] [2025-07-19 14:20:12] [ 5] 13.00-14.00 sec 3.58 MBytes 30.1 Mbits/sec 0.132 ms 0/2595 (0%) +[UE3] [2025-07-19 14:20:13] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:14] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.339 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:15] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.110 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:16] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.353 ms 0/2588 (0%) +[UE3] [2025-07-19 14:20:17] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2591 (0%) +[UE3] [2025-07-19 14:20:18] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:19] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2592 (0%) +[UE3] [2025-07-19 14:20:20] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:21] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:22] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:23] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:24] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:25] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:26] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.317 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:27] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:28] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.354 ms 0/2591 (0%) +[UE3] [2025-07-19 14:20:29] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.134 ms 0/2587 (0%) +[UE3] [2025-07-19 14:20:30] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2592 (0%) +[UE3] [2025-07-19 14:20:31] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.286 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:32] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:33] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:34] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.264 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:35] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:36] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:37] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2591 (0%) +[UE3] [2025-07-19 14:20:38] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:39] [ 5] 40.00-41.00 sec 3.57 MBytes 30.0 Mbits/sec 0.272 ms 0/2587 (0%) +[UE3] [2025-07-19 14:20:40] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.260 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:41] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2594 (0%) +[UE3] [2025-07-19 14:20:42] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2588 (0%) +[UE3] [2025-07-19 14:20:43] [ 5] 44.00-45.00 sec 3.57 MBytes 30.0 Mbits/sec 0.225 ms 0/2588 (0%) +[UE3] [2025-07-19 14:20:44] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.311 ms 0/2594 (0%) +[UE3] [2025-07-19 14:20:45] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.128 ms 0/2587 (0%) +[UE3] [2025-07-19 14:20:46] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.304 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:47] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2591 (0%) +[UE3] [2025-07-19 14:20:48] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:49] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.120 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:50] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:51] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.350 ms 0/2592 (0%) +[UE3] [2025-07-19 14:20:52] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.206 ms 0/2588 (0%) +[UE3] [2025-07-19 14:20:53] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.145 ms 0/2591 (0%) +[UE3] [2025-07-19 14:20:54] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:55] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.295 ms 0/2589 (0%) +[UE3] [2025-07-19 14:20:56] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.103 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:57] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE3] [2025-07-19 14:20:58] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2592 (0%) +[UE3] [2025-07-19 14:20:59] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.199 ms 0/2587 (0%) +[UE3] [2025-07-19 14:21:00] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:01] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.321 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:02] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:03] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.319 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:04] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:05] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:06] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:07] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:08] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:09] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2592 (0%) +[UE3] [2025-07-19 14:21:10] [ 5] 71.00-72.00 sec 3.57 MBytes 30.0 Mbits/sec 0.270 ms 0/2587 (0%) +[UE3] [2025-07-19 14:21:11] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.108 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:12] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:13] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:14] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:15] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:16] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:17] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:18] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.317 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:19] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:20] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.418 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:21] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:22] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.114 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:23] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:24] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:25] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.221 ms 0/2588 (0%) +[UE3] [2025-07-19 14:21:26] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.298 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:27] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.331 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:28] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:29] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2592 (0%) +[UE3] [2025-07-19 14:21:30] [ 5] 91.00-92.00 sec 3.57 MBytes 30.0 Mbits/sec 0.175 ms 0/2587 (0%) +[UE3] [2025-07-19 14:21:31] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:32] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:33] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:34] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 14:21:35] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:36] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:37] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2589 (0%) +[UE3] [2025-07-19 14:21:39] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2591 (0%) +[UE3] [2025-07-19 14:21:41] [ 5] 0.00-1.00 sec 10.1 MBytes 84.4 Mbits/sec 0.130 ms 0/7288 (0%) +[UE3] [2025-07-19 14:21:42] [ 5] 1.00-2.00 sec 12.6 MBytes 105 Mbits/sec 0.183 ms 0/9094 (0%) +[UE3] [2025-07-19 14:21:43] [ 5] 2.00-3.00 sec 11.0 MBytes 92.6 Mbits/sec 0.173 ms 0/7996 (0%) +[UE3] [2025-07-19 14:21:44] [ 5] 3.00-4.00 sec 10.1 MBytes 84.8 Mbits/sec 0.082 ms 1944/9261 (21%) +[UE3] [2025-07-19 14:21:45] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 2407/11223 (21%) +[UE3] [2025-07-19 14:21:46] [ 5] 5.00-6.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1366/10318 (13%) +[UE3] [2025-07-19 14:21:47] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1575/10396 (15%) +[UE3] [2025-07-19 14:21:48] [ 5] 7.00-8.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1534/10488 (15%) +[UE3] [2025-07-19 14:21:49] [ 5] 8.00-9.00 sec 12.4 MBytes 104 Mbits/sec 0.088 ms 1406/10351 (14%) +[UE3] [2025-07-19 14:21:50] [ 5] 9.00-10.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1523/10344 (15%) +[UE3] [2025-07-19 14:21:51] [ 5] 10.00-11.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1351/10312 (13%) +[UE3] [2025-07-19 14:21:52] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1472/10275 (14%) +[UE3] [2025-07-19 14:21:53] [ 5] 12.00-13.00 sec 10.9 MBytes 91.8 Mbits/sec 0.113 ms 1301/9228 (14%) +[UE3] [2025-07-19 14:21:54] [ 5] 13.00-14.00 sec 13.0 MBytes 109 Mbits/sec 0.112 ms 2519/11927 (21%) +[UE3] [2025-07-19 14:21:55] [ 5] 14.00-15.00 sec 12.4 MBytes 104 Mbits/sec 0.114 ms 1420/10395 (14%) +[UE3] [2025-07-19 14:21:56] [ 5] 15.00-16.00 sec 12.1 MBytes 102 Mbits/sec 0.116 ms 1400/10194 (14%) +[UE3] [2025-07-19 14:21:57] [ 5] 16.00-17.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1268/10226 (12%) +[UE3] [2025-07-19 14:21:58] [ 5] 17.00-18.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1335/10302 (13%) +[UE3] [2025-07-19 14:21:59] [ 5] 18.00-19.00 sec 12.8 MBytes 107 Mbits/sec 0.098 ms 1374/10624 (13%) +[UE3] [2025-07-19 14:22:00] [ 5] 19.00-20.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1314/10270 (13%) +[UE3] [2025-07-19 14:22:01] [ 5] 20.00-21.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 1534/10479 (15%) +[UE3] [2025-07-19 14:22:02] [ 5] 21.00-22.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1468/10295 (14%) +[UE3] [2025-07-19 14:22:03] [ 5] 22.00-23.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1410/10365 (14%) +[UE3] [2025-07-19 14:22:04] [ 5] 23.00-24.00 sec 12.3 MBytes 104 Mbits/sec 0.085 ms 1609/10547 (15%) +[UE3] [2025-07-19 14:22:05] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.094 ms 1250/10076 (12%) +[UE3] [2025-07-19 14:22:06] [ 5] 25.00-26.00 sec 12.4 MBytes 104 Mbits/sec 0.120 ms 1419/10375 (14%) +[UE3] [2025-07-19 14:22:07] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1363/10176 (13%) +[UE3] [2025-07-19 14:22:08] [ 5] 27.00-28.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1352/10317 (13%) +[UE3] [2025-07-19 14:22:09] [ 5] 28.00-29.00 sec 13.0 MBytes 109 Mbits/sec 0.095 ms 1505/10899 (14%) +[UE3] [2025-07-19 14:22:10] [ 5] 29.00-30.00 sec 12.4 MBytes 104 Mbits/sec 0.120 ms 1327/10272 (13%) +[UE3] [2025-07-19 14:22:11] [ 5] 30.00-31.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1158/9970 (12%) +[UE3] [2025-07-19 14:22:12] [ 5] 31.00-32.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1752/10722 (16%) +[UE3] [2025-07-19 14:22:13] [ 5] 32.00-33.00 sec 11.9 MBytes 99.9 Mbits/sec 0.107 ms 1425/10045 (14%) +[UE3] [2025-07-19 14:22:14] [ 5] 33.00-34.00 sec 12.6 MBytes 106 Mbits/sec 0.078 ms 1630/10760 (15%) +[UE3] [2025-07-19 14:22:15] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1288/10116 (13%) +[UE3] [2025-07-19 14:22:16] [ 5] 35.00-36.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1411/10359 (14%) +[UE3] [2025-07-19 14:22:17] [ 5] 36.00-37.00 sec 12.4 MBytes 104 Mbits/sec 0.096 ms 1392/10350 (13%) +[UE3] [2025-07-19 14:22:18] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1296/10124 (13%) +[UE3] [2025-07-19 14:22:19] [ 5] 38.00-39.00 sec 13.0 MBytes 109 Mbits/sec 0.073 ms 1434/10817 (13%) +[UE3] [2025-07-19 14:22:20] [ 5] 39.00-40.00 sec 12.4 MBytes 104 Mbits/sec 0.118 ms 1268/10234 (12%) +[UE3] [2025-07-19 14:22:21] [ 5] 40.00-41.00 sec 12.4 MBytes 104 Mbits/sec 0.095 ms 1267/10241 (12%) +[UE3] [2025-07-19 14:22:22] [ 5] 41.00-42.00 sec 12.1 MBytes 102 Mbits/sec 0.092 ms 1466/10260 (14%) +[UE3] [2025-07-19 14:22:23] [ 5] 42.00-43.00 sec 12.4 MBytes 104 Mbits/sec 0.116 ms 1341/10300 (13%) +[UE3] [2025-07-19 14:22:24] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1643/10466 (16%) +[UE3] [2025-07-19 14:22:25] [ 5] 44.00-45.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1344/10289 (13%) +[UE3] [2025-07-19 14:22:26] [ 5] 45.00-46.00 sec 12.4 MBytes 104 Mbits/sec 0.111 ms 1381/10369 (13%) +[UE3] [2025-07-19 14:22:27] [ 5] 46.00-47.00 sec 12.7 MBytes 107 Mbits/sec 0.103 ms 1312/10541 (12%) +[UE3] [2025-07-19 14:22:28] [ 5] 47.00-48.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1282/10241 (13%) +[UE3] [2025-07-19 14:22:29] [ 5] 48.00-49.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1474/10430 (14%) +[UE3] [2025-07-19 14:22:30] [ 5] 49.00-50.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1335/10147 (13%) +[UE3] [2025-07-19 14:22:31] [ 5] 50.00-51.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1342/10301 (13%) +[UE3] [2025-07-19 14:22:32] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.091 ms 1452/10254 (14%) +[UE3] [2025-07-19 14:22:33] [ 5] 52.00-53.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1528/10487 (15%) +[UE3] [2025-07-19 14:22:34] [ 5] 53.00-54.00 sec 10.9 MBytes 91.7 Mbits/sec 0.113 ms 1316/9234 (14%) +[UE3] [2025-07-19 14:22:35] [ 5] 54.00-55.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 2647/11468 (23%) +[UE3] [2025-07-19 14:22:36] [ 5] 55.00-56.00 sec 13.0 MBytes 109 Mbits/sec 0.098 ms 1423/10826 (13%) +[UE3] [2025-07-19 14:22:37] [ 5] 56.00-57.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1320/10268 (13%) +[UE3] [2025-07-19 14:22:38] [ 5] 57.00-58.00 sec 11.0 MBytes 91.9 Mbits/sec 0.122 ms 1246/9183 (14%) +[UE3] [2025-07-19 14:22:39] [ 5] 58.00-59.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 2302/11257 (20%) +[UE3] [2025-07-19 14:22:40] [ 5] 59.00-60.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1399/10230 (14%) +[UE3] [2025-07-19 14:22:41] [ 5] 60.00-61.00 sec 13.0 MBytes 109 Mbits/sec 0.072 ms 1504/10884 (14%) +[UE3] [2025-07-19 14:22:42] [ 5] 61.00-62.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1230/10191 (12%) +[UE3] [2025-07-19 14:22:43] [ 5] 62.00-63.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1348/10151 (13%) +[UE3] [2025-07-19 14:22:44] [ 5] 63.00-64.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1368/10338 (13%) +[UE3] [2025-07-19 14:22:45] [ 5] 64.00-65.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1495/10307 (15%) +[UE3] [2025-07-19 14:22:46] [ 5] 65.00-66.00 sec 12.3 MBytes 104 Mbits/sec 0.096 ms 1710/10648 (16%) +[UE3] [2025-07-19 14:22:47] [ 5] 66.00-67.00 sec 12.4 MBytes 104 Mbits/sec 0.116 ms 1346/10316 (13%) +[UE3] [2025-07-19 14:22:48] [ 5] 67.00-68.00 sec 11.0 MBytes 91.9 Mbits/sec 0.075 ms 1161/9091 (13%) +[UE3] [2025-07-19 14:22:49] [ 5] 68.00-69.00 sec 13.0 MBytes 109 Mbits/sec 0.111 ms 2499/11916 (21%) +[UE3] [2025-07-19 14:22:50] [ 5] 69.00-70.00 sec 12.1 MBytes 102 Mbits/sec 0.080 ms 1302/10096 (13%) +[UE3] [2025-07-19 14:22:51] [ 5] 70.00-71.00 sec 12.4 MBytes 104 Mbits/sec 0.091 ms 1286/10244 (13%) +[UE3] [2025-07-19 14:22:52] [ 5] 71.00-72.00 sec 12.6 MBytes 106 Mbits/sec 0.095 ms 1350/10462 (13%) +[UE3] [2025-07-19 14:22:53] [ 5] 72.00-73.00 sec 12.0 MBytes 100 Mbits/sec 0.075 ms 1342/9999 (13%) +[UE3] [2025-07-19 14:22:54] [ 5] 73.00-74.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 1540/10498 (15%) +[UE3] [2025-07-19 14:22:55] [ 5] 74.00-75.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1411/10235 (14%) +[UE3] [2025-07-19 14:22:56] [ 5] 75.00-76.00 sec 12.6 MBytes 105 Mbits/sec 0.088 ms 1420/10511 (14%) +[UE3] [2025-07-19 14:22:57] [ 5] 76.00-77.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1413/10225 (14%) +[UE3] [2025-07-19 14:22:58] [ 5] 77.00-78.00 sec 11.6 MBytes 97.1 Mbits/sec 0.083 ms 1450/9828 (15%) +[UE3] [2025-07-19 14:22:59] [ 5] 78.00-79.00 sec 12.1 MBytes 102 Mbits/sec 0.082 ms 2334/11126 (21%) +[UE3] [2025-07-19 14:23:00] [ 5] 79.00-80.00 sec 11.6 MBytes 97.1 Mbits/sec 0.113 ms 1153/9535 (12%) +[UE3] [2025-07-19 14:23:01] [ 5] 80.00-81.00 sec 12.4 MBytes 104 Mbits/sec 0.071 ms 2221/11176 (20%) +[UE3] [2025-07-19 14:23:02] [ 5] 81.00-82.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1493/10469 (14%) +[UE3] [2025-07-19 14:23:03] [ 5] 82.00-83.00 sec 12.1 MBytes 102 Mbits/sec 0.107 ms 1466/10262 (14%) +[UE3] [2025-07-19 14:23:04] [ 5] 83.00-84.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1316/10271 (13%) +[UE3] [2025-07-19 14:23:05] [ 5] 84.00-85.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1566/10397 (15%) +[UE3] [2025-07-19 14:23:06] [ 5] 85.00-86.00 sec 12.3 MBytes 104 Mbits/sec 0.120 ms 1394/10335 (13%) +[UE3] [2025-07-19 14:23:07] [ 5] 86.00-87.00 sec 13.0 MBytes 109 Mbits/sec 0.076 ms 1359/10759 (13%) +[UE3] [2025-07-19 14:23:08] [ 5] 87.00-88.00 sec 11.6 MBytes 97.1 Mbits/sec 0.109 ms 1316/9702 (14%) +[UE3] [2025-07-19 14:23:09] [ 5] 88.00-89.00 sec 12.3 MBytes 104 Mbits/sec 0.073 ms 1706/10647 (16%) +[UE3] [2025-07-19 14:23:10] [ 5] 89.00-90.00 sec 13.0 MBytes 109 Mbits/sec 0.069 ms 1331/10731 (12%) +[UE3] [2025-07-19 14:23:11] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1235/10038 (12%) +[UE3] [2025-07-19 14:23:12] [ 5] 91.00-92.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1315/10277 (13%) +[UE3] [2025-07-19 14:23:13] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1405/10224 (14%) +[UE3] [2025-07-19 14:23:14] [ 5] 93.00-94.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1328/10274 (13%) +[UE3] [2025-07-19 14:23:15] [ 5] 94.00-95.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1773/10735 (17%) +[UE3] [2025-07-19 14:23:16] [ 5] 95.00-96.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1348/10167 (13%) +[UE3] [2025-07-19 14:23:17] [ 5] 96.00-97.00 sec 13.0 MBytes 109 Mbits/sec 0.118 ms 1396/10780 (13%) +[UE3] [2025-07-19 14:23:18] [ 5] 97.00-98.00 sec 12.4 MBytes 104 Mbits/sec 0.115 ms 1267/10235 (12%) +[UE3] [2025-07-19 14:23:19] [ 5] 98.00-99.00 sec 11.6 MBytes 97.0 Mbits/sec 0.088 ms 1306/9681 (13%) +[UE3] [2025-07-19 14:23:20] [ 5] 99.00-100.00 sec 13.0 MBytes 109 Mbits/sec 0.090 ms 1755/11146 (16%) +[UE3] [2025-07-19 14:23:22] [ 5] 0.00-1.00 sec 3.75 MBytes 31.5 Mbits/sec 0.320 ms 0/2716 (0%) +[UE3] [2025-07-19 14:23:23] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:24] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.121 ms 0/2588 (0%) +[UE3] [2025-07-19 14:23:25] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2591 (0%) +[UE3] [2025-07-19 14:23:26] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:27] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:28] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:29] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2587 (0%) +[UE3] [2025-07-19 14:23:30] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2592 (0%) +[UE3] [2025-07-19 14:23:31] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:32] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2591 (0%) +[UE3] [2025-07-19 14:23:33] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:34] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.110 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:35] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.288 ms 0/2587 (0%) +[UE3] [2025-07-19 14:23:36] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2593 (0%) +[UE3] [2025-07-19 14:23:37] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.219 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:38] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2592 (0%) +[UE3] [2025-07-19 14:23:39] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.137 ms 0/2588 (0%) +[UE3] [2025-07-19 14:23:40] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:41] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2593 (0%) +[UE3] [2025-07-19 14:23:42] [ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 0.124 ms 0/2587 (0%) +[UE3] [2025-07-19 14:23:43] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.282 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:44] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:45] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:46] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.213 ms 0/2587 (0%) +[UE3] [2025-07-19 14:23:47] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2592 (0%) +[UE3] [2025-07-19 14:23:48] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:49] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:50] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2591 (0%) +[UE3] [2025-07-19 14:23:51] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:52] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:53] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:54] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.120 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:55] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2589 (0%) +[UE3] [2025-07-19 14:23:56] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.259 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:57] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:58] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE3] [2025-07-19 14:23:59] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2591 (0%) +[UE3] [2025-07-19 14:24:00] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:01] [ 5] 39.00-40.00 sec 3.57 MBytes 30.0 Mbits/sec 0.283 ms 0/2587 (0%) +[UE3] [2025-07-19 14:24:02] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2593 (0%) +[UE3] [2025-07-19 14:24:03] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.123 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:04] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:05] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:06] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:07] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:08] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:09] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:10] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:11] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:12] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.198 ms 0/2591 (0%) +[UE3] [2025-07-19 14:24:13] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:14] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.275 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:15] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:16] [ 5] 54.00-55.00 sec 3.57 MBytes 30.0 Mbits/sec 0.356 ms 0/2586 (0%) +[UE3] [2025-07-19 14:24:17] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2594 (0%) +[UE3] [2025-07-19 14:24:18] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:19] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:20] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.286 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:21] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:22] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2592 (0%) +[UE3] [2025-07-19 14:24:23] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.155 ms 0/2588 (0%) +[UE3] [2025-07-19 14:24:24] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:25] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2591 (0%) +[UE3] [2025-07-19 14:24:26] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:27] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.269 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:28] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.124 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:29] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:30] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2591 (0%) +[UE3] [2025-07-19 14:24:31] [ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2586 (0%) +[UE3] [2025-07-19 14:24:32] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2592 (0%) +[UE3] [2025-07-19 14:24:33] [ 5] 71.00-72.00 sec 3.57 MBytes 30.0 Mbits/sec 0.108 ms 0/2588 (0%) +[UE3] [2025-07-19 14:24:34] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2592 (0%) +[UE3] [2025-07-19 14:24:35] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.393 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:36] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:37] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.119 ms 0/2593 (0%) +[UE3] [2025-07-19 14:24:38] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.205 ms 0/2587 (0%) +[UE3] [2025-07-19 14:24:39] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2592 (0%) +[UE3] [2025-07-19 14:24:40] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.235 ms 0/2588 (0%) +[UE3] [2025-07-19 14:24:41] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:42] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:43] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:44] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2591 (0%) +[UE3] [2025-07-19 14:24:45] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:46] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:47] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:48] [ 5] 86.00-87.00 sec 3.57 MBytes 30.0 Mbits/sec 0.160 ms 0/2587 (0%) +[UE3] [2025-07-19 14:24:49] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2592 (0%) +[UE3] [2025-07-19 14:24:50] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:51] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:52] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:53] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:54] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:55] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2589 (0%) +[UE3] [2025-07-19 14:24:56] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.223 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:57] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE3] [2025-07-19 14:24:58] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.243 ms 0/2588 (0%) +[UE3] [2025-07-19 14:24:59] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2591 (0%) +[UE3] [2025-07-19 14:25:00] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2590 (0%) +[UE3] [2025-07-19 14:25:01] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2589 (0%) +[UE3] [2025-07-19 14:25:03] [ 5] 0.00-1.00 sec 9.84 MBytes 82.5 Mbits/sec 0.182 ms 0/7123 (0%) +[UE3] [2025-07-19 14:25:04] [ 5] 1.00-2.00 sec 12.5 MBytes 104 Mbits/sec 0.126 ms 0/9018 (0%) +[UE3] [2025-07-19 14:25:05] [ 5] 2.00-3.00 sec 11.1 MBytes 93.5 Mbits/sec 0.097 ms 273/8345 (3.3%) +[UE3] [2025-07-19 14:25:06] [ 5] 3.00-4.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1454/10406 (14%) +[UE3] [2025-07-19 14:25:07] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1489/10300 (14%) +[UE3] [2025-07-19 14:25:08] [ 5] 5.00-6.00 sec 13.2 MBytes 110 Mbits/sec 0.077 ms 1308/10842 (12%) +[UE3] [2025-07-19 14:25:09] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.102 ms 1170/9981 (12%) +[UE3] [2025-07-19 14:25:10] [ 5] 7.00-8.00 sec 12.4 MBytes 104 Mbits/sec 0.104 ms 1411/10379 (14%) +[UE3] [2025-07-19 14:25:11] [ 5] 8.00-9.00 sec 12.1 MBytes 102 Mbits/sec 0.113 ms 1533/10327 (15%) +[UE3] [2025-07-19 14:25:12] [ 5] 9.00-10.00 sec 11.8 MBytes 99.0 Mbits/sec 0.182 ms 1527/10073 (15%) +[UE3] [2025-07-19 14:25:13] [ 5] 10.00-11.00 sec 12.8 MBytes 107 Mbits/sec 0.102 ms 1631/10869 (15%) +[UE3] [2025-07-19 14:25:14] [ 5] 11.00-12.00 sec 12.3 MBytes 104 Mbits/sec 0.134 ms 1253/10196 (12%) +[UE3] [2025-07-19 14:25:15] [ 5] 12.00-13.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1298/10263 (13%) +[UE3] [2025-07-19 14:25:16] [ 5] 13.00-14.00 sec 11.6 MBytes 97.1 Mbits/sec 0.100 ms 1197/9579 (12%) +[UE3] [2025-07-19 14:25:17] [ 5] 14.00-15.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 2313/11127 (21%) +[UE3] [2025-07-19 14:25:18] [ 5] 15.00-16.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1321/10269 (13%) +[UE3] [2025-07-19 14:25:19] [ 5] 16.00-17.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1320/10285 (13%) +[UE3] [2025-07-19 14:25:20] [ 5] 17.00-18.00 sec 13.0 MBytes 109 Mbits/sec 0.109 ms 1566/10946 (14%) +[UE3] [2025-07-19 14:25:21] [ 5] 18.00-19.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1314/10139 (13%) +[UE3] [2025-07-19 14:25:22] [ 5] 19.00-20.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1175/10134 (12%) +[UE3] [2025-07-19 14:25:23] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1710/10513 (16%) +[UE3] [2025-07-19 14:25:24] [ 5] 21.00-22.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1409/10374 (14%) +[UE3] [2025-07-19 14:25:25] [ 5] 22.00-23.00 sec 12.4 MBytes 104 Mbits/sec 0.090 ms 1430/10389 (14%) +[UE3] [2025-07-19 14:25:26] [ 5] 23.00-24.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1466/10269 (14%) +[UE3] [2025-07-19 14:25:27] [ 5] 24.00-25.00 sec 12.4 MBytes 104 Mbits/sec 0.120 ms 1341/10299 (13%) +[UE3] [2025-07-19 14:25:28] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1364/10179 (13%) +[UE3] [2025-07-19 14:25:29] [ 5] 26.00-27.00 sec 12.4 MBytes 104 Mbits/sec 0.100 ms 1414/10368 (14%) +[UE3] [2025-07-19 14:25:30] [ 5] 27.00-28.00 sec 13.0 MBytes 109 Mbits/sec 0.122 ms 1451/10852 (13%) +[UE3] [2025-07-19 14:25:31] [ 5] 28.00-29.00 sec 12.2 MBytes 102 Mbits/sec 0.129 ms 1304/10130 (13%) +[UE3] [2025-07-19 14:25:32] [ 5] 29.00-30.00 sec 12.3 MBytes 104 Mbits/sec 0.079 ms 1421/10357 (14%) +[UE3] [2025-07-19 14:25:33] [ 5] 30.00-31.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1441/10407 (14%) +[UE3] [2025-07-19 14:25:34] [ 5] 31.00-32.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1611/10435 (15%) +[UE3] [2025-07-19 14:25:35] [ 5] 32.00-33.00 sec 11.7 MBytes 98.5 Mbits/sec 0.088 ms 1291/9792 (13%) +[UE3] [2025-07-19 14:25:36] [ 5] 33.00-34.00 sec 13.0 MBytes 109 Mbits/sec 0.081 ms 1660/11061 (15%) +[UE3] [2025-07-19 14:25:37] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1212/10037 (12%) +[UE3] [2025-07-19 14:25:38] [ 5] 35.00-36.00 sec 12.3 MBytes 104 Mbits/sec 0.080 ms 1589/10526 (15%) +[UE3] [2025-07-19 14:25:39] [ 5] 36.00-37.00 sec 12.2 MBytes 102 Mbits/sec 0.136 ms 1269/10081 (13%) +[UE3] [2025-07-19 14:25:40] [ 5] 37.00-38.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1323/10301 (13%) +[UE3] [2025-07-19 14:25:41] [ 5] 38.00-39.00 sec 12.3 MBytes 104 Mbits/sec 0.093 ms 1456/10393 (14%) +[UE3] [2025-07-19 14:25:42] [ 5] 39.00-40.00 sec 12.3 MBytes 103 Mbits/sec 0.118 ms 1372/10283 (13%) +[UE3] [2025-07-19 14:25:43] [ 5] 40.00-41.00 sec 12.9 MBytes 108 Mbits/sec 0.120 ms 1476/10793 (14%) +[UE3] [2025-07-19 14:25:44] [ 5] 41.00-42.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1283/10231 (13%) +[UE3] [2025-07-19 14:25:45] [ 5] 42.00-43.00 sec 11.5 MBytes 96.9 Mbits/sec 0.080 ms 1406/9769 (14%) +[UE3] [2025-07-19 14:25:46] [ 5] 43.00-44.00 sec 11.0 MBytes 91.9 Mbits/sec 0.092 ms 1604/9540 (17%) +[UE3] [2025-07-19 14:25:47] [ 5] 44.00-45.00 sec 11.6 MBytes 97.0 Mbits/sec 0.097 ms 3327/11703 (28%) +[UE3] [2025-07-19 14:25:48] [ 5] 45.00-46.00 sec 12.3 MBytes 104 Mbits/sec 0.100 ms 1354/10297 (13%) +[UE3] [2025-07-19 14:25:49] [ 5] 46.00-47.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1362/10187 (13%) +[UE3] [2025-07-19 14:25:50] [ 5] 47.00-48.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1307/10266 (13%) +[UE3] [2025-07-19 14:25:51] [ 5] 48.00-49.00 sec 13.0 MBytes 109 Mbits/sec 0.079 ms 1566/10959 (14%) +[UE3] [2025-07-19 14:25:52] [ 5] 49.00-50.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1239/10050 (12%) +[UE3] [2025-07-19 14:25:53] [ 5] 50.00-51.00 sec 12.4 MBytes 104 Mbits/sec 0.123 ms 1294/10257 (13%) +[UE3] [2025-07-19 14:25:54] [ 5] 51.00-52.00 sec 12.4 MBytes 104 Mbits/sec 0.089 ms 1414/10366 (14%) +[UE3] [2025-07-19 14:25:55] [ 5] 52.00-53.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1381/10193 (14%) +[UE3] [2025-07-19 14:25:56] [ 5] 53.00-54.00 sec 12.4 MBytes 104 Mbits/sec 0.118 ms 1495/10458 (14%) +[UE3] [2025-07-19 14:25:57] [ 5] 54.00-55.00 sec 13.0 MBytes 109 Mbits/sec 0.090 ms 1514/10909 (14%) +[UE3] [2025-07-19 14:25:58] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.086 ms 1241/10052 (12%) +[UE3] [2025-07-19 14:25:59] [ 5] 56.00-57.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1370/10341 (13%) +[UE3] [2025-07-19 14:26:00] [ 5] 57.00-58.00 sec 12.4 MBytes 104 Mbits/sec 0.123 ms 1385/10330 (13%) +[UE3] [2025-07-19 14:26:01] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1399/10217 (14%) +[UE3] [2025-07-19 14:26:02] [ 5] 59.00-60.00 sec 12.4 MBytes 104 Mbits/sec 0.119 ms 1447/10411 (14%) +[UE3] [2025-07-19 14:26:03] [ 5] 60.00-61.00 sec 12.1 MBytes 102 Mbits/sec 0.076 ms 2004/10802 (19%) +[UE3] [2025-07-19 14:26:04] [ 5] 61.00-62.00 sec 12.4 MBytes 104 Mbits/sec 0.074 ms 1166/10131 (12%) +[UE3] [2025-07-19 14:26:05] [ 5] 62.00-63.00 sec 12.6 MBytes 105 Mbits/sec 0.115 ms 1211/10318 (12%) +[UE3] [2025-07-19 14:26:06] [ 5] 63.00-64.00 sec 11.9 MBytes 100 Mbits/sec 0.068 ms 1524/10172 (15%) +[UE3] [2025-07-19 14:26:07] [ 5] 64.00-65.00 sec 12.4 MBytes 104 Mbits/sec 0.072 ms 1340/10305 (13%) +[UE3] [2025-07-19 14:26:08] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1622/10443 (16%) +[UE3] [2025-07-19 14:26:09] [ 5] 66.00-67.00 sec 12.3 MBytes 104 Mbits/sec 0.076 ms 1441/10382 (14%) +[UE3] [2025-07-19 14:26:10] [ 5] 67.00-68.00 sec 12.4 MBytes 104 Mbits/sec 0.097 ms 1265/10237 (12%) +[UE3] [2025-07-19 14:26:11] [ 5] 68.00-69.00 sec 11.6 MBytes 97.0 Mbits/sec 0.099 ms 1320/9696 (14%) +[UE3] [2025-07-19 14:26:12] [ 5] 69.00-70.00 sec 12.3 MBytes 104 Mbits/sec 0.080 ms 2296/11233 (20%) +[UE3] [2025-07-19 14:26:13] [ 5] 70.00-71.00 sec 11.6 MBytes 97.2 Mbits/sec 0.077 ms 1125/9511 (12%) +[UE3] [2025-07-19 14:26:14] [ 5] 71.00-72.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 2255/11063 (20%) +[UE3] [2025-07-19 14:26:15] [ 5] 72.00-73.00 sec 12.6 MBytes 106 Mbits/sec 0.088 ms 1411/10556 (13%) +[UE3] [2025-07-19 14:26:16] [ 5] 73.00-74.00 sec 11.9 MBytes 99.9 Mbits/sec 0.121 ms 1185/9812 (12%) +[UE3] [2025-07-19 14:26:17] [ 5] 74.00-75.00 sec 13.0 MBytes 109 Mbits/sec 0.087 ms 1683/11080 (15%) +[UE3] [2025-07-19 14:26:18] [ 5] 75.00-76.00 sec 12.3 MBytes 104 Mbits/sec 0.090 ms 1335/10276 (13%) +[UE3] [2025-07-19 14:26:19] [ 5] 76.00-77.00 sec 12.4 MBytes 104 Mbits/sec 0.105 ms 1459/10420 (14%) +[UE3] [2025-07-19 14:26:20] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1410/10235 (14%) +[UE3] [2025-07-19 14:26:21] [ 5] 78.00-79.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1373/10321 (13%) +[UE3] [2025-07-19 14:26:22] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1401/10212 (14%) +[UE3] [2025-07-19 14:26:23] [ 5] 80.00-81.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 1326/10294 (13%) +[UE3] [2025-07-19 14:26:24] [ 5] 81.00-82.00 sec 12.4 MBytes 104 Mbits/sec 0.100 ms 1495/10443 (14%) +[UE3] [2025-07-19 14:26:25] [ 5] 82.00-83.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1455/10266 (14%) +[UE3] [2025-07-19 14:26:26] [ 5] 83.00-84.00 sec 12.4 MBytes 104 Mbits/sec 0.063 ms 1585/10553 (15%) +[UE3] [2025-07-19 14:26:27] [ 5] 84.00-85.00 sec 12.4 MBytes 104 Mbits/sec 0.083 ms 1469/10417 (14%) +[UE3] [2025-07-19 14:26:28] [ 5] 85.00-86.00 sec 12.2 MBytes 102 Mbits/sec 0.111 ms 1441/10252 (14%) +[UE3] [2025-07-19 14:26:29] [ 5] 86.00-87.00 sec 12.4 MBytes 104 Mbits/sec 0.083 ms 1322/10290 (13%) +[UE3] [2025-07-19 14:26:30] [ 5] 87.00-88.00 sec 12.1 MBytes 102 Mbits/sec 3.255 ms 1275/10070 (13%) +[UE3] [2025-07-19 14:26:31] [ 5] 88.00-89.00 sec 13.0 MBytes 109 Mbits/sec 0.121 ms 1483/10890 (14%) +[UE3] [2025-07-19 14:26:32] [ 5] 89.00-90.00 sec 11.0 MBytes 92.0 Mbits/sec 0.101 ms 1170/9109 (13%) +[UE3] [2025-07-19 14:26:33] [ 5] 90.00-91.00 sec 12.4 MBytes 104 Mbits/sec 0.105 ms 2473/11436 (22%) +[UE3] [2025-07-19 14:26:34] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1316/10115 (13%) +[UE3] [2025-07-19 14:26:35] [ 5] 92.00-93.00 sec 12.4 MBytes 104 Mbits/sec 0.105 ms 1535/10500 (15%) +[UE3] [2025-07-19 14:26:36] [ 5] 93.00-94.00 sec 13.0 MBytes 109 Mbits/sec 0.099 ms 1332/10712 (12%) +[UE3] [2025-07-19 14:26:37] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1296/10121 (13%) +[UE3] [2025-07-19 14:26:38] [ 5] 95.00-96.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1291/10250 (13%) +[UE3] [2025-07-19 14:26:39] [ 5] 96.00-97.00 sec 12.3 MBytes 104 Mbits/sec 0.083 ms 1402/10345 (14%) +[UE3] [2025-07-19 14:26:40] [ 5] 97.00-98.00 sec 13.0 MBytes 109 Mbits/sec 0.106 ms 1374/10782 (13%) +[UE3] [2025-07-19 14:26:41] [ 5] 98.00-99.00 sec 11.6 MBytes 97.0 Mbits/sec 0.125 ms 1296/9672 (13%) +[UE3] [2025-07-19 14:26:43] [ 5] 99.00-100.00 sec 13.0 MBytes 109 Mbits/sec 0.078 ms 1699/11092 (15%) +[UE3] [2025-07-19 14:26:44] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.145 ms 0/2715 (0%) +[UE3] [2025-07-19 14:26:45] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:46] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.271 ms 0/2589 (0%) +[UE3] [2025-07-19 14:26:47] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:48] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:49] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:50] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2589 (0%) +[UE3] [2025-07-19 14:26:51] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:52] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:53] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:54] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.398 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:55] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2589 (0%) +[UE3] [2025-07-19 14:26:56] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:57] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:58] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2590 (0%) +[UE3] [2025-07-19 14:26:59] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:00] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:01] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:02] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:03] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.168 ms 0/2587 (0%) +[UE3] [2025-07-19 14:27:04] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2593 (0%) +[UE3] [2025-07-19 14:27:05] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:06] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:07] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:08] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:09] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:10] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.288 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:11] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:12] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.154 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:13] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:14] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2587 (0%) +[UE3] [2025-07-19 14:27:15] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2592 (0%) +[UE3] [2025-07-19 14:27:16] [ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 0.211 ms 0/2587 (0%) +[UE3] [2025-07-19 14:27:17] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2593 (0%) +[UE3] [2025-07-19 14:27:18] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.245 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:19] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:20] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:21] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2591 (0%) +[UE3] [2025-07-19 14:27:22] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.161 ms 0/2587 (0%) +[UE3] [2025-07-19 14:27:23] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2592 (0%) +[UE3] [2025-07-19 14:27:24] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:25] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:26] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:27] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:28] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:29] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:30] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:31] [ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 0.359 ms 0/2587 (0%) +[UE3] [2025-07-19 14:27:32] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2592 (0%) +[UE3] [2025-07-19 14:27:33] [ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 0.168 ms 0/2588 (0%) +[UE3] [2025-07-19 14:27:34] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2592 (0%) +[UE3] [2025-07-19 14:27:35] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:36] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:37] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:38] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:39] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:40] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:41] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:42] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:43] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.138 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:44] [ 5] 60.00-61.00 sec 3.57 MBytes 30.0 Mbits/sec 0.202 ms 0/2587 (0%) +[UE3] [2025-07-19 14:27:45] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.267 ms 0/2591 (0%) +[UE3] [2025-07-19 14:27:46] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2591 (0%) +[UE3] [2025-07-19 14:27:47] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.335 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:48] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:49] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:50] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:51] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:52] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:53] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2591 (0%) +[UE3] [2025-07-19 14:27:54] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:55] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:56] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:57] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.176 ms 0/2590 (0%) +[UE3] [2025-07-19 14:27:58] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2589 (0%) +[UE3] [2025-07-19 14:27:59] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:00] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2591 (0%) +[UE3] [2025-07-19 14:28:01] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:02] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:03] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:04] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:05] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.310 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:06] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.250 ms 0/2591 (0%) +[UE3] [2025-07-19 14:28:07] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:08] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:09] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:10] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.246 ms 0/2591 (0%) +[UE3] [2025-07-19 14:28:11] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.172 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:12] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.419 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:13] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:14] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:15] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE3] [2025-07-19 14:28:16] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:17] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2591 (0%) +[UE3] [2025-07-19 14:28:18] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.174 ms 0/2587 (0%) +[UE3] [2025-07-19 14:28:19] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2593 (0%) +[UE3] [2025-07-19 14:28:20] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.126 ms 0/2587 (0%) +[UE3] [2025-07-19 14:28:21] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.177 ms 0/2589 (0%) +[UE3] [2025-07-19 14:28:22] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2592 (0%) +[UE3] [2025-07-19 14:28:23] [ 5] 99.00-100.00 sec 3.57 MBytes 30.0 Mbits/sec 0.114 ms 0/2587 (0%) +[UE3] [2025-07-19 14:28:25] [ 5] 0.00-1.00 sec 9.87 MBytes 82.8 Mbits/sec 0.147 ms 0/7149 (0%) +[UE3] [2025-07-19 14:28:26] [ 5] 1.00-2.00 sec 12.3 MBytes 103 Mbits/sec 0.221 ms 0/8930 (0%) +[UE3] [2025-07-19 14:28:27] [ 5] 2.00-3.00 sec 11.3 MBytes 94.9 Mbits/sec 0.088 ms 407/8596 (4.7%) +[UE3] [2025-07-19 14:28:28] [ 5] 3.00-4.00 sec 12.7 MBytes 107 Mbits/sec 0.089 ms 1413/10628 (13%) +[UE3] [2025-07-19 14:28:29] [ 5] 4.00-5.00 sec 12.6 MBytes 106 Mbits/sec 0.118 ms 1269/10407 (12%) +[UE3] [2025-07-19 14:28:30] [ 5] 5.00-6.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1313/10127 (13%) +[UE3] [2025-07-19 14:28:31] [ 5] 6.00-7.00 sec 12.4 MBytes 104 Mbits/sec 0.082 ms 1609/10564 (15%) +[UE3] [2025-07-19 14:28:32] [ 5] 7.00-8.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1254/10062 (12%) +[UE3] [2025-07-19 14:28:33] [ 5] 8.00-9.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1352/10316 (13%) +[UE3] [2025-07-19 14:28:34] [ 5] 9.00-10.00 sec 12.6 MBytes 105 Mbits/sec 0.069 ms 1625/10723 (15%) +[UE3] [2025-07-19 14:28:35] [ 5] 10.00-11.00 sec 12.0 MBytes 100 Mbits/sec 1.659 ms 1381/10050 (14%) +[UE3] [2025-07-19 14:28:36] [ 5] 11.00-12.00 sec 13.2 MBytes 110 Mbits/sec 0.070 ms 1216/10745 (11%) +[UE3] [2025-07-19 14:28:37] [ 5] 12.00-13.00 sec 11.4 MBytes 95.4 Mbits/sec 0.126 ms 1160/9392 (12%) +[UE3] [2025-07-19 14:28:38] [ 5] 13.00-14.00 sec 12.4 MBytes 104 Mbits/sec 0.093 ms 1898/10853 (17%) +[UE3] [2025-07-19 14:28:39] [ 5] 14.00-15.00 sec 13.0 MBytes 109 Mbits/sec 0.091 ms 1395/10793 (13%) +[UE3] [2025-07-19 14:28:40] [ 5] 15.00-16.00 sec 12.4 MBytes 104 Mbits/sec 0.077 ms 1201/10155 (12%) +[UE3] [2025-07-19 14:28:41] [ 5] 16.00-17.00 sec 12.7 MBytes 106 Mbits/sec 0.077 ms 1327/10516 (13%) +[UE3] [2025-07-19 14:28:42] [ 5] 17.00-18.00 sec 12.5 MBytes 104 Mbits/sec 0.083 ms 1313/10335 (13%) +[UE3] [2025-07-19 14:28:43] [ 5] 18.00-19.00 sec 11.0 MBytes 91.9 Mbits/sec 0.114 ms 1082/9018 (12%) +[UE3] [2025-07-19 14:28:44] [ 5] 19.00-20.00 sec 12.4 MBytes 104 Mbits/sec 0.089 ms 2348/11303 (21%) +[UE3] [2025-07-19 14:28:45] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1636/10463 (16%) +[UE3] [2025-07-19 14:28:46] [ 5] 21.00-22.00 sec 13.0 MBytes 109 Mbits/sec 0.089 ms 1334/10716 (12%) +[UE3] [2025-07-19 14:28:47] [ 5] 22.00-23.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1383/10351 (13%) +[UE3] [2025-07-19 14:28:48] [ 5] 23.00-24.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1310/10258 (13%) +[UE3] [2025-07-19 14:28:49] [ 5] 24.00-25.00 sec 12.2 MBytes 102 Mbits/sec 0.104 ms 1270/10080 (13%) +[UE3] [2025-07-19 14:28:50] [ 5] 25.00-26.00 sec 11.6 MBytes 97.1 Mbits/sec 0.089 ms 1257/9639 (13%) +[UE3] [2025-07-19 14:28:51] [ 5] 26.00-27.00 sec 12.4 MBytes 104 Mbits/sec 0.119 ms 1989/10953 (18%) +[UE3] [2025-07-19 14:28:52] [ 5] 27.00-28.00 sec 13.0 MBytes 109 Mbits/sec 0.090 ms 1498/10879 (14%) +[UE3] [2025-07-19 14:28:53] [ 5] 28.00-29.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1280/10106 (13%) +[UE3] [2025-07-19 14:28:54] [ 5] 29.00-30.00 sec 12.3 MBytes 104 Mbits/sec 0.094 ms 1325/10262 (13%) +[UE3] [2025-07-19 14:28:55] [ 5] 30.00-31.00 sec 12.4 MBytes 104 Mbits/sec 0.104 ms 1373/10337 (13%) +[UE3] [2025-07-19 14:28:56] [ 5] 31.00-32.00 sec 12.2 MBytes 102 Mbits/sec 0.093 ms 1718/10537 (16%) +[UE3] [2025-07-19 14:28:57] [ 5] 32.00-33.00 sec 12.4 MBytes 104 Mbits/sec 0.083 ms 1315/10259 (13%) +[UE3] [2025-07-19 14:28:58] [ 5] 33.00-34.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1275/10093 (13%) +[UE3] [2025-07-19 14:28:59] [ 5] 34.00-35.00 sec 13.4 MBytes 112 Mbits/sec 0.081 ms 1487/11186 (13%) +[UE3] [2025-07-19 14:29:00] [ 5] 35.00-36.00 sec 11.3 MBytes 95.1 Mbits/sec 0.116 ms 1240/9450 (13%) +[UE3] [2025-07-19 14:29:01] [ 5] 36.00-37.00 sec 13.0 MBytes 109 Mbits/sec 0.119 ms 1655/11063 (15%) +[UE3] [2025-07-19 14:29:02] [ 5] 37.00-38.00 sec 11.6 MBytes 97.0 Mbits/sec 0.088 ms 1140/9515 (12%) +[UE3] [2025-07-19 14:29:03] [ 5] 38.00-39.00 sec 12.4 MBytes 104 Mbits/sec 0.110 ms 2076/11020 (19%) +[UE3] [2025-07-19 14:29:04] [ 5] 39.00-40.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1382/10207 (14%) +[UE3] [2025-07-19 14:29:05] [ 5] 40.00-41.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1360/10318 (13%) +[UE3] [2025-07-19 14:29:06] [ 5] 41.00-42.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1384/10187 (14%) +[UE3] [2025-07-19 14:29:07] [ 5] 42.00-43.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1636/10602 (15%) +[UE3] [2025-07-19 14:29:08] [ 5] 43.00-44.00 sec 11.8 MBytes 98.7 Mbits/sec 0.111 ms 1326/9847 (13%) +[UE3] [2025-07-19 14:29:09] [ 5] 44.00-45.00 sec 12.2 MBytes 102 Mbits/sec 0.069 ms 2227/11041 (20%) +[UE3] [2025-07-19 14:29:10] [ 5] 45.00-46.00 sec 12.1 MBytes 102 Mbits/sec 0.115 ms 1240/10035 (12%) +[UE3] [2025-07-19 14:29:11] [ 5] 46.00-47.00 sec 12.6 MBytes 106 Mbits/sec 0.071 ms 1485/10603 (14%) +[UE3] [2025-07-19 14:29:12] [ 5] 47.00-48.00 sec 12.8 MBytes 107 Mbits/sec 0.104 ms 1216/10463 (12%) +[UE3] [2025-07-19 14:29:13] [ 5] 48.00-49.00 sec 12.2 MBytes 102 Mbits/sec 0.126 ms 1382/10190 (14%) +[UE3] [2025-07-19 14:29:14] [ 5] 49.00-50.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1481/10446 (14%) +[UE3] [2025-07-19 14:29:15] [ 5] 50.00-51.00 sec 11.9 MBytes 99.7 Mbits/sec 0.095 ms 1492/10104 (15%) +[UE3] [2025-07-19 14:29:16] [ 5] 51.00-52.00 sec 12.0 MBytes 101 Mbits/sec 0.108 ms 1454/10157 (14%) +[UE3] [2025-07-19 14:29:17] [ 5] 52.00-53.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1545/10508 (15%) +[UE3] [2025-07-19 14:29:18] [ 5] 53.00-54.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1475/10298 (14%) +[UE3] [2025-07-19 14:29:19] [ 5] 54.00-55.00 sec 13.0 MBytes 109 Mbits/sec 0.084 ms 1502/10897 (14%) +[UE3] [2025-07-19 14:29:20] [ 5] 55.00-56.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1395/10346 (13%) +[UE3] [2025-07-19 14:29:21] [ 5] 56.00-57.00 sec 12.2 MBytes 102 Mbits/sec 0.108 ms 1321/10142 (13%) +[UE3] [2025-07-19 14:29:22] [ 5] 57.00-58.00 sec 12.4 MBytes 104 Mbits/sec 0.118 ms 1401/10356 (14%) +[UE3] [2025-07-19 14:29:23] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1468/10276 (14%) +[UE3] [2025-07-19 14:29:24] [ 5] 59.00-60.00 sec 11.8 MBytes 98.8 Mbits/sec 0.069 ms 1315/9840 (13%) +[UE3] [2025-07-19 14:29:25] [ 5] 60.00-61.00 sec 10.7 MBytes 90.1 Mbits/sec 0.072 ms 1799/9581 (19%) +[UE3] [2025-07-19 14:29:26] [ 5] 61.00-62.00 sec 13.0 MBytes 109 Mbits/sec 0.096 ms 2527/11919 (21%) +[UE3] [2025-07-19 14:29:27] [ 5] 62.00-63.00 sec 11.8 MBytes 98.7 Mbits/sec 0.108 ms 1298/9819 (13%) +[UE3] [2025-07-19 14:29:28] [ 5] 63.00-64.00 sec 12.9 MBytes 109 Mbits/sec 0.086 ms 1541/10914 (14%) +[UE3] [2025-07-19 14:29:29] [ 5] 64.00-65.00 sec 11.8 MBytes 99.0 Mbits/sec 0.087 ms 1244/9787 (13%) +[UE3] [2025-07-19 14:29:30] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.101 ms 1690/10501 (16%) +[UE3] [2025-07-19 14:29:31] [ 5] 66.00-67.00 sec 13.0 MBytes 109 Mbits/sec 0.084 ms 1584/10965 (14%) +[UE3] [2025-07-19 14:29:32] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.132 ms 1216/10040 (12%) +[UE3] [2025-07-19 14:29:33] [ 5] 68.00-69.00 sec 12.4 MBytes 104 Mbits/sec 0.100 ms 1436/10395 (14%) +[UE3] [2025-07-19 14:29:34] [ 5] 69.00-70.00 sec 11.6 MBytes 97.0 Mbits/sec 0.117 ms 1212/9589 (13%) +[UE3] [2025-07-19 14:29:35] [ 5] 70.00-71.00 sec 12.6 MBytes 105 Mbits/sec 0.049 ms 2425/11520 (21%) +[UE3] [2025-07-19 14:29:36] [ 5] 71.00-72.00 sec 11.3 MBytes 95.2 Mbits/sec 0.129 ms 1211/9426 (13%) +[UE3] [2025-07-19 14:29:37] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.098 ms 1972/10797 (18%) +[UE3] [2025-07-19 14:29:38] [ 5] 73.00-74.00 sec 12.4 MBytes 104 Mbits/sec 0.070 ms 1499/10447 (14%) +[UE3] [2025-07-19 14:29:39] [ 5] 74.00-75.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1342/10296 (13%) +[UE3] [2025-07-19 14:29:40] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1308/10133 (13%) +[UE3] [2025-07-19 14:29:41] [ 5] 76.00-77.00 sec 12.3 MBytes 104 Mbits/sec 0.103 ms 1552/10493 (15%) +[UE3] [2025-07-19 14:29:42] [ 5] 77.00-78.00 sec 12.2 MBytes 102 Mbits/sec 0.099 ms 1401/10219 (14%) +[UE3] [2025-07-19 14:29:43] [ 5] 78.00-79.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1391/10359 (13%) +[UE3] [2025-07-19 14:29:44] [ 5] 79.00-80.00 sec 12.4 MBytes 104 Mbits/sec 0.088 ms 1405/10353 (14%) +[UE3] [2025-07-19 14:29:45] [ 5] 80.00-81.00 sec 11.6 MBytes 97.1 Mbits/sec 0.109 ms 1505/9887 (15%) +[UE3] [2025-07-19 14:29:46] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.069 ms 2131/10942 (19%) +[UE3] [2025-07-19 14:29:47] [ 5] 82.00-83.00 sec 12.4 MBytes 104 Mbits/sec 0.088 ms 1356/10320 (13%) +[UE3] [2025-07-19 14:29:48] [ 5] 83.00-84.00 sec 12.4 MBytes 104 Mbits/sec 0.116 ms 1554/10499 (15%) +[UE3] [2025-07-19 14:29:49] [ 5] 84.00-85.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1359/10170 (13%) +[UE3] [2025-07-19 14:29:50] [ 5] 85.00-86.00 sec 13.0 MBytes 109 Mbits/sec 0.099 ms 1381/10768 (13%) +[UE3] [2025-07-19 14:29:51] [ 5] 86.00-87.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1324/10289 (13%) +[UE3] [2025-07-19 14:29:52] [ 5] 87.00-88.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1425/10244 (14%) +[UE3] [2025-07-19 14:29:53] [ 5] 88.00-89.00 sec 12.3 MBytes 104 Mbits/sec 0.098 ms 1301/10244 (13%) +[UE3] [2025-07-19 14:29:54] [ 5] 89.00-90.00 sec 11.6 MBytes 97.0 Mbits/sec 0.117 ms 1298/9673 (13%) +[UE3] [2025-07-19 14:29:55] [ 5] 90.00-91.00 sec 12.4 MBytes 104 Mbits/sec 0.071 ms 1983/10948 (18%) +[UE3] [2025-07-19 14:29:56] [ 5] 91.00-92.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1340/10161 (13%) +[UE3] [2025-07-19 14:29:57] [ 5] 92.00-93.00 sec 12.4 MBytes 104 Mbits/sec 0.121 ms 1413/10361 (14%) +[UE3] [2025-07-19 14:29:58] [ 5] 93.00-94.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 1562/10527 (15%) +[UE3] [2025-07-19 14:29:59] [ 5] 94.00-95.00 sec 12.6 MBytes 106 Mbits/sec 0.131 ms 1393/10524 (13%) +[UE3] [2025-07-19 14:30:00] [ 5] 95.00-96.00 sec 12.5 MBytes 105 Mbits/sec 0.072 ms 1437/10511 (14%) +[UE3] [2025-07-19 14:30:01] [ 5] 96.00-97.00 sec 12.4 MBytes 104 Mbits/sec 0.093 ms 1397/10356 (13%) +[UE3] [2025-07-19 14:30:02] [ 5] 97.00-98.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1321/10124 (13%) +[UE3] [2025-07-19 14:30:03] [ 5] 98.00-99.00 sec 11.8 MBytes 98.7 Mbits/sec 0.083 ms 1475/9997 (15%) +[UE3] [2025-07-19 14:30:05] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1687/10503 (16%) +[UE3] [2025-07-19 14:30:06] [ 5] 0.00-1.00 sec 3.74 MBytes 31.4 Mbits/sec 0.195 ms 0/2710 (0%) +[UE3] [2025-07-19 14:30:07] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2592 (0%) +[UE3] [2025-07-19 14:30:08] [ 5] 2.00-3.00 sec 3.57 MBytes 30.0 Mbits/sec 0.208 ms 0/2587 (0%) +[UE3] [2025-07-19 14:30:09] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:10] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2591 (0%) +[UE3] [2025-07-19 14:30:11] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.266 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:12] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:13] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:14] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2591 (0%) +[UE3] [2025-07-19 14:30:15] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.183 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:16] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:17] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.260 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:18] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2591 (0%) +[UE3] [2025-07-19 14:30:19] [ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 0.173 ms 0/2587 (0%) +[UE3] [2025-07-19 14:30:20] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2592 (0%) +[UE3] [2025-07-19 14:30:21] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:22] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:23] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:24] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:25] [ 5] 19.00-20.00 sec 3.57 MBytes 30.0 Mbits/sec 0.191 ms 0/2586 (0%) +[UE3] [2025-07-19 14:30:26] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.280 ms 0/2593 (0%) +[UE3] [2025-07-19 14:30:27] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:28] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:29] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.205 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:30] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:31] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:32] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.158 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:33] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:34] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:35] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:36] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:37] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2591 (0%) +[UE3] [2025-07-19 14:30:38] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:39] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.237 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:40] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.258 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:41] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2592 (0%) +[UE3] [2025-07-19 14:30:42] [ 5] 36.00-37.00 sec 3.57 MBytes 30.0 Mbits/sec 0.143 ms 0/2587 (0%) +[UE3] [2025-07-19 14:30:43] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2592 (0%) +[UE3] [2025-07-19 14:30:44] [ 5] 38.00-39.00 sec 3.57 MBytes 30.0 Mbits/sec 0.333 ms 0/2588 (0%) +[UE3] [2025-07-19 14:30:45] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:46] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.212 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:47] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:48] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2591 (0%) +[UE3] [2025-07-19 14:30:49] [ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 0.173 ms 0/2588 (0%) +[UE3] [2025-07-19 14:30:50] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:51] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2592 (0%) +[UE3] [2025-07-19 14:30:52] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2587 (0%) +[UE3] [2025-07-19 14:30:53] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:54] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:55] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:56] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2590 (0%) +[UE3] [2025-07-19 14:30:57] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:30:58] [ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 0.215 ms 0/2588 (0%) +[UE3] [2025-07-19 14:30:59] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2591 (0%) +[UE3] [2025-07-19 14:31:00] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.221 ms 0/2591 (0%) +[UE3] [2025-07-19 14:31:01] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:02] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:03] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:04] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.243 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:05] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.229 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:06] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:07] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:08] [ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:09] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.277 ms 0/2588 (0%) +[UE3] [2025-07-19 14:31:10] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2594 (0%) +[UE3] [2025-07-19 14:31:11] [ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 0.238 ms 0/2587 (0%) +[UE3] [2025-07-19 14:31:12] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:13] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:14] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:15] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.312 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:16] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:17] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.121 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:18] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:19] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2591 (0%) +[UE3] [2025-07-19 14:31:20] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:21] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:22] [ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 0.202 ms 0/2588 (0%) +[UE3] [2025-07-19 14:31:23] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2593 (0%) +[UE3] [2025-07-19 14:31:24] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.280 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:25] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:26] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2591 (0%) +[UE3] [2025-07-19 14:31:27] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:28] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.262 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:29] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.273 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:30] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2593 (0%) +[UE3] [2025-07-19 14:31:31] [ 5] 85.00-86.00 sec 3.57 MBytes 29.9 Mbits/sec 0.328 ms 0/2584 (0%) +[UE3] [2025-07-19 14:31:32] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.264 ms 0/2593 (0%) +[UE3] [2025-07-19 14:31:33] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:34] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:35] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:36] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.220 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:37] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.134 ms 0/2591 (0%) +[UE3] [2025-07-19 14:31:38] [ 5] 92.00-93.00 sec 3.57 MBytes 30.0 Mbits/sec 0.203 ms 0/2586 (0%) +[UE3] [2025-07-19 14:31:39] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.135 ms 0/2592 (0%) +[UE3] [2025-07-19 14:31:40] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.213 ms 0/2587 (0%) +[UE3] [2025-07-19 14:31:41] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2593 (0%) +[UE3] [2025-07-19 14:31:42] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2589 (0%) +[UE3] [2025-07-19 14:31:43] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:44] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 14:31:46] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2591 (0%) +[UE3] [2025-07-19 14:31:48] [ 5] 0.00-1.00 sec 9.64 MBytes 80.8 Mbits/sec 0.176 ms 0/6979 (0%) +[UE3] [2025-07-19 14:31:49] [ 5] 1.00-2.00 sec 12.4 MBytes 104 Mbits/sec 0.152 ms 0/8970 (0%) +[UE3] [2025-07-19 14:31:50] [ 5] 2.00-3.00 sec 11.8 MBytes 98.7 Mbits/sec 0.075 ms 703/9226 (7.6%) +[UE3] [2025-07-19 14:31:51] [ 5] 3.00-4.00 sec 12.2 MBytes 102 Mbits/sec 0.106 ms 1338/10145 (13%) +[UE3] [2025-07-19 14:31:52] [ 5] 4.00-5.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1274/10228 (12%) +[UE3] [2025-07-19 14:31:53] [ 5] 5.00-6.00 sec 11.6 MBytes 96.9 Mbits/sec 0.087 ms 1389/9758 (14%) +[UE3] [2025-07-19 14:31:54] [ 5] 6.00-7.00 sec 12.4 MBytes 104 Mbits/sec 0.090 ms 2119/11089 (19%) +[UE3] [2025-07-19 14:31:55] [ 5] 7.00-8.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1261/10077 (13%) +[UE3] [2025-07-19 14:31:56] [ 5] 8.00-9.00 sec 12.3 MBytes 104 Mbits/sec 0.079 ms 1501/10442 (14%) +[UE3] [2025-07-19 14:31:57] [ 5] 9.00-10.00 sec 12.6 MBytes 106 Mbits/sec 0.094 ms 1527/10645 (14%) +[UE3] [2025-07-19 14:31:58] [ 5] 10.00-11.00 sec 12.0 MBytes 100 Mbits/sec 0.075 ms 1317/9985 (13%) +[UE3] [2025-07-19 14:31:59] [ 5] 11.00-12.00 sec 12.3 MBytes 104 Mbits/sec 0.085 ms 1339/10280 (13%) +[UE3] [2025-07-19 14:32:00] [ 5] 12.00-13.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1470/10286 (14%) +[UE3] [2025-07-19 14:32:01] [ 5] 13.00-14.00 sec 12.4 MBytes 104 Mbits/sec 0.087 ms 1660/10630 (16%) +[UE3] [2025-07-19 14:32:02] [ 5] 14.00-15.00 sec 12.3 MBytes 104 Mbits/sec 0.087 ms 1501/10442 (14%) +[UE3] [2025-07-19 14:32:03] [ 5] 15.00-16.00 sec 12.5 MBytes 105 Mbits/sec 0.087 ms 1286/10368 (12%) +[UE3] [2025-07-19 14:32:04] [ 5] 16.00-17.00 sec 12.8 MBytes 107 Mbits/sec 0.069 ms 1346/10622 (13%) +[UE3] [2025-07-19 14:32:05] [ 5] 17.00-18.00 sec 12.4 MBytes 104 Mbits/sec 0.083 ms 1277/10243 (12%) +[UE3] [2025-07-19 14:32:06] [ 5] 18.00-19.00 sec 12.0 MBytes 100 Mbits/sec 0.100 ms 1272/9930 (13%) +[UE3] [2025-07-19 14:32:07] [ 5] 19.00-20.00 sec 12.4 MBytes 104 Mbits/sec 0.088 ms 1425/10396 (14%) +[UE3] [2025-07-19 14:32:08] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1582/10383 (15%) +[UE3] [2025-07-19 14:32:09] [ 5] 21.00-22.00 sec 11.8 MBytes 98.6 Mbits/sec 0.079 ms 1332/9848 (14%) +[UE3] [2025-07-19 14:32:10] [ 5] 22.00-23.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 2375/11191 (21%) +[UE3] [2025-07-19 14:32:11] [ 5] 23.00-24.00 sec 12.4 MBytes 104 Mbits/sec 0.091 ms 1235/10187 (12%) +[UE3] [2025-07-19 14:32:12] [ 5] 24.00-25.00 sec 12.8 MBytes 107 Mbits/sec 0.116 ms 1391/10671 (13%) +[UE3] [2025-07-19 14:32:13] [ 5] 25.00-26.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1250/10194 (12%) +[UE3] [2025-07-19 14:32:14] [ 5] 26.00-27.00 sec 12.4 MBytes 104 Mbits/sec 0.118 ms 1251/10197 (12%) +[UE3] [2025-07-19 14:32:15] [ 5] 27.00-28.00 sec 12.9 MBytes 108 Mbits/sec 0.129 ms 1289/10652 (12%) +[UE3] [2025-07-19 14:32:16] [ 5] 28.00-29.00 sec 12.4 MBytes 104 Mbits/sec 0.075 ms 1272/10261 (12%) +[UE3] [2025-07-19 14:32:17] [ 5] 29.00-30.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1367/10178 (13%) +[UE3] [2025-07-19 14:32:18] [ 5] 30.00-31.00 sec 12.4 MBytes 104 Mbits/sec 0.104 ms 1338/10306 (13%) +[UE3] [2025-07-19 14:32:19] [ 5] 31.00-32.00 sec 11.7 MBytes 98.5 Mbits/sec 0.057 ms 1416/9919 (14%) +[UE3] [2025-07-19 14:32:20] [ 5] 32.00-33.00 sec 12.8 MBytes 107 Mbits/sec 0.071 ms 1876/11132 (17%) +[UE3] [2025-07-19 14:32:21] [ 5] 33.00-34.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1343/10311 (13%) +[UE3] [2025-07-19 14:32:22] [ 5] 34.00-35.00 sec 12.1 MBytes 102 Mbits/sec 0.081 ms 1327/10121 (13%) +[UE3] [2025-07-19 14:32:23] [ 5] 35.00-36.00 sec 12.4 MBytes 104 Mbits/sec 0.116 ms 1380/10345 (13%) +[UE3] [2025-07-19 14:32:24] [ 5] 36.00-37.00 sec 12.8 MBytes 107 Mbits/sec 0.076 ms 1410/10652 (13%) +[UE3] [2025-07-19 14:32:25] [ 5] 37.00-38.00 sec 12.6 MBytes 106 Mbits/sec 0.123 ms 1292/10404 (12%) +[UE3] [2025-07-19 14:32:26] [ 5] 38.00-39.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1317/10126 (13%) +[UE3] [2025-07-19 14:32:27] [ 5] 39.00-40.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 1333/10310 (13%) +[UE3] [2025-07-19 14:32:28] [ 5] 40.00-41.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1511/10310 (15%) +[UE3] [2025-07-19 14:32:29] [ 5] 41.00-42.00 sec 12.4 MBytes 104 Mbits/sec 0.146 ms 1526/10484 (15%) +[UE3] [2025-07-19 14:32:30] [ 5] 42.00-43.00 sec 11.0 MBytes 91.9 Mbits/sec 0.089 ms 1253/9184 (14%) +[UE3] [2025-07-19 14:32:31] [ 5] 43.00-44.00 sec 11.6 MBytes 97.1 Mbits/sec 0.077 ms 2816/11200 (25%) +[UE3] [2025-07-19 14:32:32] [ 5] 44.00-45.00 sec 12.5 MBytes 105 Mbits/sec 0.099 ms 1582/10620 (15%) +[UE3] [2025-07-19 14:32:33] [ 5] 45.00-46.00 sec 12.9 MBytes 108 Mbits/sec 0.104 ms 1289/10601 (12%) +[UE3] [2025-07-19 14:32:34] [ 5] 46.00-47.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1335/10150 (13%) +[UE3] [2025-07-19 14:32:35] [ 5] 47.00-48.00 sec 12.4 MBytes 104 Mbits/sec 0.073 ms 1376/10324 (13%) +[UE3] [2025-07-19 14:32:36] [ 5] 48.00-49.00 sec 11.5 MBytes 96.9 Mbits/sec 0.077 ms 2019/10381 (19%) +[UE3] [2025-07-19 14:32:37] [ 5] 49.00-50.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1381/10360 (13%) +[UE3] [2025-07-19 14:32:38] [ 5] 50.00-51.00 sec 13.0 MBytes 109 Mbits/sec 0.085 ms 1386/10772 (13%) +[UE3] [2025-07-19 14:32:39] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.100 ms 1249/10065 (12%) +[UE3] [2025-07-19 14:32:40] [ 5] 52.00-53.00 sec 11.1 MBytes 93.5 Mbits/sec 0.108 ms 1240/9311 (13%) +[UE3] [2025-07-19 14:32:41] [ 5] 53.00-54.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 2360/11181 (21%) +[UE3] [2025-07-19 14:32:42] [ 5] 54.00-55.00 sec 10.9 MBytes 91.7 Mbits/sec 0.101 ms 1442/9352 (15%) +[UE3] [2025-07-19 14:32:43] [ 5] 55.00-56.00 sec 12.3 MBytes 103 Mbits/sec 0.122 ms 2406/11303 (21%) +[UE3] [2025-07-19 14:32:44] [ 5] 56.00-57.00 sec 12.9 MBytes 108 Mbits/sec 0.073 ms 1430/10757 (13%) +[UE3] [2025-07-19 14:32:45] [ 5] 57.00-58.00 sec 12.4 MBytes 104 Mbits/sec 0.091 ms 1252/10204 (12%) +[UE3] [2025-07-19 14:32:46] [ 5] 58.00-59.00 sec 11.6 MBytes 97.0 Mbits/sec 0.084 ms 1233/9608 (13%) +[UE3] [2025-07-19 14:32:47] [ 5] 59.00-60.00 sec 11.6 MBytes 96.9 Mbits/sec 0.109 ms 1836/10202 (18%) +[UE3] [2025-07-19 14:32:48] [ 5] 60.00-61.00 sec 13.0 MBytes 109 Mbits/sec 0.079 ms 2110/11506 (18%) +[UE3] [2025-07-19 14:32:49] [ 5] 61.00-62.00 sec 11.6 MBytes 96.9 Mbits/sec 0.090 ms 1232/9600 (13%) +[UE3] [2025-07-19 14:32:50] [ 5] 62.00-63.00 sec 11.0 MBytes 91.9 Mbits/sec 0.106 ms 1444/9381 (15%) +[UE3] [2025-07-19 14:32:51] [ 5] 63.00-64.00 sec 12.4 MBytes 104 Mbits/sec 0.030 ms 2626/11581 (23%) +[UE3] [2025-07-19 14:32:52] [ 5] 64.00-65.00 sec 13.0 MBytes 109 Mbits/sec 0.074 ms 1456/10853 (13%) +[UE3] [2025-07-19 14:32:53] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1393/10204 (14%) +[UE3] [2025-07-19 14:32:54] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.127 ms 1432/10258 (14%) +[UE3] [2025-07-19 14:32:55] [ 5] 67.00-68.00 sec 12.8 MBytes 107 Mbits/sec 0.076 ms 1317/10576 (12%) +[UE3] [2025-07-19 14:32:56] [ 5] 68.00-69.00 sec 12.2 MBytes 103 Mbits/sec 0.074 ms 1237/10089 (12%) +[UE3] [2025-07-19 14:32:57] [ 5] 69.00-70.00 sec 12.2 MBytes 102 Mbits/sec 0.071 ms 1533/10369 (15%) +[UE3] [2025-07-19 14:32:58] [ 5] 70.00-71.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 1505/10191 (15%) +[UE3] [2025-07-19 14:32:59] [ 5] 71.00-72.00 sec 12.8 MBytes 108 Mbits/sec 0.081 ms 1334/10618 (13%) +[UE3] [2025-07-19 14:33:00] [ 5] 72.00-73.00 sec 12.2 MBytes 102 Mbits/sec 0.100 ms 1329/10173 (13%) +[UE3] [2025-07-19 14:33:01] [ 5] 73.00-74.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1627/10462 (16%) +[UE3] [2025-07-19 14:33:02] [ 5] 74.00-75.00 sec 12.0 MBytes 101 Mbits/sec 0.078 ms 1410/10091 (14%) +[UE3] [2025-07-19 14:33:03] [ 5] 75.00-76.00 sec 12.8 MBytes 107 Mbits/sec 0.071 ms 1534/10797 (14%) +[UE3] [2025-07-19 14:33:04] [ 5] 76.00-77.00 sec 11.4 MBytes 95.6 Mbits/sec 0.101 ms 1560/9815 (16%) +[UE3] [2025-07-19 14:33:05] [ 5] 77.00-78.00 sec 12.0 MBytes 101 Mbits/sec 0.115 ms 1682/10408 (16%) +[UE3] [2025-07-19 14:33:06] [ 5] 78.00-79.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1427/10256 (14%) +[UE3] [2025-07-19 14:33:07] [ 5] 79.00-80.00 sec 12.2 MBytes 102 Mbits/sec 0.120 ms 1615/10440 (15%) +[UE3] [2025-07-19 14:33:08] [ 5] 80.00-81.00 sec 12.8 MBytes 108 Mbits/sec 0.112 ms 1648/10933 (15%) +[UE3] [2025-07-19 14:33:09] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.074 ms 1415/10228 (14%) +[UE3] [2025-07-19 14:33:10] [ 5] 82.00-83.00 sec 12.0 MBytes 101 Mbits/sec 0.090 ms 1446/10159 (14%) +[UE3] [2025-07-19 14:33:11] [ 5] 83.00-84.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1432/10265 (14%) +[UE3] [2025-07-19 14:33:12] [ 5] 84.00-85.00 sec 12.8 MBytes 107 Mbits/sec 0.104 ms 1557/10816 (14%) +[UE3] [2025-07-19 14:33:13] [ 5] 85.00-86.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1409/10112 (14%) +[UE3] [2025-07-19 14:33:14] [ 5] 86.00-87.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1423/10266 (14%) +[UE3] [2025-07-19 14:33:15] [ 5] 87.00-88.00 sec 12.0 MBytes 101 Mbits/sec 0.105 ms 1406/10085 (14%) +[UE3] [2025-07-19 14:33:16] [ 5] 88.00-89.00 sec 12.2 MBytes 103 Mbits/sec 0.109 ms 1683/10535 (16%) +[UE3] [2025-07-19 14:33:17] [ 5] 89.00-90.00 sec 12.8 MBytes 108 Mbits/sec 0.100 ms 1441/10724 (13%) +[UE3] [2025-07-19 14:33:18] [ 5] 90.00-91.00 sec 12.0 MBytes 101 Mbits/sec 0.123 ms 1456/10137 (14%) +[UE3] [2025-07-19 14:33:19] [ 5] 91.00-92.00 sec 10.8 MBytes 90.7 Mbits/sec 0.098 ms 1290/9117 (14%) +[UE3] [2025-07-19 14:33:20] [ 5] 92.00-93.00 sec 12.8 MBytes 107 Mbits/sec 0.085 ms 2473/11745 (21%) +[UE3] [2025-07-19 14:33:21] [ 5] 93.00-94.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1518/10336 (15%) +[UE3] [2025-07-19 14:33:22] [ 5] 94.00-95.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1257/9977 (13%) +[UE3] [2025-07-19 14:33:23] [ 5] 95.00-96.00 sec 11.6 MBytes 97.2 Mbits/sec 0.089 ms 1413/9808 (14%) +[UE3] [2025-07-19 14:33:24] [ 5] 96.00-97.00 sec 12.8 MBytes 107 Mbits/sec 0.077 ms 2202/11461 (19%) +[UE3] [2025-07-19 14:33:25] [ 5] 97.00-98.00 sec 12.0 MBytes 101 Mbits/sec 0.081 ms 1292/10005 (13%) +[UE3] [2025-07-19 14:33:26] [ 5] 98.00-99.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1462/10276 (14%) +[UE3] [2025-07-19 14:33:28] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.069 ms 1743/10590 (16%) +[UE3] [2025-07-19 14:33:29] [ 5] 0.00-1.00 sec 3.75 MBytes 31.4 Mbits/sec 0.325 ms 0/2712 (0%) +[UE3] [2025-07-19 14:33:30] [ 5] 1.00-2.00 sec 3.58 MBytes 30.1 Mbits/sec 0.159 ms 0/2595 (0%) +[UE3] [2025-07-19 14:33:31] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.226 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:32] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.153 ms 0/2587 (0%) +[UE3] [2025-07-19 14:33:33] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2593 (0%) +[UE3] [2025-07-19 14:33:34] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.293 ms 0/2589 (0%) +[UE3] [2025-07-19 14:33:35] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:36] [ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:37] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:38] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2589 (0%) +[UE3] [2025-07-19 14:33:39] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.164 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:40] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:41] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:42] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:43] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2589 (0%) +[UE3] [2025-07-19 14:33:44] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:45] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.270 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:46] [ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 0.328 ms 0/2587 (0%) +[UE3] [2025-07-19 14:33:47] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2592 (0%) +[UE3] [2025-07-19 14:33:48] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.238 ms 0/2589 (0%) +[UE3] [2025-07-19 14:33:49] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:50] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2591 (0%) +[UE3] [2025-07-19 14:33:51] [ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 0.242 ms 0/2587 (0%) +[UE3] [2025-07-19 14:33:52] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2592 (0%) +[UE3] [2025-07-19 14:33:53] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.232 ms 0/2588 (0%) +[UE3] [2025-07-19 14:33:54] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2593 (0%) +[UE3] [2025-07-19 14:33:55] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2589 (0%) +[UE3] [2025-07-19 14:33:56] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.320 ms 0/2589 (0%) +[UE3] [2025-07-19 14:33:57] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:58] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2590 (0%) +[UE3] [2025-07-19 14:33:59] [ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 0.303 ms 0/2591 (0%) +[UE3] [2025-07-19 14:34:00] [ 5] 31.00-32.00 sec 3.53 MBytes 29.6 Mbits/sec 0.234 ms 31/2588 (1.2%) +[UE3] [2025-07-19 14:34:01] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:02] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:03] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:04] [ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 0.184 ms 0/2588 (0%) +[UE3] [2025-07-19 14:34:05] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2591 (0%) +[UE3] [2025-07-19 14:34:06] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.249 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:07] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.110 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:08] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:09] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:10] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.196 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:11] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.268 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:12] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:13] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.251 ms 0/2591 (0%) +[UE3] [2025-07-19 14:34:14] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.137 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:15] [ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 0.177 ms 0/2588 (0%) +[UE3] [2025-07-19 14:34:16] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2592 (0%) +[UE3] [2025-07-19 14:34:17] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.124 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:18] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.299 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:19] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:20] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:21] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:22] [ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:23] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.208 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:24] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:25] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.133 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:26] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.148 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:27] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:28] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:29] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.325 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:30] [ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 0.257 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:31] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.145 ms 0/2588 (0%) +[UE3] [2025-07-19 14:34:32] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.287 ms 0/2591 (0%) +[UE3] [2025-07-19 14:34:33] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:34] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:35] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:36] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2591 (0%) +[UE3] [2025-07-19 14:34:37] [ 5] 68.00-69.00 sec 3.57 MBytes 30.0 Mbits/sec 0.215 ms 0/2586 (0%) +[UE3] [2025-07-19 14:34:38] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2592 (0%) +[UE3] [2025-07-19 14:34:39] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:40] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.244 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:41] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:42] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.247 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:43] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:44] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:45] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:46] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:47] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:48] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2591 (0%) +[UE3] [2025-07-19 14:34:49] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.242 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:50] [ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2588 (0%) +[UE3] [2025-07-19 14:34:51] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.153 ms 0/2591 (0%) +[UE3] [2025-07-19 14:34:52] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:53] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:54] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:55] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2589 (0%) +[UE3] [2025-07-19 14:34:56] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:57] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.241 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:58] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 14:34:59] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.170 ms 0/2590 (0%) +[UE3] [2025-07-19 14:35:00] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.319 ms 0/2589 (0%) +[UE3] [2025-07-19 14:35:01] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.115 ms 0/2592 (0%) +[UE3] [2025-07-19 14:35:02] [ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 0.162 ms 0/2588 (0%) +[UE3] [2025-07-19 14:35:03] [ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 0.190 ms 0/2587 (0%) +[UE3] [2025-07-19 14:35:04] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.125 ms 0/2592 (0%) +[UE3] [2025-07-19 14:35:05] [ 5] 96.00-97.00 sec 3.57 MBytes 30.0 Mbits/sec 0.128 ms 0/2588 (0%) +[UE3] [2025-07-19 14:35:06] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2592 (0%) +[UE3] [2025-07-19 14:35:07] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2590 (0%) +[UE3] [2025-07-19 14:35:08] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.290 ms 0/2590 (0%) +[UE3] [2025-07-19 14:35:10] [ 5] 0.00-1.00 sec 9.28 MBytes 77.9 Mbits/sec 0.187 ms 0/6721 (0%) +[UE3] [2025-07-19 14:35:11] [ 5] 1.00-2.00 sec 12.1 MBytes 102 Mbits/sec 0.174 ms 0/8785 (0%) +[UE3] [2025-07-19 14:35:12] [ 5] 2.00-3.00 sec 11.6 MBytes 97.3 Mbits/sec 0.085 ms 627/9023 (6.9%) +[UE3] [2025-07-19 14:35:13] [ 5] 3.00-4.00 sec 12.8 MBytes 107 Mbits/sec 0.080 ms 1345/10610 (13%) +[UE3] [2025-07-19 14:35:14] [ 5] 4.00-5.00 sec 12.0 MBytes 101 Mbits/sec 0.099 ms 1378/10065 (14%) +[UE3] [2025-07-19 14:35:15] [ 5] 5.00-6.00 sec 12.4 MBytes 104 Mbits/sec 0.109 ms 1318/10306 (13%) +[UE3] [2025-07-19 14:35:16] [ 5] 6.00-7.00 sec 12.6 MBytes 105 Mbits/sec 0.085 ms 1454/10561 (14%) +[UE3] [2025-07-19 14:35:17] [ 5] 7.00-8.00 sec 12.0 MBytes 101 Mbits/sec 0.122 ms 1406/10103 (14%) +[UE3] [2025-07-19 14:35:18] [ 5] 8.00-9.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1290/10115 (13%) +[UE3] [2025-07-19 14:35:19] [ 5] 9.00-10.00 sec 11.4 MBytes 95.8 Mbits/sec 0.085 ms 2007/10278 (20%) +[UE3] [2025-07-19 14:35:20] [ 5] 10.00-11.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1988/10806 (18%) +[UE3] [2025-07-19 14:35:21] [ 5] 11.00-12.00 sec 12.2 MBytes 103 Mbits/sec 0.081 ms 1432/10281 (14%) +[UE3] [2025-07-19 14:35:22] [ 5] 12.00-13.00 sec 11.4 MBytes 95.6 Mbits/sec 0.090 ms 1418/9669 (15%) +[UE3] [2025-07-19 14:35:23] [ 5] 13.00-14.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 2137/10942 (20%) +[UE3] [2025-07-19 14:35:24] [ 5] 14.00-15.00 sec 12.6 MBytes 106 Mbits/sec 0.109 ms 1444/10601 (14%) +[UE3] [2025-07-19 14:35:25] [ 5] 15.00-16.00 sec 11.9 MBytes 99.8 Mbits/sec 0.074 ms 1490/10108 (15%) +[UE3] [2025-07-19 14:35:26] [ 5] 16.00-17.00 sec 12.5 MBytes 105 Mbits/sec 0.105 ms 1541/10580 (15%) +[UE3] [2025-07-19 14:35:27] [ 5] 17.00-18.00 sec 12.0 MBytes 101 Mbits/sec 0.109 ms 1486/10182 (15%) +[UE3] [2025-07-19 14:35:28] [ 5] 18.00-19.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1565/10397 (15%) +[UE3] [2025-07-19 14:35:29] [ 5] 19.00-20.00 sec 10.6 MBytes 89.0 Mbits/sec 0.068 ms 1269/8951 (14%) +[UE3] [2025-07-19 14:35:30] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.094 ms 2526/11342 (22%) +[UE3] [2025-07-19 14:35:31] [ 5] 21.00-22.00 sec 12.2 MBytes 103 Mbits/sec 0.082 ms 1776/10627 (17%) +[UE3] [2025-07-19 14:35:32] [ 5] 22.00-23.00 sec 12.0 MBytes 101 Mbits/sec 0.114 ms 1627/10305 (16%) +[UE3] [2025-07-19 14:35:33] [ 5] 23.00-24.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1541/10372 (15%) +[UE3] [2025-07-19 14:35:34] [ 5] 24.00-25.00 sec 12.8 MBytes 107 Mbits/sec 0.076 ms 1428/10693 (13%) +[UE3] [2025-07-19 14:35:35] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.106 ms 1415/10238 (14%) +[UE3] [2025-07-19 14:35:36] [ 5] 26.00-27.00 sec 12.0 MBytes 101 Mbits/sec 0.090 ms 1464/10178 (14%) +[UE3] [2025-07-19 14:35:37] [ 5] 27.00-28.00 sec 12.8 MBytes 107 Mbits/sec 0.068 ms 1488/10744 (14%) +[UE3] [2025-07-19 14:35:38] [ 5] 28.00-29.00 sec 12.4 MBytes 104 Mbits/sec 0.094 ms 1458/10438 (14%) +[UE3] [2025-07-19 14:35:39] [ 5] 29.00-30.00 sec 11.8 MBytes 99.0 Mbits/sec 0.080 ms 1373/9916 (14%) +[UE3] [2025-07-19 14:35:40] [ 5] 30.00-31.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1403/10247 (14%) +[UE3] [2025-07-19 14:35:41] [ 5] 31.00-32.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1736/10548 (16%) +[UE3] [2025-07-19 14:35:42] [ 5] 32.00-33.00 sec 12.6 MBytes 106 Mbits/sec 0.102 ms 1530/10672 (14%) +[UE3] [2025-07-19 14:35:43] [ 5] 33.00-34.00 sec 12.2 MBytes 102 Mbits/sec 0.096 ms 1405/10239 (14%) +[UE3] [2025-07-19 14:35:44] [ 5] 34.00-35.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1399/10226 (14%) +[UE3] [2025-07-19 14:35:45] [ 5] 35.00-36.00 sec 12.0 MBytes 101 Mbits/sec 0.075 ms 1426/10124 (14%) +[UE3] [2025-07-19 14:35:46] [ 5] 36.00-37.00 sec 12.8 MBytes 107 Mbits/sec 0.112 ms 1478/10722 (14%) +[UE3] [2025-07-19 14:35:47] [ 5] 37.00-38.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1286/10128 (13%) +[UE3] [2025-07-19 14:35:48] [ 5] 38.00-39.00 sec 12.2 MBytes 102 Mbits/sec 0.087 ms 1608/10450 (15%) +[UE3] [2025-07-19 14:35:49] [ 5] 39.00-40.00 sec 12.0 MBytes 100 Mbits/sec 0.094 ms 1519/10181 (15%) +[UE3] [2025-07-19 14:35:50] [ 5] 40.00-41.00 sec 11.4 MBytes 95.9 Mbits/sec 0.087 ms 1297/9575 (14%) +[UE3] [2025-07-19 14:35:51] [ 5] 41.00-42.00 sec 11.6 MBytes 97.3 Mbits/sec 0.081 ms 2425/10824 (22%) +[UE3] [2025-07-19 14:35:52] [ 5] 42.00-43.00 sec 12.6 MBytes 106 Mbits/sec 0.089 ms 1916/11053 (17%) +[UE3] [2025-07-19 14:35:53] [ 5] 43.00-44.00 sec 12.2 MBytes 102 Mbits/sec 0.062 ms 1409/10225 (14%) +[UE3] [2025-07-19 14:35:54] [ 5] 44.00-45.00 sec 12.8 MBytes 107 Mbits/sec 0.107 ms 1240/10499 (12%) +[UE3] [2025-07-19 14:35:55] [ 5] 45.00-46.00 sec 12.2 MBytes 102 Mbits/sec 0.104 ms 1346/10183 (13%) +[UE3] [2025-07-19 14:35:56] [ 5] 46.00-47.00 sec 12.3 MBytes 103 Mbits/sec 0.138 ms 1390/10286 (14%) +[UE3] [2025-07-19 14:35:57] [ 5] 47.00-48.00 sec 12.5 MBytes 105 Mbits/sec 0.102 ms 1412/10486 (13%) +[UE3] [2025-07-19 14:35:58] [ 5] 48.00-49.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 1278/10098 (13%) +[UE3] [2025-07-19 14:35:59] [ 5] 49.00-50.00 sec 12.0 MBytes 101 Mbits/sec 0.093 ms 1552/10248 (15%) +[UE3] [2025-07-19 14:36:00] [ 5] 50.00-51.00 sec 10.8 MBytes 90.9 Mbits/sec 0.077 ms 1347/9192 (15%) +[UE3] [2025-07-19 14:36:01] [ 5] 51.00-52.00 sec 12.7 MBytes 107 Mbits/sec 0.122 ms 2716/11946 (23%) +[UE3] [2025-07-19 14:36:02] [ 5] 52.00-53.00 sec 12.2 MBytes 103 Mbits/sec 0.078 ms 1509/10367 (15%) +[UE3] [2025-07-19 14:36:03] [ 5] 53.00-54.00 sec 10.8 MBytes 90.5 Mbits/sec 0.077 ms 1302/9117 (14%) +[UE3] [2025-07-19 14:36:04] [ 5] 54.00-55.00 sec 12.0 MBytes 101 Mbits/sec 0.099 ms 2841/11526 (25%) +[UE3] [2025-07-19 14:36:05] [ 5] 55.00-56.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1432/10245 (14%) +[UE3] [2025-07-19 14:36:06] [ 5] 56.00-57.00 sec 12.8 MBytes 108 Mbits/sec 0.118 ms 1348/10645 (13%) +[UE3] [2025-07-19 14:36:07] [ 5] 57.00-58.00 sec 12.0 MBytes 101 Mbits/sec 0.058 ms 1432/10117 (14%) +[UE3] [2025-07-19 14:36:08] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1399/10217 (14%) +[UE3] [2025-07-19 14:36:09] [ 5] 59.00-60.00 sec 12.8 MBytes 107 Mbits/sec 0.107 ms 1467/10745 (14%) +[UE3] [2025-07-19 14:36:10] [ 5] 60.00-61.00 sec 10.8 MBytes 90.6 Mbits/sec 0.123 ms 1220/9042 (13%) +[UE3] [2025-07-19 14:36:11] [ 5] 61.00-62.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 2507/11319 (22%) +[UE3] [2025-07-19 14:36:12] [ 5] 62.00-63.00 sec 12.6 MBytes 106 Mbits/sec 0.084 ms 1460/10617 (14%) +[UE3] [2025-07-19 14:36:13] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.120 ms 1606/10425 (15%) +[UE3] [2025-07-19 14:36:14] [ 5] 64.00-65.00 sec 11.4 MBytes 95.5 Mbits/sec 0.086 ms 1432/9679 (15%) +[UE3] [2025-07-19 14:36:15] [ 5] 65.00-66.00 sec 12.8 MBytes 108 Mbits/sec 0.078 ms 1771/11058 (16%) +[UE3] [2025-07-19 14:36:16] [ 5] 66.00-67.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1388/10220 (14%) +[UE3] [2025-07-19 14:36:17] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1559/10383 (15%) +[UE3] [2025-07-19 14:36:18] [ 5] 68.00-69.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1341/10038 (13%) +[UE3] [2025-07-19 14:36:19] [ 5] 69.00-70.00 sec 12.8 MBytes 107 Mbits/sec 0.073 ms 1610/10879 (15%) +[UE3] [2025-07-19 14:36:20] [ 5] 70.00-71.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1371/10190 (13%) +[UE3] [2025-07-19 14:36:21] [ 5] 71.00-72.00 sec 12.0 MBytes 101 Mbits/sec 0.111 ms 1446/10148 (14%) +[UE3] [2025-07-19 14:36:22] [ 5] 72.00-73.00 sec 12.8 MBytes 107 Mbits/sec 0.069 ms 1593/10834 (15%) +[UE3] [2025-07-19 14:36:23] [ 5] 73.00-74.00 sec 12.2 MBytes 103 Mbits/sec 0.104 ms 1249/10104 (12%) +[UE3] [2025-07-19 14:36:24] [ 5] 74.00-75.00 sec 12.0 MBytes 101 Mbits/sec 0.094 ms 1442/10134 (14%) +[UE3] [2025-07-19 14:36:25] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1440/10246 (14%) +[UE3] [2025-07-19 14:36:26] [ 5] 76.00-77.00 sec 12.2 MBytes 103 Mbits/sec 0.075 ms 1680/10541 (16%) +[UE3] [2025-07-19 14:36:27] [ 5] 77.00-78.00 sec 12.0 MBytes 101 Mbits/sec 0.084 ms 1369/10062 (14%) +[UE3] [2025-07-19 14:36:28] [ 5] 78.00-79.00 sec 12.2 MBytes 102 Mbits/sec 0.122 ms 1702/10508 (16%) +[UE3] [2025-07-19 14:36:29] [ 5] 79.00-80.00 sec 12.8 MBytes 108 Mbits/sec 0.079 ms 1449/10752 (13%) +[UE3] [2025-07-19 14:36:30] [ 5] 80.00-81.00 sec 11.8 MBytes 99.0 Mbits/sec 0.150 ms 1410/9957 (14%) +[UE3] [2025-07-19 14:36:31] [ 5] 81.00-82.00 sec 11.0 MBytes 92.2 Mbits/sec 0.081 ms 1529/9485 (16%) +[UE3] [2025-07-19 14:36:32] [ 5] 82.00-83.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 2630/11457 (23%) +[UE3] [2025-07-19 14:36:33] [ 5] 83.00-84.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1477/10175 (15%) +[UE3] [2025-07-19 14:36:34] [ 5] 84.00-85.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1428/10262 (14%) +[UE3] [2025-07-19 14:36:35] [ 5] 85.00-86.00 sec 12.5 MBytes 105 Mbits/sec 0.089 ms 1509/10568 (14%) +[UE3] [2025-07-19 14:36:36] [ 5] 86.00-87.00 sec 12.5 MBytes 105 Mbits/sec 0.071 ms 1564/10599 (15%) +[UE3] [2025-07-19 14:36:37] [ 5] 87.00-88.00 sec 10.8 MBytes 90.6 Mbits/sec 0.094 ms 1434/9257 (15%) +[UE3] [2025-07-19 14:36:38] [ 5] 88.00-89.00 sec 12.1 MBytes 102 Mbits/sec 0.107 ms 2207/10989 (20%) +[UE3] [2025-07-19 14:36:39] [ 5] 89.00-90.00 sec 12.7 MBytes 106 Mbits/sec 0.067 ms 1531/10710 (14%) +[UE3] [2025-07-19 14:36:40] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1416/10251 (14%) +[UE3] [2025-07-19 14:36:41] [ 5] 91.00-92.00 sec 12.0 MBytes 100 Mbits/sec 0.119 ms 1482/10156 (15%) +[UE3] [2025-07-19 14:36:42] [ 5] 92.00-93.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1378/10222 (13%) +[UE3] [2025-07-19 14:36:43] [ 5] 93.00-94.00 sec 12.8 MBytes 107 Mbits/sec 0.096 ms 1601/10852 (15%) +[UE3] [2025-07-19 14:36:44] [ 5] 94.00-95.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1427/10127 (14%) +[UE3] [2025-07-19 14:36:45] [ 5] 95.00-96.00 sec 12.8 MBytes 107 Mbits/sec 0.091 ms 1405/10675 (13%) +[UE3] [2025-07-19 14:36:46] [ 5] 96.00-97.00 sec 12.2 MBytes 102 Mbits/sec 0.103 ms 1308/10128 (13%) +[UE3] [2025-07-19 14:36:47] [ 5] 97.00-98.00 sec 11.4 MBytes 95.8 Mbits/sec 0.086 ms 1162/9431 (12%) +[UE3] [2025-07-19 14:36:48] [ 5] 98.00-99.00 sec 12.2 MBytes 102 Mbits/sec 0.094 ms 2320/11144 (21%) +[UE3] [2025-07-19 14:36:50] [ 5] 99.00-100.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 1670/10492 (16%) +[UE3] [2025-07-19 14:36:51] [ 5] 0.00-1.00 sec 3.72 MBytes 31.2 Mbits/sec 0.170 ms 0/2692 (0%) +[UE3] [2025-07-19 14:36:52] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2589 (0%) +[UE3] [2025-07-19 14:36:53] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2591 (0%) +[UE3] [2025-07-19 14:36:54] [ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE3] [2025-07-19 14:36:55] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.265 ms 0/2591 (0%) +[UE3] [2025-07-19 14:36:56] [ 5] 5.00-6.00 sec 3.57 MBytes 30.0 Mbits/sec 0.181 ms 0/2588 (0%) +[UE3] [2025-07-19 14:36:57] [ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 0.278 ms 0/2593 (0%) +[UE3] [2025-07-19 14:36:58] [ 5] 7.00-8.00 sec 3.57 MBytes 30.0 Mbits/sec 0.179 ms 0/2587 (0%) +[UE3] [2025-07-19 14:36:59] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:00] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:01] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:02] [ 5] 11.00-12.00 sec 3.57 MBytes 30.0 Mbits/sec 0.228 ms 0/2588 (0%) +[UE3] [2025-07-19 14:37:03] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.240 ms 0/2592 (0%) +[UE3] [2025-07-19 14:37:04] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:05] [ 5] 14.00-15.00 sec 3.57 MBytes 30.0 Mbits/sec 0.131 ms 0/2587 (0%) +[UE3] [2025-07-19 14:37:06] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.294 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:07] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.227 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:08] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:09] [ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 0.264 ms 0/2586 (0%) +[UE3] [2025-07-19 14:37:10] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2592 (0%) +[UE3] [2025-07-19 14:37:11] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.182 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:12] [ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 0.121 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:13] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.179 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:14] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:15] [ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 0.219 ms 0/2587 (0%) +[UE3] [2025-07-19 14:37:16] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.195 ms 0/2592 (0%) +[UE3] [2025-07-19 14:37:17] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:18] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.187 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:19] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.161 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:20] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.206 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:21] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.414 ms 0/2587 (0%) +[UE3] [2025-07-19 14:37:22] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.171 ms 0/2593 (0%) +[UE3] [2025-07-19 14:37:23] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.185 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:24] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.197 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:25] [ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 0.136 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:26] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:27] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:28] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.209 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:29] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.146 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:30] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.180 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:31] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:32] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:33] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:34] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.294 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:35] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:36] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:37] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:38] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:39] [ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:40] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:41] [ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 0.252 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:42] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:43] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:44] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.171 ms 0/2588 (0%) +[UE3] [2025-07-19 14:37:45] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.194 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:46] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.254 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:47] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2591 (0%) +[UE3] [2025-07-19 14:37:48] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.218 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:49] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:50] [ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 0.131 ms 0/2589 (0%) +[UE3] [2025-07-19 14:37:51] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:52] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.304 ms 0/2587 (0%) +[UE3] [2025-07-19 14:37:53] [ 5] 62.00-63.00 sec 3.58 MBytes 30.1 Mbits/sec 0.181 ms 0/2595 (0%) +[UE3] [2025-07-19 14:37:54] [ 5] 63.00-64.00 sec 3.57 MBytes 30.0 Mbits/sec 0.226 ms 0/2587 (0%) +[UE3] [2025-07-19 14:37:55] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.151 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:56] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.204 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:57] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.191 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:58] [ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 0.230 ms 0/2590 (0%) +[UE3] [2025-07-19 14:37:59] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.149 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:00] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:01] [ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 0.200 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:02] [ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 0.116 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:03] [ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 0.263 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:04] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:05] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.162 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:06] [ 5] 75.00-76.00 sec 3.57 MBytes 30.0 Mbits/sec 0.205 ms 0/2587 (0%) +[UE3] [2025-07-19 14:38:07] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.168 ms 0/2593 (0%) +[UE3] [2025-07-19 14:38:08] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:09] [ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 0.315 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:10] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.117 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:11] [ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 0.169 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:12] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:13] [ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 0.224 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:14] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.234 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:15] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.231 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:16] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2591 (0%) +[UE3] [2025-07-19 14:38:17] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:18] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.119 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:19] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.119 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:20] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2592 (0%) +[UE3] [2025-07-19 14:38:21] [ 5] 90.00-91.00 sec 3.57 MBytes 29.9 Mbits/sec 0.311 ms 0/2583 (0%) +[UE3] [2025-07-19 14:38:22] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.233 ms 0/2594 (0%) +[UE3] [2025-07-19 14:38:23] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.133 ms 0/2591 (0%) +[UE3] [2025-07-19 14:38:24] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:25] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.253 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:26] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.116 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:27] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:28] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2591 (0%) +[UE3] [2025-07-19 14:38:29] [ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2589 (0%) +[UE3] [2025-07-19 14:38:30] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.159 ms 0/2590 (0%) +[UE3] [2025-07-19 14:38:33] [ 5] 0.00-1.00 sec 9.52 MBytes 79.9 Mbits/sec 0.177 ms 0/6894 (0%) +[UE3] [2025-07-19 14:38:34] [ 5] 1.00-2.00 sec 11.5 MBytes 96.7 Mbits/sec 0.079 ms 239/8583 (2.8%) +[UE3] [2025-07-19 14:38:35] [ 5] 2.00-3.00 sec 12.1 MBytes 102 Mbits/sec 0.097 ms 1352/10150 (13%) +[UE3] [2025-07-19 14:38:36] [ 5] 3.00-4.00 sec 12.4 MBytes 104 Mbits/sec 0.093 ms 1421/10380 (14%) +[UE3] [2025-07-19 14:38:37] [ 5] 4.00-5.00 sec 13.0 MBytes 109 Mbits/sec 0.111 ms 1439/10863 (13%) +[UE3] [2025-07-19 14:38:38] [ 5] 5.00-6.00 sec 12.3 MBytes 104 Mbits/sec 0.070 ms 1209/10149 (12%) +[UE3] [2025-07-19 14:38:39] [ 5] 6.00-7.00 sec 12.2 MBytes 102 Mbits/sec 0.090 ms 1357/10169 (13%) +[UE3] [2025-07-19 14:38:40] [ 5] 7.00-8.00 sec 12.6 MBytes 106 Mbits/sec 0.081 ms 1279/10391 (12%) +[UE3] [2025-07-19 14:38:41] [ 5] 8.00-9.00 sec 12.0 MBytes 100 Mbits/sec 0.081 ms 1352/10009 (14%) +[UE3] [2025-07-19 14:38:42] [ 5] 9.00-10.00 sec 12.4 MBytes 104 Mbits/sec 0.086 ms 1606/10564 (15%) +[UE3] [2025-07-19 14:38:43] [ 5] 10.00-11.00 sec 11.6 MBytes 97.0 Mbits/sec 0.165 ms 2492/10863 (23%) +[UE3] [2025-07-19 14:38:44] [ 5] 11.00-12.00 sec 12.4 MBytes 104 Mbits/sec 0.101 ms 1332/10280 (13%) +[UE3] [2025-07-19 14:38:45] [ 5] 12.00-13.00 sec 12.2 MBytes 102 Mbits/sec 0.118 ms 1243/10053 (12%) +[UE3] [2025-07-19 14:38:46] [ 5] 13.00-14.00 sec 12.4 MBytes 104 Mbits/sec 0.127 ms 1389/10358 (13%) +[UE3] [2025-07-19 14:38:47] [ 5] 14.00-15.00 sec 12.4 MBytes 104 Mbits/sec 0.072 ms 1390/10338 (13%) +[UE3] [2025-07-19 14:38:48] [ 5] 15.00-16.00 sec 12.6 MBytes 105 Mbits/sec 0.080 ms 1391/10486 (13%) +[UE3] [2025-07-19 14:38:49] [ 5] 16.00-17.00 sec 12.0 MBytes 101 Mbits/sec 0.100 ms 1304/9988 (13%) +[UE3] [2025-07-19 14:38:50] [ 5] 17.00-18.00 sec 12.6 MBytes 105 Mbits/sec 0.115 ms 1650/10752 (15%) +[UE3] [2025-07-19 14:38:51] [ 5] 18.00-19.00 sec 12.5 MBytes 105 Mbits/sec 0.084 ms 1454/10530 (14%) +[UE3] [2025-07-19 14:38:52] [ 5] 19.00-20.00 sec 12.4 MBytes 104 Mbits/sec 0.117 ms 1327/10321 (13%) +[UE3] [2025-07-19 14:38:53] [ 5] 20.00-21.00 sec 11.0 MBytes 91.9 Mbits/sec 0.113 ms 1217/9149 (13%) +[UE3] [2025-07-19 14:38:54] [ 5] 21.00-22.00 sec 12.2 MBytes 102 Mbits/sec 0.128 ms 2537/11340 (22%) +[UE3] [2025-07-19 14:38:55] [ 5] 22.00-23.00 sec 12.4 MBytes 104 Mbits/sec 0.076 ms 1412/10368 (14%) +[UE3] [2025-07-19 14:38:56] [ 5] 23.00-24.00 sec 12.2 MBytes 102 Mbits/sec 0.076 ms 1270/10101 (13%) +[UE3] [2025-07-19 14:38:57] [ 5] 24.00-25.00 sec 11.7 MBytes 98.4 Mbits/sec 0.113 ms 1295/9793 (13%) +[UE3] [2025-07-19 14:38:58] [ 5] 25.00-26.00 sec 13.0 MBytes 109 Mbits/sec 0.050 ms 2096/11494 (18%) +[UE3] [2025-07-19 14:38:59] [ 5] 26.00-27.00 sec 12.2 MBytes 102 Mbits/sec 0.107 ms 1295/10125 (13%) +[UE3] [2025-07-19 14:39:00] [ 5] 27.00-28.00 sec 12.3 MBytes 104 Mbits/sec 0.119 ms 1282/10223 (13%) +[UE3] [2025-07-19 14:39:01] [ 5] 28.00-29.00 sec 12.4 MBytes 104 Mbits/sec 0.075 ms 1320/10276 (13%) +[UE3] [2025-07-19 14:39:02] [ 5] 29.00-30.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1327/10157 (13%) +[UE3] [2025-07-19 14:39:03] [ 5] 30.00-31.00 sec 13.0 MBytes 109 Mbits/sec 0.113 ms 1576/10956 (14%) +[UE3] [2025-07-19 14:39:04] [ 5] 31.00-32.00 sec 11.6 MBytes 97.0 Mbits/sec 0.084 ms 1133/9506 (12%) +[UE3] [2025-07-19 14:39:05] [ 5] 32.00-33.00 sec 11.8 MBytes 98.8 Mbits/sec 0.086 ms 2163/10690 (20%) +[UE3] [2025-07-19 14:39:06] [ 5] 33.00-34.00 sec 12.1 MBytes 102 Mbits/sec 0.083 ms 1721/10513 (16%) +[UE3] [2025-07-19 14:39:07] [ 5] 34.00-35.00 sec 12.4 MBytes 104 Mbits/sec 0.089 ms 1400/10358 (14%) +[UE3] [2025-07-19 14:39:08] [ 5] 35.00-36.00 sec 12.2 MBytes 102 Mbits/sec 0.113 ms 1379/10200 (14%) +[UE3] [2025-07-19 14:39:09] [ 5] 36.00-37.00 sec 13.0 MBytes 109 Mbits/sec 0.069 ms 1446/10843 (13%) +[UE3] [2025-07-19 14:39:10] [ 5] 37.00-38.00 sec 12.4 MBytes 104 Mbits/sec 0.109 ms 1218/10177 (12%) +[UE3] [2025-07-19 14:39:11] [ 5] 38.00-39.00 sec 12.4 MBytes 104 Mbits/sec 0.108 ms 1395/10369 (13%) +[UE3] [2025-07-19 14:39:12] [ 5] 39.00-40.00 sec 12.1 MBytes 102 Mbits/sec 0.084 ms 1559/10353 (15%) +[UE3] [2025-07-19 14:39:13] [ 5] 40.00-41.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 1308/10267 (13%) +[UE3] [2025-07-19 14:39:14] [ 5] 41.00-42.00 sec 13.0 MBytes 109 Mbits/sec 0.111 ms 1357/10748 (13%) +[UE3] [2025-07-19 14:39:15] [ 5] 42.00-43.00 sec 11.8 MBytes 98.7 Mbits/sec 0.101 ms 1308/9832 (13%) +[UE3] [2025-07-19 14:39:16] [ 5] 43.00-44.00 sec 12.8 MBytes 107 Mbits/sec 0.083 ms 1717/10975 (16%) +[UE3] [2025-07-19 14:39:17] [ 5] 44.00-45.00 sec 12.4 MBytes 104 Mbits/sec 0.099 ms 1202/10147 (12%) +[UE3] [2025-07-19 14:39:18] [ 5] 45.00-46.00 sec 12.4 MBytes 104 Mbits/sec 0.119 ms 1228/10191 (12%) +[UE3] [2025-07-19 14:39:19] [ 5] 46.00-47.00 sec 12.8 MBytes 107 Mbits/sec 0.108 ms 1232/10489 (12%) +[UE3] [2025-07-19 14:39:20] [ 5] 47.00-48.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 1367/10319 (13%) +[UE3] [2025-07-19 14:39:21] [ 5] 48.00-49.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1346/10151 (13%) +[UE3] [2025-07-19 14:39:22] [ 5] 49.00-50.00 sec 12.4 MBytes 104 Mbits/sec 0.113 ms 1408/10385 (14%) +[UE3] [2025-07-19 14:39:23] [ 5] 50.00-51.00 sec 12.4 MBytes 104 Mbits/sec 0.124 ms 1256/10201 (12%) +[UE3] [2025-07-19 14:39:24] [ 5] 51.00-52.00 sec 13.0 MBytes 109 Mbits/sec 0.075 ms 1550/10948 (14%) +[UE3] [2025-07-19 14:39:25] [ 5] 52.00-53.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1301/10132 (13%) +[UE3] [2025-07-19 14:39:26] [ 5] 53.00-54.00 sec 12.3 MBytes 104 Mbits/sec 0.119 ms 1420/10361 (14%) +[UE3] [2025-07-19 14:39:27] [ 5] 54.00-55.00 sec 10.8 MBytes 90.2 Mbits/sec 0.015 ms 1457/9247 (16%) +[UE3] [2025-07-19 14:39:28] [ 5] 55.00-56.00 sec 12.3 MBytes 104 Mbits/sec 0.103 ms 2365/11308 (21%) +[UE3] [2025-07-19 14:39:29] [ 5] 56.00-57.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1322/10288 (13%) +[UE3] [2025-07-19 14:39:30] [ 5] 57.00-58.00 sec 11.5 MBytes 96.9 Mbits/sec 0.086 ms 1335/9698 (14%) +[UE3] [2025-07-19 14:39:31] [ 5] 58.00-59.00 sec 12.4 MBytes 104 Mbits/sec 0.078 ms 2022/10992 (18%) +[UE3] [2025-07-19 14:39:32] [ 5] 59.00-60.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1563/10373 (15%) +[UE3] [2025-07-19 14:39:33] [ 5] 60.00-61.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1418/10365 (14%) +[UE3] [2025-07-19 14:39:34] [ 5] 61.00-62.00 sec 13.0 MBytes 109 Mbits/sec 0.101 ms 1324/10729 (12%) +[UE3] [2025-07-19 14:39:35] [ 5] 62.00-63.00 sec 12.2 MBytes 102 Mbits/sec 0.075 ms 1301/10128 (13%) +[UE3] [2025-07-19 14:39:36] [ 5] 63.00-64.00 sec 12.4 MBytes 104 Mbits/sec 0.084 ms 1334/10283 (13%) +[UE3] [2025-07-19 14:39:37] [ 5] 64.00-65.00 sec 10.9 MBytes 91.8 Mbits/sec 0.110 ms 1231/9153 (13%) +[UE3] [2025-07-19 14:39:38] [ 5] 65.00-66.00 sec 11.7 MBytes 98.0 Mbits/sec 0.121 ms 3009/11468 (26%) +[UE3] [2025-07-19 14:39:39] [ 5] 66.00-67.00 sec 12.8 MBytes 108 Mbits/sec 0.099 ms 1335/10640 (13%) +[UE3] [2025-07-19 14:39:40] [ 5] 67.00-68.00 sec 12.4 MBytes 104 Mbits/sec 0.127 ms 1279/10242 (12%) +[UE3] [2025-07-19 14:39:41] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.121 ms 1290/10109 (13%) +[UE3] [2025-07-19 14:39:42] [ 5] 69.00-70.00 sec 13.0 MBytes 109 Mbits/sec 0.118 ms 1478/10868 (14%) +[UE3] [2025-07-19 14:39:43] [ 5] 70.00-71.00 sec 12.4 MBytes 104 Mbits/sec 0.081 ms 1330/10284 (13%) +[UE3] [2025-07-19 14:39:44] [ 5] 71.00-72.00 sec 12.2 MBytes 102 Mbits/sec 0.089 ms 1339/10160 (13%) +[UE3] [2025-07-19 14:39:45] [ 5] 72.00-73.00 sec 12.4 MBytes 104 Mbits/sec 0.098 ms 1498/10450 (14%) +[UE3] [2025-07-19 14:39:46] [ 5] 73.00-74.00 sec 12.4 MBytes 104 Mbits/sec 0.102 ms 1363/10317 (13%) +[UE3] [2025-07-19 14:39:47] [ 5] 74.00-75.00 sec 12.2 MBytes 102 Mbits/sec 0.114 ms 1353/10181 (13%) +[UE3] [2025-07-19 14:39:48] [ 5] 75.00-76.00 sec 11.0 MBytes 91.9 Mbits/sec 0.119 ms 2489/10421 (24%) +[UE3] [2025-07-19 14:39:49] [ 5] 76.00-77.00 sec 11.5 MBytes 96.7 Mbits/sec 3.144 ms 1478/9826 (15%) +[UE3] [2025-07-19 14:39:50] [ 5] 77.00-78.00 sec 13.0 MBytes 109 Mbits/sec 0.089 ms 1660/11073 (15%) +[UE3] [2025-07-19 14:39:51] [ 5] 78.00-79.00 sec 12.4 MBytes 104 Mbits/sec 0.085 ms 1350/10309 (13%) +[UE3] [2025-07-19 14:39:52] [ 5] 79.00-80.00 sec 12.4 MBytes 104 Mbits/sec 0.090 ms 1436/10388 (14%) +[UE3] [2025-07-19 14:39:53] [ 5] 80.00-81.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1440/10256 (14%) +[UE3] [2025-07-19 14:39:54] [ 5] 81.00-82.00 sec 11.9 MBytes 99.4 Mbits/sec 0.085 ms 1377/9960 (14%) +[UE3] [2025-07-19 14:39:55] [ 5] 82.00-83.00 sec 12.7 MBytes 106 Mbits/sec 0.067 ms 1792/10966 (16%) +[UE3] [2025-07-19 14:39:56] [ 5] 83.00-84.00 sec 12.4 MBytes 104 Mbits/sec 0.128 ms 1312/10282 (13%) +[UE3] [2025-07-19 14:39:57] [ 5] 84.00-85.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 1422/10231 (14%) +[UE3] [2025-07-19 14:39:58] [ 5] 85.00-86.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 1338/10286 (13%) +[UE3] [2025-07-19 14:39:59] [ 5] 86.00-87.00 sec 12.4 MBytes 104 Mbits/sec 0.103 ms 1375/10345 (13%) +[UE3] [2025-07-19 14:40:00] [ 5] 87.00-88.00 sec 11.0 MBytes 91.9 Mbits/sec 0.100 ms 1156/9086 (13%) +[UE3] [2025-07-19 14:40:01] [ 5] 88.00-89.00 sec 12.2 MBytes 102 Mbits/sec 0.105 ms 2550/11373 (22%) +[UE3] [2025-07-19 14:40:02] [ 5] 89.00-90.00 sec 12.3 MBytes 104 Mbits/sec 0.084 ms 1780/10721 (17%) +[UE3] [2025-07-19 14:40:03] [ 5] 90.00-91.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1365/10177 (13%) +[UE3] [2025-07-19 14:40:04] [ 5] 91.00-92.00 sec 12.4 MBytes 104 Mbits/sec 0.079 ms 1343/10317 (13%) +[UE3] [2025-07-19 14:40:05] [ 5] 92.00-93.00 sec 12.3 MBytes 104 Mbits/sec 0.070 ms 1600/10541 (15%) +[UE3] [2025-07-19 14:40:06] [ 5] 93.00-94.00 sec 12.5 MBytes 105 Mbits/sec 0.121 ms 1447/10471 (14%) +[UE3] [2025-07-19 14:40:07] [ 5] 94.00-95.00 sec 12.7 MBytes 106 Mbits/sec 0.068 ms 1274/10453 (12%) +[UE3] [2025-07-19 14:40:08] [ 5] 95.00-96.00 sec 11.6 MBytes 97.0 Mbits/sec 0.082 ms 1636/10013 (16%) +[UE3] [2025-07-19 14:40:09] [ 5] 96.00-97.00 sec 12.4 MBytes 104 Mbits/sec 0.105 ms 1670/10628 (16%) +[UE3] [2025-07-19 14:40:10] [ 5] 97.00-98.00 sec 11.7 MBytes 98.4 Mbits/sec 0.087 ms 1282/9773 (13%) +[UE3] [2025-07-19 14:40:11] [ 5] 98.00-99.00 sec 11.4 MBytes 95.7 Mbits/sec 0.082 ms 2239/10497 (21%) +[UE3] [2025-07-19 14:40:12] [ 5] 99.00-100.00 sec 12.7 MBytes 106 Mbits/sec 0.113 ms 1594/10778 (15%) +[UE3] [2025-07-19 14:40:14] [ 5] 0.00-1.00 sec 3.74 MBytes 31.4 Mbits/sec 0.286 ms 0/2710 (0%) +[UE3] [2025-07-19 14:40:15] [ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 0.232 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:16] [ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 0.166 ms 0/2593 (0%) +[UE3] [2025-07-19 14:40:17] [ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 0.154 ms 0/2588 (0%) +[UE3] [2025-07-19 14:40:18] [ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:19] [ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:20] [ 5] 6.00-7.00 sec 3.57 MBytes 29.9 Mbits/sec 0.199 ms 0/2584 (0%) +[UE3] [2025-07-19 14:40:21] [ 5] 7.00-8.00 sec 3.58 MBytes 30.1 Mbits/sec 0.174 ms 0/2595 (0%) +[UE3] [2025-07-19 14:40:22] [ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 0.210 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:23] [ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:24] [ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 0.190 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:25] [ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:26] [ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 0.111 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:27] [ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 0.132 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:28] [ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 0.147 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:29] [ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 0.129 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:30] [ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 0.213 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:31] [ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 0.193 ms 0/2591 (0%) +[UE3] [2025-07-19 14:40:32] [ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 0.184 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:33] [ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 0.222 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:34] [ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 0.256 ms 0/2592 (0%) +[UE3] [2025-07-19 14:40:35] [ 5] 21.00-22.00 sec 3.57 MBytes 30.0 Mbits/sec 0.192 ms 0/2588 (0%) +[UE3] [2025-07-19 14:40:36] [ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 0.122 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:37] [ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:38] [ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 0.128 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:39] [ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 0.192 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:40] [ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2591 (0%) +[UE3] [2025-07-19 14:40:41] [ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 0.216 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:42] [ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 0.211 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:43] [ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:44] [ 5] 30.00-31.00 sec 3.57 MBytes 30.0 Mbits/sec 0.259 ms 0/2588 (0%) +[UE3] [2025-07-19 14:40:45] [ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 0.181 ms 0/2592 (0%) +[UE3] [2025-07-19 14:40:46] [ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2592 (0%) +[UE3] [2025-07-19 14:40:47] [ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 0.167 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:48] [ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 0.155 ms 0/2588 (0%) +[UE3] [2025-07-19 14:40:49] [ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:50] [ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 0.150 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:51] [ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 0.178 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:52] [ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:53] [ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 0.274 ms 0/2591 (0%) +[UE3] [2025-07-19 14:40:54] [ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:55] [ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 0.102 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:56] [ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:40:57] [ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 0.285 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:58] [ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 0.228 ms 0/2590 (0%) +[UE3] [2025-07-19 14:40:59] [ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 0.236 ms 0/2591 (0%) +[UE3] [2025-07-19 14:41:00] [ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 0.152 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:01] [ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 0.215 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:02] [ 5] 48.00-49.00 sec 3.57 MBytes 30.0 Mbits/sec 0.210 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:03] [ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 0.214 ms 0/2593 (0%) +[UE3] [2025-07-19 14:41:04] [ 5] 50.00-51.00 sec 3.57 MBytes 30.0 Mbits/sec 0.200 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:05] [ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 0.133 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:06] [ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 0.165 ms 0/2591 (0%) +[UE3] [2025-07-19 14:41:07] [ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 0.241 ms 0/2587 (0%) +[UE3] [2025-07-19 14:41:08] [ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2592 (0%) +[UE3] [2025-07-19 14:41:09] [ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:10] [ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 0.127 ms 0/2591 (0%) +[UE3] [2025-07-19 14:41:11] [ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 0.188 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:12] [ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 0.163 ms 0/2592 (0%) +[UE3] [2025-07-19 14:41:13] [ 5] 59.00-60.00 sec 3.57 MBytes 30.0 Mbits/sec 0.196 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:14] [ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 0.207 ms 0/2592 (0%) +[UE3] [2025-07-19 14:41:15] [ 5] 61.00-62.00 sec 3.57 MBytes 30.0 Mbits/sec 0.147 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:16] [ 5] 62.00-63.00 sec 3.57 MBytes 30.0 Mbits/sec 0.241 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:17] [ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 0.186 ms 0/2592 (0%) +[UE3] [2025-07-19 14:41:18] [ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 0.175 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:19] [ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 0.307 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:20] [ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2593 (0%) +[UE3] [2025-07-19 14:41:21] [ 5] 67.00-68.00 sec 3.57 MBytes 30.0 Mbits/sec 0.162 ms 0/2587 (0%) +[UE3] [2025-07-19 14:41:22] [ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 0.118 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:23] [ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 0.157 ms 0/2592 (0%) +[UE3] [2025-07-19 14:41:24] [ 5] 70.00-71.00 sec 3.57 MBytes 30.0 Mbits/sec 0.200 ms 0/2586 (0%) +[UE3] [2025-07-19 14:41:25] [ 5] 71.00-72.00 sec 3.58 MBytes 30.1 Mbits/sec 0.085 ms 0/2594 (0%) +[UE3] [2025-07-19 14:41:26] [ 5] 72.00-73.00 sec 3.57 MBytes 30.0 Mbits/sec 0.282 ms 0/2587 (0%) +[UE3] [2025-07-19 14:41:27] [ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 0.156 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:28] [ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 0.141 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:29] [ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 0.143 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:30] [ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:31] [ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 0.239 ms 0/2591 (0%) +[UE3] [2025-07-19 14:41:32] [ 5] 78.00-79.00 sec 3.57 MBytes 30.0 Mbits/sec 0.209 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:33] [ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 0.217 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:34] [ 5] 80.00-81.00 sec 3.57 MBytes 30.0 Mbits/sec 0.248 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:35] [ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 0.173 ms 0/2594 (0%) +[UE3] [2025-07-19 14:41:36] [ 5] 82.00-83.00 sec 3.57 MBytes 30.0 Mbits/sec 0.122 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:37] [ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 0.155 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:38] [ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 0.225 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:39] [ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 0.280 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:40] [ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 0.189 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:41] [ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 0.174 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:42] [ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 0.144 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:43] [ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 0.118 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:44] [ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 0.160 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:45] [ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 0.202 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:46] [ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 0.139 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:47] [ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 0.142 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:48] [ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 0.140 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:49] [ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 0.201 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:50] [ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 0.289 ms 0/2589 (0%) +[UE3] [2025-07-19 14:41:51] [ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 0.199 ms 0/2590 (0%) +[UE3] [2025-07-19 14:41:52] [ 5] 98.00-99.00 sec 3.57 MBytes 30.0 Mbits/sec 0.189 ms 0/2588 (0%) +[UE3] [2025-07-19 14:41:53] [ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 0.203 ms 0/2591 (0%) +[UE3] [2025-07-19 14:41:55] [ 5] 0.00-1.00 sec 9.81 MBytes 82.3 Mbits/sec 0.144 ms 0/7102 (0%) +[UE3] [2025-07-19 14:41:56] [ 5] 1.00-2.00 sec 12.0 MBytes 101 Mbits/sec 0.087 ms 0/8725 (0%) +[UE3] [2025-07-19 14:41:57] [ 5] 2.00-3.00 sec 11.5 MBytes 96.5 Mbits/sec 0.094 ms 476/8806 (5.4%) +[UE3] [2025-07-19 14:41:58] [ 5] 3.00-4.00 sec 12.0 MBytes 101 Mbits/sec 0.122 ms 1358/10063 (13%) +[UE3] [2025-07-19 14:41:59] [ 5] 4.00-5.00 sec 12.2 MBytes 102 Mbits/sec 0.080 ms 1546/10380 (15%) +[UE3] [2025-07-19 14:42:00] [ 5] 5.00-6.00 sec 11.5 MBytes 96.9 Mbits/sec 0.110 ms 1751/10114 (17%) +[UE3] [2025-07-19 14:42:01] [ 5] 6.00-7.00 sec 12.3 MBytes 103 Mbits/sec 0.078 ms 1589/10469 (15%) +[UE3] [2025-07-19 14:42:02] [ 5] 7.00-8.00 sec 11.8 MBytes 99.2 Mbits/sec 0.111 ms 2117/10683 (20%) +[UE3] [2025-07-19 14:42:03] [ 5] 8.00-9.00 sec 12.2 MBytes 102 Mbits/sec 0.097 ms 1450/10279 (14%) +[UE3] [2025-07-19 14:42:04] [ 5] 9.00-10.00 sec 12.2 MBytes 102 Mbits/sec 0.070 ms 1632/10457 (16%) +[UE3] [2025-07-19 14:42:05] [ 5] 10.00-11.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1484/10196 (15%) +[UE3] [2025-07-19 14:42:06] [ 5] 11.00-12.00 sec 12.2 MBytes 102 Mbits/sec 0.088 ms 1574/10404 (15%) +[UE3] [2025-07-19 14:42:07] [ 5] 12.00-13.00 sec 12.8 MBytes 107 Mbits/sec 0.105 ms 1441/10710 (13%) +[UE3] [2025-07-19 14:42:08] [ 5] 13.00-14.00 sec 10.8 MBytes 90.5 Mbits/sec 0.073 ms 1322/9142 (14%) +[UE3] [2025-07-19 14:42:09] [ 5] 14.00-15.00 sec 12.0 MBytes 101 Mbits/sec 0.089 ms 2431/11142 (22%) +[UE3] [2025-07-19 14:42:10] [ 5] 15.00-16.00 sec 12.5 MBytes 105 Mbits/sec 0.086 ms 1501/10568 (14%) +[UE3] [2025-07-19 14:42:11] [ 5] 16.00-17.00 sec 11.9 MBytes 99.6 Mbits/sec 0.070 ms 1427/10022 (14%) +[UE3] [2025-07-19 14:42:12] [ 5] 17.00-18.00 sec 12.0 MBytes 101 Mbits/sec 0.077 ms 2096/10801 (19%) +[UE3] [2025-07-19 14:42:13] [ 5] 18.00-19.00 sec 12.0 MBytes 100 Mbits/sec 0.091 ms 1577/10249 (15%) +[UE3] [2025-07-19 14:42:14] [ 5] 19.00-20.00 sec 11.6 MBytes 97.5 Mbits/sec 0.091 ms 1523/9941 (15%) +[UE3] [2025-07-19 14:42:15] [ 5] 20.00-21.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1880/10703 (18%) +[UE3] [2025-07-19 14:42:16] [ 5] 21.00-22.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1628/10336 (16%) +[UE3] [2025-07-19 14:42:17] [ 5] 22.00-23.00 sec 12.2 MBytes 102 Mbits/sec 0.110 ms 1467/10302 (14%) +[UE3] [2025-07-19 14:42:18] [ 5] 23.00-24.00 sec 12.8 MBytes 107 Mbits/sec 0.084 ms 1507/10778 (14%) +[UE3] [2025-07-19 14:42:19] [ 5] 24.00-25.00 sec 12.0 MBytes 101 Mbits/sec 0.079 ms 1431/10112 (14%) +[UE3] [2025-07-19 14:42:20] [ 5] 25.00-26.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1515/10349 (15%) +[UE3] [2025-07-19 14:42:21] [ 5] 26.00-27.00 sec 12.0 MBytes 101 Mbits/sec 0.082 ms 1314/10026 (13%) +[UE3] [2025-07-19 14:42:22] [ 5] 27.00-28.00 sec 13.0 MBytes 109 Mbits/sec 0.123 ms 1576/10974 (14%) +[UE3] [2025-07-19 14:42:23] [ 5] 28.00-29.00 sec 10.6 MBytes 89.0 Mbits/sec 0.077 ms 1308/8992 (15%) +[UE3] [2025-07-19 14:42:24] [ 5] 29.00-30.00 sec 12.2 MBytes 102 Mbits/sec 0.109 ms 2514/11356 (22%) +[UE3] [2025-07-19 14:42:25] [ 5] 30.00-31.00 sec 12.2 MBytes 102 Mbits/sec 0.119 ms 1431/10275 (14%) +[UE3] [2025-07-19 14:42:26] [ 5] 31.00-32.00 sec 12.0 MBytes 101 Mbits/sec 0.085 ms 1459/10147 (14%) +[UE3] [2025-07-19 14:42:27] [ 5] 32.00-33.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 1747/10582 (17%) +[UE3] [2025-07-19 14:42:28] [ 5] 33.00-34.00 sec 11.4 MBytes 95.7 Mbits/sec 0.094 ms 1425/9689 (15%) +[UE3] [2025-07-19 14:42:29] [ 5] 34.00-35.00 sec 12.8 MBytes 107 Mbits/sec 0.125 ms 2153/11421 (19%) +[UE3] [2025-07-19 14:42:30] [ 5] 35.00-36.00 sec 11.4 MBytes 95.7 Mbits/sec 0.126 ms 1360/9623 (14%) +[UE3] [2025-07-19 14:42:31] [ 5] 36.00-37.00 sec 12.2 MBytes 102 Mbits/sec 0.128 ms 1637/10473 (16%) +[UE3] [2025-07-19 14:42:32] [ 5] 37.00-38.00 sec 12.8 MBytes 107 Mbits/sec 0.089 ms 1670/10937 (15%) +[UE3] [2025-07-19 14:42:33] [ 5] 38.00-39.00 sec 12.0 MBytes 101 Mbits/sec 0.070 ms 1517/10229 (15%) +[UE3] [2025-07-19 14:42:34] [ 5] 39.00-40.00 sec 12.2 MBytes 102 Mbits/sec 0.115 ms 1467/10297 (14%) +[UE3] [2025-07-19 14:42:35] [ 5] 40.00-41.00 sec 12.0 MBytes 101 Mbits/sec 0.070 ms 1512/10191 (15%) +[UE3] [2025-07-19 14:42:36] [ 5] 41.00-42.00 sec 12.2 MBytes 103 Mbits/sec 0.122 ms 1616/10474 (15%) +[UE3] [2025-07-19 14:42:37] [ 5] 42.00-43.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 1420/10250 (14%) +[UE3] [2025-07-19 14:42:38] [ 5] 43.00-44.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1554/10239 (15%) +[UE3] [2025-07-19 14:42:39] [ 5] 44.00-45.00 sec 11.6 MBytes 97.3 Mbits/sec 0.082 ms 1470/9873 (15%) +[UE3] [2025-07-19 14:42:40] [ 5] 45.00-46.00 sec 12.6 MBytes 106 Mbits/sec 0.079 ms 2039/11175 (18%) +[UE3] [2025-07-19 14:42:41] [ 5] 46.00-47.00 sec 12.2 MBytes 102 Mbits/sec 0.081 ms 1418/10246 (14%) +[UE3] [2025-07-19 14:42:42] [ 5] 47.00-48.00 sec 12.2 MBytes 103 Mbits/sec 0.120 ms 1457/10309 (14%) +[UE3] [2025-07-19 14:42:43] [ 5] 48.00-49.00 sec 12.0 MBytes 101 Mbits/sec 0.097 ms 1378/10065 (14%) +[UE3] [2025-07-19 14:42:44] [ 5] 49.00-50.00 sec 12.7 MBytes 107 Mbits/sec 0.089 ms 1593/10795 (15%) +[UE3] [2025-07-19 14:42:45] [ 5] 50.00-51.00 sec 10.9 MBytes 91.4 Mbits/sec 0.077 ms 1352/9241 (15%) +[UE3] [2025-07-19 14:42:46] [ 5] 51.00-52.00 sec 12.2 MBytes 102 Mbits/sec 0.092 ms 2402/11247 (21%) +[UE3] [2025-07-19 14:42:47] [ 5] 52.00-53.00 sec 12.8 MBytes 107 Mbits/sec 0.083 ms 1528/10786 (14%) +[UE3] [2025-07-19 14:42:48] [ 5] 53.00-54.00 sec 10.8 MBytes 90.8 Mbits/sec 0.082 ms 1329/9167 (14%) +[UE3] [2025-07-19 14:42:49] [ 5] 54.00-55.00 sec 12.0 MBytes 101 Mbits/sec 0.090 ms 2289/10970 (21%) +[UE3] [2025-07-19 14:42:50] [ 5] 55.00-56.00 sec 12.8 MBytes 107 Mbits/sec 0.078 ms 1629/10900 (15%) +[UE3] [2025-07-19 14:42:51] [ 5] 56.00-57.00 sec 12.2 MBytes 102 Mbits/sec 0.072 ms 1417/10251 (14%) +[UE3] [2025-07-19 14:42:52] [ 5] 57.00-58.00 sec 12.0 MBytes 101 Mbits/sec 0.087 ms 1505/10216 (15%) +[UE3] [2025-07-19 14:42:53] [ 5] 58.00-59.00 sec 12.2 MBytes 102 Mbits/sec 0.083 ms 1381/10195 (14%) +[UE3] [2025-07-19 14:42:54] [ 5] 59.00-60.00 sec 12.2 MBytes 102 Mbits/sec 0.077 ms 1512/10360 (15%) +[UE3] [2025-07-19 14:42:55] [ 5] 60.00-61.00 sec 12.0 MBytes 101 Mbits/sec 0.073 ms 1587/10285 (15%) +[UE3] [2025-07-19 14:42:56] [ 5] 61.00-62.00 sec 11.1 MBytes 93.2 Mbits/sec 0.094 ms 1385/9428 (15%) +[UE3] [2025-07-19 14:42:57] [ 5] 62.00-63.00 sec 12.5 MBytes 105 Mbits/sec 0.076 ms 2707/11761 (23%) +[UE3] [2025-07-19 14:42:58] [ 5] 63.00-64.00 sec 12.2 MBytes 102 Mbits/sec 0.095 ms 1342/10177 (13%) +[UE3] [2025-07-19 14:42:59] [ 5] 64.00-65.00 sec 11.4 MBytes 95.7 Mbits/sec 0.089 ms 1961/10225 (19%) +[UE3] [2025-07-19 14:43:00] [ 5] 65.00-66.00 sec 12.2 MBytes 102 Mbits/sec 0.082 ms 1837/10662 (17%) +[UE3] [2025-07-19 14:43:01] [ 5] 66.00-67.00 sec 12.0 MBytes 101 Mbits/sec 0.071 ms 1456/10162 (14%) +[UE3] [2025-07-19 14:43:02] [ 5] 67.00-68.00 sec 12.2 MBytes 102 Mbits/sec 0.128 ms 1605/10434 (15%) +[UE3] [2025-07-19 14:43:03] [ 5] 68.00-69.00 sec 12.2 MBytes 102 Mbits/sec 0.085 ms 1479/10304 (14%) +[UE3] [2025-07-19 14:43:04] [ 5] 69.00-70.00 sec 12.0 MBytes 101 Mbits/sec 0.095 ms 1357/10077 (13%) +[UE3] [2025-07-19 14:43:05] [ 5] 70.00-71.00 sec 10.8 MBytes 90.6 Mbits/sec 0.090 ms 1493/9316 (16%) +[UE3] [2025-07-19 14:43:06] [ 5] 71.00-72.00 sec 12.8 MBytes 107 Mbits/sec 0.083 ms 2650/11912 (22%) +[UE3] [2025-07-19 14:43:07] [ 5] 72.00-73.00 sec 10.8 MBytes 90.5 Mbits/sec 0.079 ms 1918/9728 (20%) +[UE3] [2025-07-19 14:43:08] [ 5] 73.00-74.00 sec 12.0 MBytes 101 Mbits/sec 0.103 ms 2044/10749 (19%) +[UE3] [2025-07-19 14:43:09] [ 5] 74.00-75.00 sec 11.4 MBytes 95.9 Mbits/sec 0.108 ms 1450/9726 (15%) +[UE3] [2025-07-19 14:43:10] [ 5] 75.00-76.00 sec 12.2 MBytes 102 Mbits/sec 0.112 ms 2194/11023 (20%) +[UE3] [2025-07-19 14:43:11] [ 5] 76.00-77.00 sec 12.0 MBytes 101 Mbits/sec 0.124 ms 1494/10180 (15%) +[UE3] [2025-07-19 14:43:12] [ 5] 77.00-78.00 sec 12.2 MBytes 103 Mbits/sec 0.119 ms 1686/10537 (16%) +[UE3] [2025-07-19 14:43:13] [ 5] 78.00-79.00 sec 12.4 MBytes 104 Mbits/sec 0.106 ms 1358/10339 (13%) +[UE3] [2025-07-19 14:43:14] [ 5] 79.00-80.00 sec 11.2 MBytes 93.6 Mbits/sec 0.074 ms 1473/9558 (15%) +[UE3] [2025-07-19 14:43:15] [ 5] 80.00-81.00 sec 12.2 MBytes 103 Mbits/sec 0.081 ms 2306/11165 (21%) +[UE3] [2025-07-19 14:43:16] [ 5] 81.00-82.00 sec 12.2 MBytes 102 Mbits/sec 0.079 ms 1358/10194 (13%) +[UE3] [2025-07-19 14:43:17] [ 5] 82.00-83.00 sec 10.8 MBytes 90.9 Mbits/sec 0.115 ms 1471/9320 (16%) +[UE3] [2025-07-19 14:43:18] [ 5] 83.00-84.00 sec 12.8 MBytes 107 Mbits/sec 0.083 ms 2579/11832 (22%) +[UE3] [2025-07-19 14:43:19] [ 5] 84.00-85.00 sec 12.0 MBytes 101 Mbits/sec 0.101 ms 1409/10089 (14%) +[UE3] [2025-07-19 14:43:20] [ 5] 85.00-86.00 sec 12.0 MBytes 101 Mbits/sec 0.080 ms 1227/9936 (12%) +[UE3] [2025-07-19 14:43:21] [ 5] 86.00-87.00 sec 12.8 MBytes 107 Mbits/sec 0.077 ms 1618/10878 (15%) +[UE3] [2025-07-19 14:43:22] [ 5] 87.00-88.00 sec 11.4 MBytes 95.6 Mbits/sec 0.089 ms 1334/9590 (14%) +[UE3] [2025-07-19 14:43:23] [ 5] 88.00-89.00 sec 12.2 MBytes 103 Mbits/sec 0.075 ms 1843/10694 (17%) +[UE3] [2025-07-19 14:43:24] [ 5] 89.00-90.00 sec 12.8 MBytes 107 Mbits/sec 0.111 ms 1644/10890 (15%) +[UE3] [2025-07-19 14:43:25] [ 5] 90.00-91.00 sec 12.3 MBytes 103 Mbits/sec 0.083 ms 1391/10264 (14%) +[UE3] [2025-07-19 14:43:26] [ 5] 91.00-92.00 sec 12.0 MBytes 100 Mbits/sec 0.115 ms 1390/10050 (14%) +[UE3] [2025-07-19 14:43:27] [ 5] 92.00-93.00 sec 11.3 MBytes 94.7 Mbits/sec 0.110 ms 1510/9688 (16%) +[UE3] [2025-07-19 14:43:28] [ 5] 93.00-94.00 sec 10.9 MBytes 91.8 Mbits/sec 0.087 ms 2242/10167 (22%) +[UE3] [2025-07-19 14:43:29] [ 5] 94.00-95.00 sec 12.2 MBytes 102 Mbits/sec 0.078 ms 2461/11292 (22%) +[UE3] [2025-07-19 14:43:30] [ 5] 95.00-96.00 sec 12.2 MBytes 102 Mbits/sec 0.073 ms 1391/10214 (14%) +[UE3] [2025-07-19 14:43:31] [ 5] 96.00-97.00 sec 12.8 MBytes 108 Mbits/sec 0.074 ms 1788/11076 (16%) +[UE3] [2025-07-19 14:43:32] [ 5] 97.00-98.00 sec 12.0 MBytes 101 Mbits/sec 0.074 ms 1288/9984 (13%) +[UE3] [2025-07-19 14:43:33] [ 5] 98.00-99.00 sec 12.2 MBytes 102 Mbits/sec 0.084 ms 1532/10358 (15%) +[UE3] [2025-07-19 14:43:35] [ 5] 99.00-100.00 sec 12.3 MBytes 103 Mbits/sec 0.081 ms 1567/10475 (15%) diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE3.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE3.log new file mode 100644 index 000000000..dd30fda2a --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/UE3.log @@ -0,0 +1,320109 @@ +stdbuf: missing operand +Try 'stdbuf --help' for more information. +creating namespace for UE ID 3 name ue3 +opening shell in namespace ue3 +type 'ip netns exec ue3 bash' in additional terminals +Calling sched_setscheduler(79) +[ENB_APP] nfapi (0) running mode: MONOLITHIC +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool2_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool2_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool3_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool3_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool4_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool4_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool5_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool5_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool6_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool6_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool7_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool7_-1, affinity ffffffff, priority 97 +[ITTI] Starting itti queue: TASK_UNKNOWN as task 0 +[ITTI] Starting itti queue: TASK_TIMER as task 1 +[ITTI] Starting itti queue: TASK_L2L1 as task 2 +[ITTI] Starting itti queue: TASK_BM as task 3 +[ITTI] Starting itti queue: TASK_PHY_ENB as task 4 +[ITTI] Starting itti queue: TASK_MAC_GNB as task 5 +[ITTI] Starting itti queue: TASK_RLC_ENB as task 6 +[ITTI] Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7 +[ITTI] Starting itti queue: TASK_PDCP_ENB as task 8 +[ITTI] Starting itti queue: TASK_PDCP_GNB as task 9 +[ITTI] Starting itti queue: TASK_DATA_FORWARDING as task 10 +[ITTI] Starting itti queue: TASK_END_MARKER as task 11 +[ITTI] Starting itti queue: TASK_RRC_ENB as task 12 +[ITTI] Starting itti queue: TASK_RRC_GNB as task 13 +[ITTI] Starting itti queue: TASK_RAL_ENB as task 14 +[ITTI] Starting itti queue: TASK_S1AP as task 15 +[ITTI] Starting itti queue: TASK_NGAP as task 16 +[ITTI] Starting itti queue: TASK_X2AP as task 17 +[ITTI] Starting itti queue: TASK_M2AP_ENB as task 18 +[ITTI] Starting itti queue: TASK_M2AP_MCE as task 19 +[ITTI] Starting itti queue: TASK_M3AP as task 20 +[ITTI] Starting itti queue: TASK_M3AP_MME as task 21 +[ITTI] Starting itti queue: TASK_M3AP_MCE as task 22 +[ITTI] Starting itti queue: TASK_SCTP as task 23 +[ITTI] Starting itti queue: TASK_ENB_APP as task 24 +[ITTI] Starting itti queue: TASK_GNB_APP as task 25 +[ITTI] Starting itti queue: TASK_MCE_APP as task 26 +[ITTI] Starting itti queue: TASK_MME_APP as task 27 +[ITTI] Starting itti queue: TASK_PHY_UE as task 28 +[ITTI] Starting itti queue: TASK_MAC_UE as task 29 +[ITTI] Starting itti queue: TASK_RLC_UE as task 30 +[ITTI] Starting itti queue: TASK_PDCP_UE as task 31 +[ITTI] Starting itti queue: TASK_RRC_UE as task 32 +[ITTI] Starting itti queue: TASK_RRC_NRUE as task 33 +[ITTI] Starting itti queue: TASK_NAS_UE as task 34 +[ITTI] Starting itti queue: TASK_RAL_UE as task 35 +[ITTI] Starting itti queue: TASK_GTPV1_U as task 36 +[ITTI] Starting itti queue: TASK_CU_F1 as task 37 +[ITTI] Starting itti queue: TASK_DU_F1 as task 38 +[ITTI] Starting itti queue: TASK_CUCP_E1 as task 39 +[ITTI] Starting itti queue: TASK_CUUP_E1 as task 40 +[ITTI] Starting itti queue: TASK_RRC_UE_SIM as task 41 +[ITTI] Starting itti queue: TASK_RRC_GNB_SIM as task 42 +[ITTI] Starting itti queue: TASK_RRC_NSA_UE as task 43 +[ITTI] Starting itti queue: TASK_RRC_NSA_NRUE as task 44 +[ITTI] Starting itti queue: TASK_NAS_NRUE as task 45 +[OPT] OPT disabled +[HW] Version: Branch: slicing-spring-of-code Abrev. Hash: 50d33e69f0 Date: Sat Mar 30 19:11:11 2024 +0100 +[PDCP] pdcp init,usegtp usenetlink +[PDCP] TUN: Opened socket oaitun_ue1 with fd nas_sock_fd[0]=97 +[PDCP] UE pdcp will use tun interface +[NR_MAC] [UE0] Initializing MAC +[NR_MAC] Initializing dl and ul config_request. num_slots = 20 +[RLC] activated srb0 for UE with RNTI 0x0 +[PHY] Set UE_fo_compensation 0, UE_scan_carrier 0, UE_no_timing_correction 0 +, chest-freq 0, chest-time 0 +[PHY] Set UE nb_rx_antenna 1, nb_tx_antenna 1, threequarter_fs 1, ssb_start_subcarrier 516 +[PHY] SA init parameters. DL freq 3619200000 UL offset 0 SSB numerology 1 N_RB_DL 106 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] samples_per_subframe 46080/per second 46080000, wCP 43008 +[PHY] Initializing UE vars for gNB TXant 1, UE RXant 1 +[PHY] prs_config configuration NOT found..!! Skipped configuring UE for the PRS reception +[PHY] UE 0 Setting N_TA_offset to 600 samples (factor 1.500000, UL Freq 3619200000, N_RB 106, mu 1) +[PHY] HW: Configuring card 0, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 1, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 2, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 3, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 4, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 5, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 6, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 7, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[HW] # /dev/cpu_dma_latency set to 2 us +sh: 1: cannot create /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu10/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu11/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu12/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu13/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu14/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu15/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu8/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu9/cpufreq/scaling_min_freq: Directory nonexistent +[HW] Can't set cpu frequency +[PHY] Intializing UE Threads for instance 0 (0x55dadd96af80,0x7f73bc891010)... +[UTIL] Creating thread UEthread with affinity -1 and priority 97 +[UTIL] threadCreate for UEthread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_UE_stats with affinity -1 and priority 1 +[HW] sample_rate 46080000.000000 +[HW] Running as client: will connect to a rfsimulator server side +[HW] [RRU] has loaded RFSIMULATOR device. +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_default=134217728" to increase RFsim performance +[UTIL] threadCreate for L1_UE_stats, affinity ffffffff, priority 1 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_max=134217728" to increase RFsim performance +[NR_RRC] create TASK_RRC_NRUE +[UTIL] Creating thread TASK_RRC_NRUE with affinity -1 and priority 50 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_default=134217728" to increase RFsim performance +[UTIL] threadCreate for TASK_RRC_NRUE, affinity ffffffff, priority 50 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_max=134217728" to increase RFsim performance +[ITTI] Created Posix thread TASK_RRC_NRUE +[UTIL] Creating thread TASK_NAS_NRUE with affinity -1 and priority 50 +[HW] Trying to connect to 10.203.1.100:4043 +[HW] Connection to 10.203.1.100:4043 established +[HW] connect() to 10.203.1.100:4043 failed, errno(0) +[UTIL] threadCreate for TASK_NAS_NRUE, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_NAS_NRUE +[SIM] UICC simulation: IMSI=001010000000002, IMEISV=6754567890123413, Ki=fec86ba6eb707ed08905757b1bb44b8f, OPc=C42449363BBAD02B66D16BC975D77CC1, DNN=oai2, SST=0x01, SD=0x000005 +[PHY] [SCHED][UE] Check absolute frequency DL 3619200000.000000, UL 3619200000.000000 (RF card 0, oai_exit 0, channel 0, rx_num_channels 1) +[NR_PHY] Starting sync detection +[PHY] [UE thread Synch] Running Initial Synch +[PHY] [UE] nr_synchro_time: Sync source = 0, Peak found at pos 85696, val = 1818651250 (90 dB) avg 51 dB, ffo 0.000000 +[PHY] PSS execution duration 27019 microseconds +[NR_PHY] ffo_pss 0.000000 (0 Hz), ffo_sss 0.000657 (19 Hz), ffo_pss+ffo_sss 0.000657 (19 Hz), nid1: 0, nid2: 0 +[PHY] [UE0] Initial sync: pbch decoded sucessfully, ssb index 0 +[PHY] [UE0] In synch, rx_offset 82276 samples +[PHY] [UE 0] Measured Carrier Frequency 3619200000 Hz (offset 0 Hz) +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] Got synch: hw_slot_offset 7, carrier off 0 Hz, rxgain 0.000000 (DL 3619200000.000000 Hz, UL 3619200000.000000 Hz) +[PHY] UE synchronized! decoded_frame_rx=658 UE->init_sync_frame=1 trashed_frames=6 +[PHY] Resynchronizing RX by 82276 samples +[NR_RRC] SIB1 decoded +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[MAC] Initialization of 4-step contention-based random access procedure +[NR_MAC] PRACH scheduler: Selected RO Frame 807, Slot 19, Symbol 0, Fdm 0 +[PHY] PRACH [UE 0] in frame.slot 807.19, placing PRACH in position 1804, msg1 frequency start 0 (k1 0), preamble_offset 4, first_nonzero_root_idx 0 +[NR_MAC] [UE 0][RAPROC] Got BI RAR subPDU 5 ms +[NR_MAC] [UE 0][RAPROC] Got RAPID RAR subPDU +[NR_MAC] [UE 0][RAPROC][808.7] Received RAR preamble (11) doesn't match the intended RAPID (17) +[PHY] RAR-Msg2 decoded +[MAC] [UE 0][816:9] RAR reception failed +[NR_MAC] PRACH scheduler: Selected RO Frame 817, Slot 19, Symbol 0, Fdm 0 +[PHY] PRACH [UE 0] in frame.slot 817.19, placing PRACH in position 1804, msg1 frequency start 0 (k1 0), preamble_offset 2, first_nonzero_root_idx 0 +[NR_MAC] [UE 0][RAPROC] Got BI RAR subPDU 5 ms +[NR_MAC] [UE 0][RAPROC] Got RAPID RAR subPDU +[NR_MAC] [UE 0][RAPROC][818.7] Found RAR with the intended RAPID 11 +[MAC] received TA command 31 +[PHY] RAR-Msg2 decoded +[NR_MAC] [RAPROC][818.17] RA-Msg3 transmitted +[MAC] [UE 0][RAPROC] Frame 819 : received contention resolution identity: 0x17fb67a90866 Terminating RA procedure +[MAC] [UE 0][819.10][RAPROC] RA procedure succeeded. CB-RA: Contention Resolution is successful. +[NR_RRC] [UE0][RAPROC] Logical Channel DL-CCCH (SRB0), Received NR_RRCSetup +[RLC] Added srb 1 to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] State = NR_RRC_CONNECTED +[NR_RRC] [UE 0][RAPROC] Logical Channel UL-DCCH (SRB1), Generating RRCSetupComplete (bytes39) +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 42 , buffer 0x7f737c0043a0 +[NAS] nr_nas_msg_sim.c:331 derive_kgnb with count= 0 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 21 , buffer 0x7f737c005810 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_RRC] Received securityModeCommand (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing securityModeCommand +[NR_RRC] Security algorithm is set to nea0 +[NR_RRC] Integrity protection algorithm is set to nia2 +[NR_RRC] rrc_ue_process_securityModeCommand, security mode complete case +[NR_RRC] Receiving from SRB1 (DL-DCCH), encoding securityModeComplete, rrc_TransactionIdentifier: 2 +[NR_PHY] RSRP = -41 dBm +[NR_RRC] radio Bearer Configuration is present +[NR_RRC] State = NR_RRC_CONNECTED +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] Measurement Configuration is present +[NR_RRC] Measurement Object List is present +[NR_RRC] Adding measurement object 1 +[NR_RRC] call rrc_mac_config_req +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 69 +[NR_RRC] Report Configuration List is present +[NAS] [UE] Received REGISTRATION ACCEPT message +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NAS] This NAS IEI is not handled when extracting list of allowed NSSAI +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[NR_RRC] Received Capability Enquiry (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing UECapabilityEnquiry +CMDLINE: "./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem" "--rfsimulator.serveraddr" "10.203.1.100" "-r" "106" "--numerology" "1" "--band" "78" "-C" "3619200000" "--rfsim" "--sa" "-O" "ran-conf/ue_2.conf" "-E" +[CONFIG] get parameters from libconfig ran-conf/ue_2.conf [LIBCONFIG] Path for include directive set to: ran-conf +[CONFIG] function config_libconfig_init returned 0 +[CONFIG] config module libconfig loaded +[LIBCONFIG] config: 2/2 parameters successfully set, (2 to default value) +[CONFIG] debug flags: 0x00000000 +[LIBCONFIG] log_config: 3/3 parameters successfully set, (2 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (48 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (50 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +log init done +[LIBCONFIG] (root): 31/31 parameters successfully set, (28 to default value) +[LIBCONFIG] (root): 42/42 parameters successfully set, (37 to default value) +[LIBCONFIG] (root): 6/6 parameters successfully set, (5 to default value) +[LIBCONFIG] TTracer: 3/3 parameters successfully set, (3 to default value) +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value) +[LIBCONFIG] loader.ldpc: 2/2 parameters successfully set, (1 to default value) +shlib_path libldpc.so +[LOADER] library libldpc.so successfully loaded +[LIBCONFIG] nas.noS1: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value) +shlib_path libdfts.so +[LOADER] library libdfts.so successfully loaded +[LIBCONFIG] list PRSs not found in config file ran-conf/ue_2.conf +[LIBCONFIG] device.recplay: 8/8 parameters successfully set, (8 to default value) +[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] loader.rfsimulator: 2/2 parameters successfully set, (1 to default value) +shlib_path librfsimulator.so +[LOADER] library librfsimulator.so successfully loaded +[LIBCONFIG] rfsimulator: 9/9 parameters successfully set, (5 to default value) +Initializing random number generator, seed 11324499487402472745 +UE threads created by 92841 +TYPE TO TERMINATE +[LIBCONFIG] uicc0: 10/10 parameters successfully set, (4 to default value) +kgnb : 1d b9 69 f0 43 94 4c 5e 38 00 af 99 a4 21 30 d8 42 70 c7 48 64 e6 b2 c3 ce aa a6 47 2b 59 61 9d +kausf:e7 da 77 2f 97 5f e2 a2 48 2a ed 2c 37 f1 32 c2 30 8 38 da 7a 63 6b d f0 7c 29 2d 6f a3 6c 4e +kseaf:61 e6 6d bb 37 40 e5 5e db bb b4 e9 82 a1 3c cc ce 56 fd cb 5f ce fb 4a 34 3e 4f 43 a6 50 3d 11 +kamf:b2 29 50 5a bc ea 2d 7f 21 9 70 68 b4 d7 48 bc 1b 82 4d b9 1d cf cb d 7e 66 f7 6c 7e 7a 38 4d +knas_int: +75 9a 33 41 94 c4 e9 4 7d e0 aa 22 3a c9 87 ba +mac ed 7 6d e2 +Entering ITTI signals handler +TYPE TO TERMINATE +[NR_RRC] driving kRRCenc, kRRCint and kUPenc from KgNB=1d b9 69 f0 43 94 4c 5e 38 00 af 99 a4 21 30 d8 42 70 c7 48 64 e6 b2 c3 ce aa a6 47 2b 59 61 9d  +[NR_RRC] securityModeComplete payload: 2c 00 53 dc da 55 00 00 04 00 00 00 00 00 00 00  + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + +[PHY] [RRC]UE NR Capability encoded, 10 bytes (86 bits) +[NR_RRC] UECapabilityInformation Encoded 106 bits (14 bytes) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NAS] Send NAS_UPLINK_DATA_REQ message(RegistrationComplete) +[NAS] Send NAS_UPLINK_DATA_REQ message(PduSessionEstablishRequest) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_RRC] radio Bearer Configuration is present +[PDCP] added drb 1 to UE ID 0 +[SDAP] Default DRB for the created SDAP entity: 1 +[NR_RRC] State = NR_RRC_CONNECTED +[RLC] Added srb 2 to UE with RNTI 0x0 +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0x0 +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 102 +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.130, mask 255.255.255.0 broadcast address 12.1.1.255 +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 102 +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.130, mask 255.255.255.0 broadcast address 12.1.1.255 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 4701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 19205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 82052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 82536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 107191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 107676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 184522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 215214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 272261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 370230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 370648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 422853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 674316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 677330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 698420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 719515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 722527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 725541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 728157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 728612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 730420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 730872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 731324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 731776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 733132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 733585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 734074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 734838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 735590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 736344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 737095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 737854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 738603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 739356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 741613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 744630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 745380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 747638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 748391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 750653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 751406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 753664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 754423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 756682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 759699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 760453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 761208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 761958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 763467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 764219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 764973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 766477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 767228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 767984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 770366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 770791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 775395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 775845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 781327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 781725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] Harq round stats for Downlink: 804631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 814108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 826387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 826838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 827291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 827743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 851368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 851820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 853175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 853626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 856345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 856797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 857423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 859690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 874749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 878515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 890577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 899613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 908648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 960341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 960726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 981302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 981663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1002179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1002630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007606/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1031107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1031816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1033323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1036337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1038597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1039349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1041616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1042368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1045383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1048394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1051404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1054416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1055167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1055922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1057427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1059685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1060440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1063455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1066470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1067227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1067978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1084544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1094600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1098362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1109663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1167999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1201147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1201600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1204314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1204768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1205252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1206020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1206770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1207528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1208283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1209037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1209792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1210539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1211295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1212046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1212796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1213551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1214303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1215056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1215813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1216571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1217321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1219577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1220331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1223344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1226362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1228618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1229373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1231632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1232383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1234649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1235398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1237654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1238407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1240663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1241424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1244433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1246691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1247441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1249702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1250453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1252716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1253472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1255733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1256486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1258747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1259501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1261005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1261760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1262511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1267254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1267706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1270422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1270875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1273412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1276427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1279443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1282456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1284717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1290747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1317259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1317641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1384266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1384876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1385637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1388647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1389402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1391663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1394678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1397692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1399201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1399952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1400707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1403719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1406740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1409747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1410499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1411250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1414268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1415019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1415771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1417281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1420295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1423311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1425570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1426329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1436110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1436761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1442185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1442638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1444636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1446146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1446898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1447659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1448410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1449164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1449915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1450669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1451424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1452178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1452931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1453682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1454436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1456700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1457452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1459711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1460461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1461216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1461966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1462725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1463479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1464233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1464987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1465738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1466489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1467241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1467995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1468748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1469503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1470256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1472513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1478361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1478786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1481272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1481704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1484188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1484596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566305/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1575340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1581366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1584379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1585134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1585886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1587392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1589653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1590407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1593424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1596437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1599450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1600201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1600956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1603272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1603723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1608249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1608700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1611615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1612367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1614630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1615381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1617641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1618398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1620656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1621414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1623672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1626688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1627441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1629701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1630456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1632713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1633468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1641757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1643264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1645517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1646269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1648534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1649284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1651544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1652298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1654555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1655316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1657575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1658328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1660589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1661339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1663598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1664349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1666612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1667369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1682309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1682783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1685273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1685681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1687346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1687754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1690255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1690676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1693210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1693633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1695266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1695684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1696097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1696506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1696924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1697360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1697771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1700321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1700760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1702425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1702834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1703254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1703683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1705387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1705810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] Harq round stats for Downlink: 1751420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1775636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1796731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1799746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1803513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1805019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1805769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1806524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1808031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1808791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1809539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1812546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1815562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1818574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1821585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1832258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1834525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1835281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1838294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1839043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1839800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1841306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1843570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1844322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1847340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1850349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1851100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1851856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1853367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1855623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1856375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1859389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1862406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1865416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1870693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1873699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1874456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927804/1/0 +[NR_PHY] ============================================ +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[0m[NR_PHY] Harq round stats for Downlink: 1973574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 107/216. Current DCI threshold: 53 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2074136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] Harq round stats for Downlink: 2138544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 81/216. Current DCI threshold: 40 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +stdbuf: missing operand +Try 'stdbuf --help' for more information. +creating namespace for UE ID 3 name ue3 +opening shell in namespace ue3 +type 'ip netns exec ue3 bash' in additional terminals +Calling sched_setscheduler(79) +[ENB_APP] nfapi (0) running mode: MONOLITHIC +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool2_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool2_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool3_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool3_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool4_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool4_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool5_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool5_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool6_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool6_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool7_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool7_-1, affinity ffffffff, priority 97 +[ITTI] Starting itti queue: TASK_UNKNOWN as task 0 +[ITTI] Starting itti queue: TASK_TIMER as task 1 +[ITTI] Starting itti queue: TASK_L2L1 as task 2 +[ITTI] Starting itti queue: TASK_BM as task 3 +[ITTI] Starting itti queue: TASK_PHY_ENB as task 4 +[ITTI] Starting itti queue: TASK_MAC_GNB as task 5 +[ITTI] Starting itti queue: TASK_RLC_ENB as task 6 +[ITTI] Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7 +[ITTI] Starting itti queue: TASK_PDCP_ENB as task 8 +[ITTI] Starting itti queue: TASK_PDCP_GNB as task 9 +[ITTI] Starting itti queue: TASK_DATA_FORWARDING as task 10 +[ITTI] Starting itti queue: TASK_END_MARKER as task 11 +[ITTI] Starting itti queue: TASK_RRC_ENB as task 12 +[ITTI] Starting itti queue: TASK_RRC_GNB as task 13 +[ITTI] Starting itti queue: TASK_RAL_ENB as task 14 +[ITTI] Starting itti queue: TASK_S1AP as task 15 +[ITTI] Starting itti queue: TASK_NGAP as task 16 +[ITTI] Starting itti queue: TASK_X2AP as task 17 +[ITTI] Starting itti queue: TASK_M2AP_ENB as task 18 +[ITTI] Starting itti queue: TASK_M2AP_MCE as task 19 +[ITTI] Starting itti queue: TASK_M3AP as task 20 +[ITTI] Starting itti queue: TASK_M3AP_MME as task 21 +[ITTI] Starting itti queue: TASK_M3AP_MCE as task 22 +[ITTI] Starting itti queue: TASK_SCTP as task 23 +[ITTI] Starting itti queue: TASK_ENB_APP as task 24 +[ITTI] Starting itti queue: TASK_GNB_APP as task 25 +[ITTI] Starting itti queue: TASK_MCE_APP as task 26 +[ITTI] Starting itti queue: TASK_MME_APP as task 27 +[ITTI] Starting itti queue: TASK_PHY_UE as task 28 +[ITTI] Starting itti queue: TASK_MAC_UE as task 29 +[ITTI] Starting itti queue: TASK_RLC_UE as task 30 +[ITTI] Starting itti queue: TASK_PDCP_UE as task 31 +[ITTI] Starting itti queue: TASK_RRC_UE as task 32 +[ITTI] Starting itti queue: TASK_RRC_NRUE as task 33 +[ITTI] Starting itti queue: TASK_NAS_UE as task 34 +[ITTI] Starting itti queue: TASK_RAL_UE as task 35 +[ITTI] Starting itti queue: TASK_GTPV1_U as task 36 +[ITTI] Starting itti queue: TASK_CU_F1 as task 37 +[ITTI] Starting itti queue: TASK_DU_F1 as task 38 +[ITTI] Starting itti queue: TASK_CUCP_E1 as task 39 +[ITTI] Starting itti queue: TASK_CUUP_E1 as task 40 +[ITTI] Starting itti queue: TASK_RRC_UE_SIM as task 41 +[ITTI] Starting itti queue: TASK_RRC_GNB_SIM as task 42 +[ITTI] Starting itti queue: TASK_RRC_NSA_UE as task 43 +[ITTI] Starting itti queue: TASK_RRC_NSA_NRUE as task 44 +[ITTI] Starting itti queue: TASK_NAS_NRUE as task 45 +[OPT] OPT disabled +[HW] Version: Branch: slicing-spring-of-code Abrev. Hash: 50d33e69f0 Date: Sat Mar 30 19:11:11 2024 +0100 +[PDCP] pdcp init,usegtp usenetlink +[PDCP] TUN: Opened socket oaitun_ue1 with fd nas_sock_fd[0]=97 +[PDCP] UE pdcp will use tun interface +[NR_MAC] [UE0] Initializing MAC +[NR_MAC] Initializing dl and ul config_request. num_slots = 20 +[RLC] activated srb0 for UE with RNTI 0x0 +[PHY] Set UE_fo_compensation 0, UE_scan_carrier 0, UE_no_timing_correction 0 +, chest-freq 0, chest-time 0 +[PHY] Set UE nb_rx_antenna 1, nb_tx_antenna 1, threequarter_fs 1, ssb_start_subcarrier 516 +[PHY] SA init parameters. DL freq 3619200000 UL offset 0 SSB numerology 1 N_RB_DL 106 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] samples_per_subframe 46080/per second 46080000, wCP 43008 +[PHY] Initializing UE vars for gNB TXant 1, UE RXant 1 +[PHY] prs_config configuration NOT found..!! Skipped configuring UE for the PRS reception +[PHY] UE 0 Setting N_TA_offset to 600 samples (factor 1.500000, UL Freq 3619200000, N_RB 106, mu 1) +[PHY] HW: Configuring card 0, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 1, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 2, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 3, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 4, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 5, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 6, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[PHY] HW: Configuring card 7, sample_rate 46080000.000000, tx/rx num_channels 1/1, duplex_mode TDD +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_gain 0, rx_gain 110 +[HW] # /dev/cpu_dma_latency set to 2 us +sh: 1: cannot create /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu10/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu11/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu12/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu13/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu14/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu15/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu8/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu9/cpufreq/scaling_min_freq: Directory nonexistent +[HW] Can't set cpu frequency +[PHY] Intializing UE Threads for instance 0 (0x55823e2a6f40,0x7fe8d4911010)... +[UTIL] Creating thread UEthread with affinity -1 and priority 97 +[UTIL] threadCreate for UEthread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_UE_stats with affinity -1 and priority 1 +[HW] sample_rate 46080000.000000 +[HW] Running as client: will connect to a rfsimulator server side +[HW] [RRU] has loaded RFSIMULATOR device. +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_default=134217728" to increase RFsim performance +[UTIL] threadCreate for L1_UE_stats, affinity ffffffff, priority 1 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_max=134217728" to increase RFsim performance +[NR_RRC] create TASK_RRC_NRUE +[UTIL] Creating thread TASK_RRC_NRUE with affinity -1 and priority 50 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_default=134217728" to increase RFsim performance +[UTIL] threadCreate for TASK_RRC_NRUE, affinity ffffffff, priority 50 +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_max=134217728" to increase RFsim performance +[ITTI] Created Posix thread TASK_RRC_NRUE +[UTIL] Creating thread TASK_NAS_NRUE with affinity -1 and priority 50 +[HW] Trying to connect to 10.203.1.100:4043 +[HW] Connection to 10.203.1.100:4043 established +[HW] connect() to 10.203.1.100:4043 failed, errno(0) +[UTIL] threadCreate for TASK_NAS_NRUE, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_NAS_NRUE +[SIM] UICC simulation: IMSI=001010000000002, IMEISV=6754567890123413, Ki=fec86ba6eb707ed08905757b1bb44b8f, OPc=C42449363BBAD02B66D16BC975D77CC1, DNN=oai2, SST=0x01, SD=0x000005 +[HW] Received Rx/Tx synchro out of order +[PHY] [SCHED][UE] Check absolute frequency DL 3619200000.000000, UL 3619200000.000000 (RF card 0, oai_exit 0, channel 0, rx_num_channels 1) +[NR_PHY] Starting sync detection +[PHY] [UE thread Synch] Running Initial Synch +[PHY] [UE] nr_synchro_time: Sync source = 0, Peak found at pos 325984, val = 1818308242 (90 dB) avg 51 dB, ffo 0.000000 +[PHY] PSS execution duration 26074 microseconds +[NR_PHY] ffo_pss 0.000000 (0 Hz), ffo_sss 0.000815 (24 Hz), ffo_pss+ffo_sss 0.000815 (24 Hz), nid1: 0, nid2: 0 +[PHY] [UE0] Initial sync: pbch decoded sucessfully, ssb index 0 +[PHY] [UE0] In synch, rx_offset 322564 samples +[PHY] [UE 0] Measured Carrier Frequency 3619200000 Hz (offset 0 Hz) +[PHY] HW: Configuring channel 0 (rf_chain 0): setting tx_freq 3619200000 Hz, rx_freq 3619200000 Hz, tune_offset 0 +[PHY] Got synch: hw_slot_offset 28, carrier off 0 Hz, rxgain 0.000000 (DL 3619200000.000000 Hz, UL 3619200000.000000 Hz) +[PHY] UE synchronized! decoded_frame_rx=178 UE->init_sync_frame=1 trashed_frames=6 +[PHY] Resynchronizing RX by 322564 samples +[NR_RRC] SIB1 decoded +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1/0/0 +[NR_PHY] ============================================ +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[MAC] Initialization of 4-step contention-based random access procedure +[NR_MAC] PRACH scheduler: Selected RO Frame 327, Slot 19, Symbol 0, Fdm 0 +[PHY] PRACH [UE 0] in frame.slot 327.19, placing PRACH in position 1804, msg1 frequency start 0 (k1 0), preamble_offset 12, first_nonzero_root_idx 0 +[NR_MAC] [UE 0][RAPROC] Got BI RAR subPDU 5 ms +[NR_MAC] [UE 0][RAPROC] Got RAPID RAR subPDU +[NR_MAC] [UE 0][RAPROC][328.7] Received RAR preamble (27) doesn't match the intended RAPID (50) +[PHY] RAR-Msg2 decoded +[MAC] [UE 0][336:9] RAR reception failed +[NR_MAC] PRACH scheduler: Selected RO Frame 337, Slot 19, Symbol 0, Fdm 0 +[PHY] PRACH [UE 0] in frame.slot 337.19, placing PRACH in position 1804, msg1 frequency start 0 (k1 0), preamble_offset 13, first_nonzero_root_idx 0 +[NR_MAC] [UE 0][RAPROC] Got BI RAR subPDU 5 ms +[NR_MAC] [UE 0][RAPROC] Got RAPID RAR subPDU +[NR_MAC] [UE 0][RAPROC][338.7] Found RAR with the intended RAPID 52 +[MAC] received TA command 31 +[PHY] RAR-Msg2 decoded +[NR_MAC] [RAPROC][338.17] RA-Msg3 transmitted +[MAC] [UE 0][RAPROC] Frame 339 : received contention resolution identity: 0x15bb69061d86 Terminating RA procedure +[MAC] [UE 0][339.10][RAPROC] RA procedure succeeded. CB-RA: Contention Resolution is successful. +[NR_RRC] [UE0][RAPROC] Logical Channel DL-CCCH (SRB0), Received NR_RRCSetup +[RLC] Added srb 1 to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] State = NR_RRC_CONNECTED +[NR_RRC] [UE 0][RAPROC] Logical Channel UL-DCCH (SRB1), Generating RRCSetupComplete (bytes39) +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 42 , buffer 0x7fe8940043a0 +[NAS] nr_nas_msg_sim.c:331 derive_kgnb with count= 0 +[NR_PHY] RSRP = -41 dBm +[NAS] [UE 0] Received NAS_DOWNLINK_DATA_IND: length 21 , buffer 0x7fe894003710 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_RRC] Received securityModeCommand (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing securityModeCommand +[NR_RRC] Security algorithm is set to nea0 +[NR_RRC] Integrity protection algorithm is set to nia2 +[NR_RRC] rrc_ue_process_securityModeCommand, security mode complete case +[NR_RRC] Receiving from SRB1 (DL-DCCH), encoding securityModeComplete, rrc_TransactionIdentifier: 2 +[NR_PHY] RSRP = -41 dBm +[NR_RRC] radio Bearer Configuration is present +[NR_RRC] State = NR_RRC_CONNECTED +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] Measurement Configuration is present +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 69 +[NR_RRC] Measurement Object List is present +[NAS] [UE] Received REGISTRATION ACCEPT message +[NR_RRC] Adding measurement object 1 +[NAS] This NAS IEI is not handled when extracting list of allowed NSSAI +[NR_RRC] call rrc_mac_config_req +[NR_RRC] Report Configuration List is present +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[NR_RRC] Received Capability Enquiry (gNB 0) +[NR_RRC] Receiving from SRB1 (DL-DCCH), Processing UECapabilityEnquiry +CMDLINE: "./openairinterface5g/cmake_targets/ran_build/build/nr-uesoftmodem" "--rfsimulator.serveraddr" "10.203.1.100" "-r" "106" "--numerology" "1" "--band" "78" "-C" "3619200000" "--rfsim" "--sa" "-O" "ran-conf/ue_2.conf" "-E" +[CONFIG] get parameters from libconfig ran-conf/ue_2.conf [LIBCONFIG] Path for include directive set to: ran-conf +[CONFIG] function config_libconfig_init returned 0 +[CONFIG] config module libconfig loaded +[LIBCONFIG] config: 2/2 parameters successfully set, (2 to default value) +[CONFIG] debug flags: 0x00000000 +[LIBCONFIG] log_config: 3/3 parameters successfully set, (2 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (48 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (50 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +log init done +[LIBCONFIG] (root): 31/31 parameters successfully set, (28 to default value) +[LIBCONFIG] (root): 42/42 parameters successfully set, (37 to default value) +[LIBCONFIG] (root): 6/6 parameters successfully set, (5 to default value) +[LIBCONFIG] TTracer: 3/3 parameters successfully set, (3 to default value) +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value) +[LIBCONFIG] loader.ldpc: 2/2 parameters successfully set, (1 to default value) +shlib_path libldpc.so +[LOADER] library libldpc.so successfully loaded +[LIBCONFIG] nas.noS1: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value) +shlib_path libdfts.so +[LOADER] library libdfts.so successfully loaded +[LIBCONFIG] list PRSs not found in config file ran-conf/ue_2.conf +[LIBCONFIG] device.recplay: 8/8 parameters successfully set, (8 to default value) +[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] loader.rfsimulator: 2/2 parameters successfully set, (1 to default value) +shlib_path librfsimulator.so +[LOADER] library librfsimulator.so successfully loaded +[LIBCONFIG] rfsimulator: 9/9 parameters successfully set, (5 to default value) +Initializing random number generator, seed 1351915221934994438 +UE threads created by 116897 +TYPE TO TERMINATE +[LIBCONFIG] uicc0: 10/10 parameters successfully set, (4 to default value) +kgnb : 8a 95 0d da 5e 9f 06 97 ad da 13 10 05 75 ee 37 ab 29 7c cf 24 6f 8d 53 45 af 48 82 ac 08 d8 dd +kausf:1a a7 b9 a1 84 41 4c 47 c9 55 45 60 e5 13 ab 48 ef 1c 95 c3 4c bb 4b 1e 6d fe 64 89 41 15 29 a5 +kseaf:60 35 b0 63 e1 b0 c9 f1 35 92 ba 40 19 2a 11 9d 13 e2 2e 8c ae ea 2e 91 b5 fc 68 59 a4 a1 50 0 +kamf:47 4a c fa e5 6e ed c3 9 d0 8b a4 c 51 32 59 62 79 1d 18 28 c1 b4 5d f9 43 2f 23 a0 8c 6 86 +knas_int: +b af c7 26 41 79 f3 d7 33 a5 d1 4e 63 6b e2 74 +mac 83 b3 ee 59 +[NR_RRC] driving kRRCenc, kRRCint and kUPenc from KgNB=8a 95 0d da 5e 9f 06 97 ad da 13 10 05 75 ee 37 ab 29 7c cf 24 6f 8d 53 45 af 48 82 ac 08 d8 dd  +[NR_RRC] securityModeComplete payload: 2c 00 2c 3c 82 55 00 00 04 00 00 00 00 00 00 00  + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + +[PHY] [RRC]UE NR Capability encoded, 10 bytes (86 bits) +[NR_RRC] UECapabilityInformation Encoded 106 bits (14 bytes) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NAS] Send NAS_UPLINK_DATA_REQ message(RegistrationComplete) +[NR_PHY] RSRP = -41 dBm +[NAS] Send NAS_UPLINK_DATA_REQ message(PduSessionEstablishRequest) +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25/0/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_RRC] radio Bearer Configuration is present +[PDCP] added drb 1 to UE ID 0 +[SDAP] Default DRB for the created SDAP entity: 1 +[NR_RRC] State = NR_RRC_CONNECTED +[RLC] Added srb 2 to UE with RNTI 0x0 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0x0 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0x0 +[MAC] Applying CellGroupConfig from gNodeB +[NR_RRC] rrcReconfigurationComplete Encoded 10 bits (2 bytes) +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 102 +[NR_RRC] Logical Channel UL-DCCH (SRB1), Generating RRCReconfigurationComplete (bytes 2) +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.130, mask 255.255.255.0 broadcast address 12.1.1.255 +[NAS] [UE 0] Received NAS_CONN_ESTABLI_CNF: errCode 1, length 102 +[OIP] Interface oaitun_ue1 successfully configured, ip address 12.1.1.130, mask 255.255.255.0 broadcast address 12.1.1.255 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 4980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 5948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 6916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 7882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 8850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 9818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 10784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 11752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 12714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 13668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 14627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 15593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 16560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 17528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 18979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 19946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 20913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 21880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 22847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 23815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 24782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 25749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 26717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 27684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 28651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 29619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 30586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 31551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 32520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 33971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 34938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 35906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 36872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 37840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 38808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 39773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 40740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 41709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 42675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 43642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 44611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 45577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 46544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 47995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 48962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 49930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 50897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 51864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 52832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 53799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 54766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 55733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 56701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 57668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 58634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 59602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 60569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 61536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 62988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 63953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 64921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 65890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 66855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 67823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 68791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 69757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 70725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 71693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 72659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 73627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 74594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 75561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 76529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 77979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 78936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 79893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 80846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 81803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 82281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 82757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 83714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 84682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 85649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 86616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 87583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 88551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 89518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 90968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 91936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 92903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 93870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 94838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 95805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 96772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 97740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 98706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 99674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 100642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 101607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 102574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 103059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 103544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 104993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 105961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 106927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 107411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 107895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 108863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 109829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 110796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 111764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 112731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 113698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 114666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 115633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 116600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 117567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 118535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 119985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 120953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 121920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 122887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 123855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 124822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 125787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 126756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 127724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 128689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 129657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 130625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 131591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 132559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 133527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 134976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 135945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 136911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 137878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 138660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 139724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 140815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 141884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 142966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 143682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 144758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 145829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 146925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 147647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 148730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 149831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 150910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 151990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 152714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 153806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 154892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 155954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 156678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 157784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 158852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 159934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 160654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 161740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 162801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 163889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 164962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 165673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 166750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 167820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 168918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 169653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 170733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 171783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 172850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 173932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 174653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 175744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 176809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 177882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 178990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 179698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 180799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 181867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 182943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 183666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 184755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 185838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 186909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 187984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 188711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 189813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 190881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 191973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 192709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 193782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 194850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 195937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 196660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 197729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 198841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 199947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 200670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 201746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 202838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 203916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 204998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 205721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 206807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 207890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 208964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 209689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 210774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 211845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 212925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 213637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 214718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 215804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 216898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 217985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 218740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 219830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 220906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 221984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 222694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 223766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 224850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 225933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 226657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 227762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 228830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 229916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 230642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 231730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 232796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 233854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 234933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 235639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 236711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 237786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 238873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 239945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 52 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 240933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 241709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 242655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 243601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 244543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 245963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 246904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 247851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 248795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 249739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 250685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 251630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 252574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 253991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 254937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 255879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 256826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 257768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 258714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 259660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 260603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 261548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 262965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 263911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 264853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 265800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 266743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 267686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 268634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 269576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 270995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 271938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 272884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 273828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 274773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 275718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 276661/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 277609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 278551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 279969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 280911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 281857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 282804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 283746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 284692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 285636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 286581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 287996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 288943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 289887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 290832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 291779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 292721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 293667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 294610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 295556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 296972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 297917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 298863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 299806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 300753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 301695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 302641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 303585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 304531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 305963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 306920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 307872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 308828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 309785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 310739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 311695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 312652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 313605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 314560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 315994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 316948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 317907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 318859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 319814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 320773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 321724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 322681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 323638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 324591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 325548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 326980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 327936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 328892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 329846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 330801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 331757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 332712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 333668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 334623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 335578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 336535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 337965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 338923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 339876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 340832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 341789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 342741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 343698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 344655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 345608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 346565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 347997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 348952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 349910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 350863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 351817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 352776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 353728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 354684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 355642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 356594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 357551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 358995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 359962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 360929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 361897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 362864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 363830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 364798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 365766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 366732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 367700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 368667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 369634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 370118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 370602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 371569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 372536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 373987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 374953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 375921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 376889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 377746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 378837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 379896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 380994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 381719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 382820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 383909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 384993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 385702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 386791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 387876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 388953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 389682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 390763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 391832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 392934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 393659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 394739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 395817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 396935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 397679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 398747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 399830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 400917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 401996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 402719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 403809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 404902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 405967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 406694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 407806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 408912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 409660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 410767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 411837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 412923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 413993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 414742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 415827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 416922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 417654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 418744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 419835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 420950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 421700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 422801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 423882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 424973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 425680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 426779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 427861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 428961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 429673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 430739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 431832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 432949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 433683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 434794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 435873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 436975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 437696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 438786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 439870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 440969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 441692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 442792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443534/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 443896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 444985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 445712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 446826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 447915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 448637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 449764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 450853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 451943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 452656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 453747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 454818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 455921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 456999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 457734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 458862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 459960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 460704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 461793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 462878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 463237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 463969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 464700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 465800/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 466900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 467638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 468746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 469836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 470952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 471674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 472764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 473838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 474944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 475671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 476737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 477845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 478927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 479668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 52 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 480995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 481855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 482822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 483788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 484757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 485724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 486690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 487658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 488625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 489592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 490560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 491527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 492977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 493945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 494911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 495879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 496847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 497813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 498781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 499749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 500715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 501683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 502649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 503617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 504585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 505551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 506518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 507970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 508937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 509904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 510871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 511838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 512805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 513773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 514740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 515707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 516675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 517642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 518609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 519577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 520544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 521994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 522962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 523929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 524896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 525864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 526830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 527798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 528766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 529731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 530698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 531667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 532633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 533600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 534569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 535535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 536987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 537953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 538920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 539888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 540855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 541822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 542790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 543757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 544724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 545691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 546659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 547626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 548592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 549560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 550527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 551979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 552946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 553911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 554879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 555848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 556813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 557781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 558749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 559715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 560683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 561651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 562617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 563585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 564552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 565519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 566971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 567937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 568904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 569872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 570839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 571806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 572773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 573740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 574708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 575675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 576642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 577609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 578577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 579544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 580994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 581962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 582929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 583896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 584864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 585831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 586798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 587766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 588732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 589700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 590668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 591633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 592600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 593570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 594535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 595987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 596953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 597921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 598889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 599855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 600822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 601790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 602757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 603724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 604692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 605659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 606626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 607593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 608561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 609528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 610979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 611946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 612913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 613881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 614848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 615813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 616782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 617750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 618715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 619872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 620788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 621882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 622988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 623714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 624847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 625939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 626685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 627804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 628920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 629654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 630783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 631880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 632991/1/0 +[NR_PHY] ============================================ +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 633717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 634816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 635902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 636978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 637710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 638790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 639913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 640651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 641745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 642890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 643977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 644732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 645843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 646939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 647663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 648773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 649880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 650623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 651774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 652892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 653997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 654728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 655849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 656960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 657697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 658816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 659933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 660677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 661782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 662882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 663982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 664711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 665797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 666928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 667681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 668774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 669887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 670991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 671725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 672822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 673940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 674306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 674676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 675809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 676911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 677277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 677649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 678754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 679859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 680968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 681708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 682805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 683927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 684648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 685759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 686879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 687979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 688713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 689825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 690931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 691656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 692748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 693871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 694972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 695714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 696797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 697906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 698286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 698661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 699761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 700861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 701966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 702705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 703823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 704925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 705671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 706782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 707890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 708991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 709734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 710873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 711982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 712714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 713815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 714917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 715650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 716755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 717852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 718958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 719326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 719689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 720790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 721906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 722284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 722640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 723777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 724612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 725092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 725576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 726543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 727994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 728478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 728962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 729929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 730412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 730896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 731379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 731862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 732831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 733314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 733798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 734281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 734764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 735249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 735732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 736216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 736699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 737182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 737666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 738150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 738634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 739118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 739601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 740568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 741051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 741536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 742985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 743953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 744438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 744921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 745403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 745887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 746855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 747340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 747823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 748305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 748789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 749757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 750241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 750723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 751207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 751691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 752659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 753143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 753625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 754109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 754592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 755560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 756044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 756527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 757978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 758945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 759429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 759912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 760396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 760879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 761363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 761847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 762814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 763298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 763781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 764264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 764749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 765716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 766200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 766683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 767166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 767651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 768618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 769583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 770068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 770552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 771520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 772970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 773938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 774904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 775387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 775872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 776840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 777805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 778772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 779741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 780707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 781191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 781674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 782643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 783609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 784576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 785545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 786994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 787962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 788929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 789896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 790864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 791831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 792798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 793765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 794733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 795700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 796666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 797634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 798601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 799568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 800536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 801985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 802953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 803922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 804887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 805855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 806823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 807789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 808757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 809725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 810691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 811659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 812626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 813593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 814561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 815527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 816978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 817946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 818913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 819880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 820847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 821814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 822782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 823749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 824716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 825683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 826166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 826651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 827135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 827618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 828585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 829553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 830520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 831970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 832938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 833905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 834872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 835840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 836806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 837774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 838742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 839707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 840674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 841644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 842609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 843576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 844545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 845995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 846963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 847929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 848896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 849864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 850831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 851315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 851798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 852766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 853249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 853733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 854700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 855667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 856151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 856635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 857118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 857602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 858568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 859053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 859536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 860985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 99/216. Current DCI threshold: 49 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 861725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 862803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 863858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 864943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 865657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 866727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 867812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 868890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 869988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 870738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 871796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 872878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 873971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 874341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 874696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 875779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 876838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 877935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 878297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 878652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 879722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 880831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 881923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 882649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 883735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 884844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 885951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 886666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 887742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 888835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 889918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 890293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 890659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 891721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 892788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 893862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 894970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 895667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 896767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 897870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 898963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 899323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 899677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900390/1/0 +[NR_PHY] ============================================ +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 900747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 901792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 902872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 903944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 904687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 905770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 906846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 907947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 908307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 908657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 909745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 910808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 911889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 912969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 913696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 914784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 915856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 916945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 917667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 918763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 919840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 920919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 921981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 922710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 923773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 924849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 925919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 926645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 927763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 928837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 929921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 930996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 931727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 932824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 933890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 934972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 935698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 936773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 937858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 938942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 939680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 940771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 941851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 942959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 943658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 944731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 945831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 946918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 947651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 948725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 949820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 950911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 951991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 952733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 953821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 954924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 955990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 956733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 957824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 958907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 959986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 960349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 960710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 961789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 962891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 963703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 964661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 965607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 966550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 967967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 968911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 969858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 970800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 971746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 972691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 973636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 974582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 975997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 976942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 977886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 978833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 979775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 980721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 981194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 981667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 982609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 983556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 984970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 985917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 986861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 987805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 988751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 989696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 990640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 991582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 992530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 993945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 994892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 995834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 996780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 997726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 998669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 999614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1000556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1001977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1002449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1002919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1003866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1004809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1005752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1006700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1007642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1008587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1009533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1010950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1011894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1012839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1013784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1014727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1015675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1016617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1017562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1018977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1019923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1020870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1021812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1022758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1023702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1024647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1025592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1026537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1027953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1028898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1029845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1030787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1031259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1031733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1032676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1033148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1033622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1034567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1035983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1036456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1036929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1037872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1038345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1038819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1039291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1039761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1040707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1041180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1041651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1042123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1042594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1043541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1044958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1045429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1045902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1046845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1047792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1048265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1048735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1049680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1050626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1051096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1051568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1052989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1053931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1054403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1054876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1055350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1055819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1056765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1057239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1057711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1058654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1059128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1059600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1060071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1060543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1061962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1062904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1063378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1063850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1064795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1065740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1066212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1066686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1067157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1067629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1068575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1069990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1070937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1071879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1072825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1073771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1074713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1075660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1076603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1077548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1078965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1079909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1080855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1081800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1082744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1083686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1084161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1084634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1085577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1086996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1087938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1088884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1089830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1090773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1091718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1092660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1093607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1094081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1094553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1095970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1096913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1097856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1098330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1098804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1099767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1100856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1101968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1102688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1103781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1104907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1105633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1106735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1107844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1108957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1109323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1109679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1110780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1111874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1112969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1113727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1114803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1115882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1116984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1117705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1118786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1119889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1120989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1121713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1122801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1123885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1124964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1125707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1126076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1126806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1127893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1128994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1129728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1130832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1131934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1132666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1133750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1134839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1135566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1135925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1136657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1137728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1138841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1139949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1140717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1141804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1142916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1143650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1144751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1145850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1146924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1147655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1148750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1149825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1150935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1151693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1152769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1153865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1154962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1155710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1156829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1157907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1158638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1159767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1160864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1161958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1162672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1163756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1164853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1165926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1166655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1167710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1168802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1169883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1170990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1171719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1172824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1173908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1174995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1175730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1176825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1177944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1178666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1179748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1180842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1181950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1182696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1183774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1184867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1185960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1186688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1187787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1188871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1189963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1190681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1191776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1192901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1193996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1194719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1195823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1196932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1197657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1198760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1199849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1200964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1201328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1201688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1202954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1203827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1204311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1204796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1205279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1205761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1206245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1206728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1207213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1207697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1208180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1208663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1209147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1209630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1210115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1210599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1211081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1211565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1212048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1212532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1213016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1213500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1213983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1214467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1214950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1215434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1215918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1216401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1216885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1217368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1217852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1218820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1219303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1219787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1220270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1220754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1221720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1222689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1223172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1223656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1224622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1225590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1226074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1226557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1227524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1228008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1228492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1228976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1229459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1229941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1230909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1231394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1231877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1232360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1232843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1233811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1234296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1234779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1235261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1235745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1236713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1237198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1237681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1238163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1238647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1239615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1240099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1240581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1241065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1241549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1242517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1243967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1244450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1244934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1245902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1246385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1246869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1247352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1247836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1248803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1249287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1249770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1250254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1250737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1251705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1252189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1252672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1253156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1253639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1254607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1255090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1255574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1256058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1256541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1257992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1258476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1258959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1259441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1259926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1260894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1261378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1261861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1262343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1262828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1263796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1264762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1265730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1266698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1267181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1267663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1268630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1269599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1270082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1270565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1271532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1272983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1273467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1273950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1274919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1275885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1276369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1276852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1277820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1278787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1279271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1279754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1280722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1281689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1282172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1282656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1283623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1284107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1284591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1285074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1285558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1286524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1287976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1288942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1289911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1290394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1290878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1291843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1292811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1293780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1294745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1295713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1296681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1297647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1298615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1299583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1300549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1301517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1302967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1303934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1304903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1305869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1306836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1307804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1308771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1309738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1310705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1311672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1312640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1313607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1314574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1315541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1316993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1317476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1317960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1318926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1319894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1320861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1321828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1322796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1323763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1324730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1325698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1326664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1327632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1328600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1329565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1330532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1331985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1332951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1333919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1334885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1335853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1336821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1337787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1338754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1339718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1340985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1341685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1342746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1343825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1344875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1345952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1346661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1347706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1348755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1349831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1350921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1351990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1352707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1353774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1354858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1355912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1356969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1357673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1358735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1359787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1360883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1361932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1362670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1363746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1364811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1365862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1366929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1367997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1368696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1369766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1370839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1371916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1372968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1373675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1374752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1375829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1376933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1377645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1378705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1379756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1380811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1381862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1382910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1383978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1384333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1384683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1385034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1385390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1385741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1386809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1387896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1388251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1388605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1388955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1389308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1389657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1390725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1391078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1391429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1391785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1392849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1393916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1394273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1394665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1395717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1396787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1397155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1397512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1397868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1398953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1399304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1399655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1400006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1400364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1400754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1401790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1402852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1403203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1403560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1403919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1404989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1405695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1406053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1406414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1406766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1407848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1408911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1409265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1409631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1409986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1410351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1410710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1411092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1411438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1411791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1412848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1413914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1414280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1414644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1414995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1415349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1415700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1416760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1417122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1417482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1417835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1418909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1419990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1420342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1420692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1421761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1422823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1423183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1423540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1423891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1424945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1425301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1425655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1426013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1426360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1426724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1427804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1428883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1429968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1430699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1431757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1432803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1433857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1434947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1435999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1436348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1436690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1437751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1438809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1439892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1440985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1441962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1442447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1442930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1443899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1444382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1444864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1445832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1446317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1446800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1447282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1447766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1448250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1448734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1449219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1449702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1450184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1450668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1451151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1451636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1452120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1452603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1453086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1453570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1454053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1454538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1455988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1456471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1456955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1457439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1457923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1458890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1459373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1459857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1460341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1460824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1461308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1461791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1462275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1462759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1463243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1463726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1464210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1464693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1465177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1465660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1466143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1466628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1467112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1467595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1468079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1468562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1469045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1469530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1470013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1470497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1470980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1471947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1472431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1472915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1473882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1474849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1475817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1476783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1477751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1478234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1478719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1479684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1480651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1481136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1481621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1482586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1483553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1484038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1484522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1485972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1486940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1487906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1488873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1489841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1490808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1491775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1492743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1493710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1494677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1495644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1496612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1497579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1498545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1499997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1500964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1501932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1502899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1503864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1504833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1505317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1505801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1506766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1507734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1508702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1509668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1510636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1511604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1512570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1513538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1514988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1515955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1516924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1517890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1518857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1519826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1520792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1521759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1522726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1523694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1524661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1525628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1526595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1527562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1528530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1529981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1530947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1531915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1532882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1533849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1534817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1535784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1536751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1537719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1538686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1539168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1539653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1540621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1541586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1542554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1543523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1544972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1545940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1546907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1547874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1548842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1549808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1550775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1551743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1552710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1553677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1554645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1555612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1556579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1557547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1558997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1559964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1560932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1561899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1562866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1563834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1564801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1565767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1566735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1567703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1568668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1569636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1570604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1571570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1572538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1573988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1574955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1575440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1575925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -58 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1576890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1577857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1578826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1579791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1580910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1581637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1582735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1583843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1584204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1584571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1584937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1585296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1585659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1586765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1587132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1587492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1587862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1588945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1589308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1589679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1590034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1590392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1590746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1591857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1592958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1593318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1593688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1594846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1595932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1596294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1596657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1597736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1598837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1599216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1599576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1599941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1600293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1600675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1601778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1602871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1603258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1603632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1604734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1605818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1606905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1607999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1608367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1608727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1609804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1610905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1611279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1611653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1612019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1612405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1612764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1613851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1614247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1614619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1614975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1615345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1615734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1616803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1617175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1617542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1617906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1618261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1618627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1619740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1620097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1620472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1620827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1621180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1621548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1621918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1622651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1623018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1623385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1623746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1624860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1625944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1626303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1626706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1627073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1627432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1627786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1628885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1629248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1629619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1629986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1630372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1630745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1631829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1632180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1632535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1632892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1633248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1633604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1633974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1634708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1635824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1636923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1637648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1638744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1639842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1640927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1641295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1641671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1642772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1643120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1643506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1643876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1644979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1645350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1645722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1646078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1646444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1646811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1647945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1648306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1648689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1649049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1649412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1649779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1650863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1651218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1651576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1651934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1652297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1652661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1653774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1654134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1654489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1654845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1655217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1655581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1655952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1656672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1657042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1657402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1657769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1658142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1658517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1658885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1659974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1660348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1660717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1661068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1661432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1661795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1662902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1663259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1663614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1663997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1664379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1664734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1665865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1666239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1666596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1666953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1667313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1667673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1668782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1669891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1670989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1671713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1672792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1673882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1674958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1675696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1676804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1677882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1678987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1679725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1680810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1681918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1682292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1682657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1683999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1684967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1685451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1685934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1686901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1687386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1687869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1688836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1689803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1690286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1690771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1691738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1692705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1693188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1693673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1694638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1695122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1695606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1696090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1696575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1697058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1697540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1698992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1699959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1700442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1700926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1701894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1702378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1702860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1703344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1703827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1704795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1705279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1705762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1706729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1707697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1708664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1709631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1710599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1711566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1712533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1713984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1714951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1715918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1716886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1717853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1718819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1719787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1720755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1721720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1722688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1723656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1724622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1725590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1726558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1727524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1728977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1729942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1730909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1731878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1732844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1733811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1734780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1735746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1736713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1737681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1738648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1739615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1740582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1741549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1742516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1743968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1744935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1745901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1746869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1747837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1748803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1749771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1750738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1751705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1752673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1753640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1754607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1755575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1756541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1757992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1758960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1759926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1760894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1761861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1762828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1763796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1764762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1765729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1766698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1767664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1768631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1769599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1770566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1771533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1772984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1773951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1774918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1775402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1775886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1776853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1777820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1778788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1779755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1780721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1781690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1782657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1783622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1784590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1785559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1786524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1787977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1788942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1789910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1790879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1791844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1792811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1793780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1794746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1795713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1796198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1796682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1797648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1798615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1799099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1799583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1800550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1801517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1802968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1803451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1803935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1804903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1805386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1805870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1806353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1806837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1807803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1808288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1808772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1809255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1809739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1810705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1811673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1812157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1812640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1813607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1814575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1815059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1815542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1816992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1817960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1818443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1818926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1819894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1820862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1821342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1821826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 99/216. Current DCI threshold: 49 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1822946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1823655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1824748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1825843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1826923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1827645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1828734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1829843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1830925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1831674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1832040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1832409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1832779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1833872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1834240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1834608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1834967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1835333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1835700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1836788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1837859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1838231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1838604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1838963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1839328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1839701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1840770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1841141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1841502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1841865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1842959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1843320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1843686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1844050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1844412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1844772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1845868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1846984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1847346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1847719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1848820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1849898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1850256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1850649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1850999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1851363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1851728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1852815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1853182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1853538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1853897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1854999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1855376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1855747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1856107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1856468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1856830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1857894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1858991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1859357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1859713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1860809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1861897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1862261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1862632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1863757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1864849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1865220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1865578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1865951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1866686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1867773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1868839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1869916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1870285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1870654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1871744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1872860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1873221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1873570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1873938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1874304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1874661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1875737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1876850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1877954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1878700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1879765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1880844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1881926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1882999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1883746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1884845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1885928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1886663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1887769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1888855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1889961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1890693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1891763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1892855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1893949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1894666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1895749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1896834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1897931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1898656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1899749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1900859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1901942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1902656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1903763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1904827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1905896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1906988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1907711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1908822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1909913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1910656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1911732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1912470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 1912844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1913939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1914671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1915807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1916897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1917991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1918714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1919820/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1920912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1921631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1922747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1923866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1924967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 52 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1925979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1926946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1927913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1928881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1929848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1930814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1931782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1932749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1933716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1934684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1935651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1936618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1937586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1938553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1939520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1940971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1941937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1942905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1943873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1944839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1945807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1946774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1947741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1948709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1949675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1950642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1951610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1952577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1953544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1954995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1955962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1956930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1957897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1958864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1959831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1960799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1961766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1962733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1963701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1964668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1965634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1966602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1967570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1968535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1969988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1970954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1971922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1972890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1973855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1974822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1975792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1976757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1977724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1978693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1979659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1980626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1981595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1982561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1983528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1984979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1985946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1986914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1987881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1988848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1989815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1990783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1991750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1992716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1993684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1994652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1995618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1996586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1997553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1998520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 1999972/1/0 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2000937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2001905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2002873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2003839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2004807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2005775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2006741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2007709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2008676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2009643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2010611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2011577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2012544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2013997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2014963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2015930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2016897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2017865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2018832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2019799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2020766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2021733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2022701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2023668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2024635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2025603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2026570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2027536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2028988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2029955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2030922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2031890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2032857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2033824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2034792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2035757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2036725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2037694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2038659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2039626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2040595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2041561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2042528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2043979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2044946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2045914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2046881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2047848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2048816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2049783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2050750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2051718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2052685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2053652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2054618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2055587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2056554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2057520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2058972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2059938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2060906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2061874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2062839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2063806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2064851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2065912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2066998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2067700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2068770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2069866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2070934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2071994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2072712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2073834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2074927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2075658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2076727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2077790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2078857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2079938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2080652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2081738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2082813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2083901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2084662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2085742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2086837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2087186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2087901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2088981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2089704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2090796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2091864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2092947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2093659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2094737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2095816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2096897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2097987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2098710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2099788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2100872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2101941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2102659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2103718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2104797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2105863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2106958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2107697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2108761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2109849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2110932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2111661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2112722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2113805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2114880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2115951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2116673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2117754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2118823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2119906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2120979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2121698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122065/1/0 +[NR_PHY] ============================================ +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2122775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2123886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2124977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2125692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2126771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2127862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2128949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2129688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2130773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2131860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2132940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2133661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2134735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2135788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2136854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2137933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2138653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2139732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2140825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2141897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2142986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2143703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2144792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2145862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2146944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2147650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2148732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2149819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2150926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2151652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2152727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2153828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2154899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2155957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2156682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2157759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2158833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2159914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2160610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2161717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2162809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2163891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2164989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2165717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2166584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2167549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2168516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2169967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2170934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2171901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2172868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2173836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2174803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2175770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2176738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2177705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2178671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2179640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2180607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2181572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2182540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2183992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2184959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2185927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2186892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2187860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2188829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2189794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2190761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2191730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2192696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2193663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2194632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2195598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2196565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2197533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2198983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2199951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2200918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2201885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2202853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2203820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2204787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2205753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2206722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2207689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2208655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2209623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2210590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2211557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2212525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2213974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2214942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2215910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2216876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2217844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2218812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2219778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2220746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2221714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2222680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2223648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2224614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2225582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2226550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2227516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2228967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2229935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2230902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2231869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2232836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2233803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2234770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2235738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2236705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2237672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2238640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2239607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2240574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2241542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2242992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2243959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2244927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2245894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2246861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2247829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2248795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2249763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2250731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2251696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2252663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2253632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2254115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2254598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2255082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2255565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2256050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2256534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2257016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2257497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2257974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2258453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2258931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2259410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2259886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2260363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2260841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2261318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2261798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2262275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2262752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2263229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2263706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2264185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2264664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2265141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2265617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2266095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2266573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2267052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2267530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -52 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2268961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2269440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2269918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2270394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2270871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2271350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2271828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2272306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2272783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2273259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2273738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2274216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2274695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2275172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2275647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2276126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2276603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2277083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2277560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2278038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2278514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2278992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2279470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2279948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2280427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2280903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2281380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2281857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2282335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2282815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2283293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2283769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2284245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2284723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2285202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2285682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2286159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2286634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2287111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2287589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2288069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2288548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2289978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2290456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2290935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2291413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2291888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2292366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2292844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2293323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2293801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2294277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2294755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2295232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2295711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2296188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2296667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2297144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2297621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2298099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2298576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2299055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2299532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2300010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2300487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2300964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2301443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2301921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2302398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2302875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2303354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2303838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2304686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2305038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2305380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2305776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2306141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2306492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2306847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2307201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2307551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2307910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2308289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2308656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2309025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2309395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2309759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2310123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2310474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2310836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2311209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2311568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2311935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2312305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2312668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2313771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2314129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2314480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2314843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2315940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2316311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2316670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2317030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2317389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2317751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2318121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2318485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2318859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2319220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2319582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2319941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2320306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2320698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2321062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2321421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2321779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2322131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2322486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2322858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2323261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2323609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2323971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2324334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2324700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2325073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2325434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2325800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2326172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2326532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2326884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2327241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2327607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2327963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2328327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2328688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2329050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2329413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2329774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2330137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2330499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2330875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2331257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2331616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2331980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2332352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2332705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2333066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2333434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2333797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2334164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2334524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2334915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2335273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2335623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2335993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2336351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2336725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2337098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2337454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2337806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2338158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2338518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2338875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2339241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2339612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2339968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2340692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2341042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2341407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2341778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2342883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2343243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2343599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2343986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2344355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2344720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2345822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2346181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2346552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2346920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2347281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2347649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2348741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2349097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2349462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2349832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2350927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2351291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2351652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2352723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2353090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2353451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2353808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2354180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2354542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2354898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2355263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2355636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2356007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2356375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2356750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2357107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2357474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2357835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2358928/1/0 +[NR_PHY] ============================================ +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2359286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2359659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2360752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2361117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2361478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2361837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2362208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2362569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2362937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2363699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2364062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2364428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2364783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2365147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2365511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2365886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2366968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2367334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2367696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2368049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2368412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2368774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2369843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2370203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2370574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2370941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2371325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2371686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2372051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2372408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2372768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2373135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2373507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2373865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2374965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2375319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2375694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2376054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2376414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2376790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2377884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2378245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2378613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2378987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2379351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2379718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2380081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2380443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2380806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2381167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2381518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2381873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2382979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2383336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2383697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2384807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2385901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2386258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2386631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2386997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2387364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2387722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2388088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2388445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2388806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2389165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2389536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2389912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2390283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2390650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2391020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2391378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2391740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2392831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2393189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2393555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2393915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2394280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2394648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2395725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2396093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2396445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2396802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2397162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2397535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2397891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2398968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2399324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2399681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2400046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2400410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2400761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2401844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2402199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2402561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2402928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2403277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2403623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2403974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2404341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2404707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2405075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2405432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2405800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2406905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 51 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2407799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2408283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2408760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2409239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2409715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2410192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2410671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2411148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2411625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2412103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2412580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2413057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2413535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2414969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2415445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2415922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2416399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2416876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2417357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2417833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2418309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2418786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2419262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2419744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2420221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2420697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2421174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2421650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2422128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2422609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2423085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2423561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2424994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2425473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2425949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2426426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2426903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2427380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2427860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2428336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2428814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2429292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2429768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2430245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2430724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2431201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2431679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2432156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2432632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2433110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2433589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2434066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2434544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2435977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2436453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 0. Mismatched bits: 104/216. Current DCI threshold: 52 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2436930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2437408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2437883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2438364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2438841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2439317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2439795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2440272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2440749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2441229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2441705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2442181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2442659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2443136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2443615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2444093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2444569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2445046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2445524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2446002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2446481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2446957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2447434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2447912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2448389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2448867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2449345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2449822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2450299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2450776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2451253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2451732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2452211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2452687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2453640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2454117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2454599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2455075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2455551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2456985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2457462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -57 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2457939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2458416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2458892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2459369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2459850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2460326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2460803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2461280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2461756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2462235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2462714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2463190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2463668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2464145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2464622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2465101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2465577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2466055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2466534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2467010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2467487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2467965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2468442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2468920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2469398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2469874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2470352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2470831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2471307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2471785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2472262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2472738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2473219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2473695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2474171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2474649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2475125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2475606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2476083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2476559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2477991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2478471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2478947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2479423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2479900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2480377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2480857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2481335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2481811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2482288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2482765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2483243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2483723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2484199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2484676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2485154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2485630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2486108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2486587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2487064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2487541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2488018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2488494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2488973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2489452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2489929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2490406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2490882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2491358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2491840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2492316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2492793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2493270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2493745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2494226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2494704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2495180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2495658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2496134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2496611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2497091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2497567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2498998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2499477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2499955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2500431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -51 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2500909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2501387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2501864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2502343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2502819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2503296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2503775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2504252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2504729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2505207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2505684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2506161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2506639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2507116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2507594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2508073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2508549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2509026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2509503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2509980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2510461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2510937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2511413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2511890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2512366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2512848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2513325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2513801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2514278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2514754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2515232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2515713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2516189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2516665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2517142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2517618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2518098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2518577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2519053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2519530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2520007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2520484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2520964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2521440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2521918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2522396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2522872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2523349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2523828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2524305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2524783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2525260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2525736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2526214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2526693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2527170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2527648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2528124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2528600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2529081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2529557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2530034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2530512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2530987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2531468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2531945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2532421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2532899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2533376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2533853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2534333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2534809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2535285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2535763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2536240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2536719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2537197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2537673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2538150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2538628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2539106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2539585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -56 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2540061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2540538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2541016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2541493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2541971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2542449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2542926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2543403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2543881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2544364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2544849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2544870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2545163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 99/216. Current DCI threshold: 49 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2545524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2545891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2546254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2546618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2546967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2547323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2547688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2548045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2548410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2548762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2549122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2549485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2549850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2550198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2550556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2550922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2551293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2551651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2552771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2553127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2553495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2553872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2554243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2554616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2554973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2555333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2555696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2556063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2556430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2556804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2557163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2557535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2557896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2558975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2559340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2559698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2560051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2560397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2560762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2561128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2561486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2561848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2562218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2562585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2562950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2563314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2563679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2564046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2564407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2564760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2565135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2565517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2565895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2566267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2566619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2566976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2567347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2567712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2568072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2568429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2568784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2569151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2569519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2569888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2570253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2570612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2570975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2571319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2571675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2572037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2572393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2572765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2573155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2573504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2573862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2574230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2574592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2574951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2575306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2575680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2576039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2576409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2576789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2577165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2577532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2577902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2578260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2578626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2578981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2579350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2579710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2580075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2580441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2580800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2581164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2581532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2581897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2582260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2582628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2582994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2583342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2583714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2584081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2584435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2584803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2585176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2585534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2585893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2586261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2586619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2586985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2587352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2587750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2588118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2588488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2588858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2589234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2589601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2589967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2590334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2590692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2591061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2591422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2591786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2592151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2592529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2592890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2593247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2593603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2593965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2594335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2594696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2595054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2595413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2595773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2596133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2596508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2596868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2597227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2597590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2597956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2598323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2598687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2599048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2599416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2599780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2600888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2601241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2601601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2601960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2602320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2602685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2603051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2603397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2603758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2604119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2604479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2604844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2605199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2605559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2605925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2606295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2606651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2607010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2607371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2607731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2608096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2608466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2608831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2609223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2609583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2609933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2610306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2610659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2611018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2611384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2611751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2612124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2612486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2612834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2613200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2613568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2613942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2614300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2614652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2615006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2615368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2615730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2616089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2616459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2616818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2617183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2617536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2617930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2618650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2619005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2619406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2619770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2620123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2620489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2620852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2621938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2622298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2622663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2623760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2624836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2625201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2625566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2625926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2626294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2626661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2627005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2627365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2627715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2628071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2628471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2628821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2629905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2630264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2630625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2630993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2631349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2631708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2632069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2632439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2632807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2633169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2633527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2633895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2634991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2635370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2635731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2636807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2637171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2637515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2637886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2638254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2638622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2639011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2639356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2639704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2640805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2641163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2641521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -55 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2641885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2642962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2643324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2643683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2644048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2644415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2644794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2645890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2646249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2646608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2646976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2647911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2648359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2648841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2649322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2649807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2650291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2650774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2651257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2651741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2652224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2652709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2653193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2653675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2654159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2654642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2655126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2655611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2656095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2656577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2657061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2657544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2658028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2658512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2658995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2659479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2659963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2660446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2660930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2661414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2661897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2662381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2662864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2663348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2663831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2664315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2664799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2665283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2665766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2666250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2666733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2667216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2667701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2668184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2668668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2669151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2669634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2670118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2670603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2671086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2671570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2672053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2672535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2673020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2673503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2673988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2674472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2674955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2675437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2675922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2676405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2676890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2677373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2677855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2678339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2678823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2679307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2679792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2680275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2680757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2681241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2681724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2682209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2682693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2683176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2683659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2684143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2684626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2685111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2685595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2686077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2686561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2687044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2687528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2688012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2688496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2688979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2689463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2689946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2690430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2690914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2691881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2692364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2692848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2693332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2693816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2694299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2694783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2695266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2695750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2696233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2696716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2697201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2697685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2698168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2698652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2699135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2699618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2700103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2700586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2701070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2701553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2702036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2702520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2703972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2704455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2704937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2705422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2705905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2706873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2707356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2707839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2708324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2708807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2709775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2710257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2710741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2711709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2712194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2712677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2713159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2713643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2714126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2714611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2715577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2716061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2716545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2717997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2718479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2718963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2719446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2719930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2720414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2720898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2721381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2721865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2722348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2722832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2723316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2723799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2724283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2724766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2725733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2726217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2726701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2727185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2727668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2728635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2729118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2729603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2730086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2730570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2731537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2732988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2733472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2733955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2734922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2735890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2736857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2737824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2738792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2739758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2740726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2741694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2742659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2743626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2744595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2745561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2746528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2747979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2748946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2749915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2750881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2751848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2752816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2753783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2754750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2755718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2756685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2757652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2758619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2759587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2760554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2761520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2762972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2763938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 0. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2764907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2765874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2766839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2767807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2768776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2769741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2770709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2771677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2772643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2773611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2774579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2775545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2776997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2777963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2778930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2779899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2780865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2781832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2782800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2783767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2784734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2785700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 99/216. Current DCI threshold: 49 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2786877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2787245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2787605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2787967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2788327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2788686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2789046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2789406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2789762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2790126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2790486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2790883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2791242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2791609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2791988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2792349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2792701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2793076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2793471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2793835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2794201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2794562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2794922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2795285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2795664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2796028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2796386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2796755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2797124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2797484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2797852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2798225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2798584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2798941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2799306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2799669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2800026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2800391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2800757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2801146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2801496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2801862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2802224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2802579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2802940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2803306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2803662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2804786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2805154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2805514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2805873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2806237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2806593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2806951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2807316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2807682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2808045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2808405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2808772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2809147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2809512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2809874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2810232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2810586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2810957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2811311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2811690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2812040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2812398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2812762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2813119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2813466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2813825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2814188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2814555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2814916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2815274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2815647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2816018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2816371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2816724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2817098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2817459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2817827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2818188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2818555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2818935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2819306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2819666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2820026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2820388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2820740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2821098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2821464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2821812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2822173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2822542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2822903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2823272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2823639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2823995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2824355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2824706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2825064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2825417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2825797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2826167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2826528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2826932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2827311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2827684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2828049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2828412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2828777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2829150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2829512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2829875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2830248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2830618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2830980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2831347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2831717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2832083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2832454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2832822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2833186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2833545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2833902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2834260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2834618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2834965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2835327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2835691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2836054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2836409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2836759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2837108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2837471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2837834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2838203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2838559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2838924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2839287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2839645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2840001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2840365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2840714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2841068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2841431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2841798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2842145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2842506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2842858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2843228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2843585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2843946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2844306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2844674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2845031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2845387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2845757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2846112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2846485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2846852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2847218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2847588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2847946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2848309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2848663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2849024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2849392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2849758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2850111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2850474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2850833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2851187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2851550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2851911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2852277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2852637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2853005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2853384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2853753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2854118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2854476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2854830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2855181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2855574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2855928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2856280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2856635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2856996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2857358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2857717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2858072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2858439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2858806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2859169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2859539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2859893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2860264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2860619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2860976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2861333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2861696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2862056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2862421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2862789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2863136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2863486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2863849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2864207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2864566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2864938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2865305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2865667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2866068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2866424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2866776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2867133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2867498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2867859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2868226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2868593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2868959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2869321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2869684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2870040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2870407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2870772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2871130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2871486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2871855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2872223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2872568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2872928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2873299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2873664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2874017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2874374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2874728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2875090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2875449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2875808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2876167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2876557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2876918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2877295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2877670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2878032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2878396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2878755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2879112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2879473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2879844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2880205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2880565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2880927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2881282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2881654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2882012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2882362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2882722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2883086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2883450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2883820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2884178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2884527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2884905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2885265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2885628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2885988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2886332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2886695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2887080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2887435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2887808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2888181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2888536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2888900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2889993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2890471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2890950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2891429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2891906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2892381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2892859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2893337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2893817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2894295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2894770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2895246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2895725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2896204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2896683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2897160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2897635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2898113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2898591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2899071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2899549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2900024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2900502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2900979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2901458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2901936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2902415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2902891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2903368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2903846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2904323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2904803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2905280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2905757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2906234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -50 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2906711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2907190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2907669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2908146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2908622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2909100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2909578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2910057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2910535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2911011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2911488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2911966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2912445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2912923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2913399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2913876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2914355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2914833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2915311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2915788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2916264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2916743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2917221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2917700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2918177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2918652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2919131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2919608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2920088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2920565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2921043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2921519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2921997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2922475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2922953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2923432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2923908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2924385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2924862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2925340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2925820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2926298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2926774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2927250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2927728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2928207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2928687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2929164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2929639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] Harq round stats for Downlink: 2930116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2930594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2931074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2931553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2932028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2932504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2932983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2933461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2933940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2934418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2934893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2935371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2935849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2936328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2936806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2937282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2937760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2938237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2938716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2939193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2939672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2940149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2940626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2941104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2941581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2942060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2942537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2943015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2943492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2943969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2944448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2944926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2945403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2945880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2946358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2946836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2947315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2947792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2948268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2948745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2949224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2949703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2950181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2950656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2951133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2951612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2952091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2952569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2953046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2953521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2954000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2954478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2954958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2955435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2955910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2956388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2956865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2957345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2957823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2958301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2958777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2959254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2959732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2960210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2960690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2961166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2961643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2962120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2962597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2963077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2963556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2964032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2964508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2964986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2965464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2965944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2966422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2966897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2967374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2967852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2968331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2968810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2969286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2969762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2970241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2970719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2971197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2971675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2972151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2972629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2973107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2973586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2974063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2974539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2975018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2975495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2975974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2976451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2976929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2977406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2977884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2978362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2978839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2979318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2979794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2980272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2980749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2981227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2981706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2982184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2982660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2983137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2983615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2984094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2984573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2985050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2985525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2986003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2986481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2986961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2987439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2987914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2988390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2988869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2989348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2989827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2990304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2990779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2991257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2991735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2992215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2992693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2993168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2993646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2994123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2994602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2995080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2995559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2996035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2996512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2996990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2997467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2997947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2998424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2998901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2999378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 2999855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3000334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3000813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3001290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3001766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3002244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3002722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3003201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3003679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3004155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3004632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3005110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3005589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3006067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3006543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3007020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3007499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3007977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3008455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3008932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3009408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3009887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3010365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3010844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3011321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3011796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -47 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3012275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3012752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3013232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3013709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3014187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3014663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3015141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3015619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3016097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3016576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3017052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3017529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3018006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3018484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3018964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3019442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -53 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3019918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3020394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3020872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3021351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -49 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3021831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY_DCI] DCI false positive. Dropping DCI index 1. Mismatched bits: 101/216. Current DCI threshold: 50 +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3022308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3022791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -46 dBm +[NR_PHY] RSRP = -45 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3023275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -48 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3023758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -44 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3024242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3024726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3025999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3026997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3027995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3028994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3029999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3030997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3031995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3032994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3033999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3034997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3035995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3036994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3037999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3038997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3039995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3040994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3041999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3042997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3043995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3044994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3045999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3046997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3047995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3048994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3049999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3050997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3051995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3052994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053615/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053621/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053634/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053647/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053653/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053666/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053679/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053685/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053698/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053711/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053717/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053730/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053743/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053749/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053762/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053775/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053781/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053794/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053807/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053813/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053826/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053839/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053845/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053858/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053871/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053877/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053890/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053903/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053909/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053922/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053935/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053941/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053954/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053967/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053973/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053986/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3053999/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054005/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054018/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054031/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054037/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054050/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054063/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054069/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054082/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054095/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054101/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054114/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054127/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054133/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054146/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054159/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054165/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054178/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054191/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054197/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054210/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054223/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054229/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054242/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054255/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054261/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054274/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054287/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054293/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054306/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054319/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054325/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054338/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054351/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054357/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054370/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054383/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054389/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054402/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054415/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054421/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054434/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054447/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054453/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054466/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054479/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054485/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054498/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054511/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054517/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054530/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054543/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054549/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054562/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054575/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054581/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054594/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054607/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054613/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054626/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054639/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054645/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054658/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054671/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054677/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054690/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054703/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054709/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054722/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054735/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054741/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054754/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054767/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054773/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054786/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054799/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054805/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054818/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054831/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054837/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054850/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054863/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054869/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054882/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054895/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054901/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054914/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054927/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054933/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054946/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054959/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054965/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054978/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054991/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3054997/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055010/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055023/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055029/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055042/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055055/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055061/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055074/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055087/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055093/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055106/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055119/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055125/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055138/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055151/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055157/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055170/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055183/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055189/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055202/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055215/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055221/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055234/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055247/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055253/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055266/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055279/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055285/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055298/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055311/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055317/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055330/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055343/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055349/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055362/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055375/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055381/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055394/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055407/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055413/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055426/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055439/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055445/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055458/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055471/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055477/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055490/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055503/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055509/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055522/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055535/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055541/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055554/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055567/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055573/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055586/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055599/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055605/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055618/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055631/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055637/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055650/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055663/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055669/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055682/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055695/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055701/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055714/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055727/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055733/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055746/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055759/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055765/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055778/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055791/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055797/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055810/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055823/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055829/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055842/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055855/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055861/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055874/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055887/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055893/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055906/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055919/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055925/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055938/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055951/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055957/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055970/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055983/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055989/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3055995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056002/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056015/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056021/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056034/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056047/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056053/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056066/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056079/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056085/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056098/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056111/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056117/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056130/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056143/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056149/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056162/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056175/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056181/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056194/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056207/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056213/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056226/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056239/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056245/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056258/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056271/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056277/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056290/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056303/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056309/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056322/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056335/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056341/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056354/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056367/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056373/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056386/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056399/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056405/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056418/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056431/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056437/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056450/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056463/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056469/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056482/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056495/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056501/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056514/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056527/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056533/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056546/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056559/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056565/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056578/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056591/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056597/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056610/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056623/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056629/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056642/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056655/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056661/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056674/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056687/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056693/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056706/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056719/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056725/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056738/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056751/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056757/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056770/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056783/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056789/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056802/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056815/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056821/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056834/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056847/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056853/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056866/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056879/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056885/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056898/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056911/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056917/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056930/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056943/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056949/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056962/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056975/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056981/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3056994/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057007/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057013/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057026/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057039/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057045/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057058/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057071/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057077/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057090/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057103/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057109/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057122/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057135/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057141/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057154/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057167/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057173/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057186/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057199/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057205/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057218/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057231/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057237/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057250/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057263/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057269/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057282/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057295/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057301/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057314/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057327/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057333/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057346/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057359/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057365/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057378/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057391/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057397/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057410/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057423/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057429/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057442/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057455/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057461/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057474/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057487/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057493/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057506/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057519/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057525/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057538/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057551/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057557/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057570/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057583/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057589/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057602/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3057993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3058998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3059996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3060995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3061993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -54 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3062998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3063996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064336/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064342/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064348/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064355/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064361/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064368/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064374/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064380/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064387/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064393/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064400/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064406/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064412/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064419/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064425/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064432/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064438/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064444/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064451/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064457/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064464/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064470/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064476/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064483/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064489/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064496/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064502/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064508/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064515/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064521/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064528/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064534/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064540/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064547/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064553/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064560/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064566/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064572/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064579/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064585/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064592/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064598/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064604/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064611/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064617/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064624/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064630/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064636/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064643/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064649/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064656/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064662/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064668/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064675/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064681/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064688/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064694/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064700/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064707/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064713/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064720/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064726/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064732/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064739/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064745/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064752/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064758/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064764/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064771/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064777/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064784/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064790/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064796/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064803/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064809/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064816/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064822/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064828/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064835/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064841/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064848/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064854/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064860/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064867/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064873/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064880/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064886/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064892/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064899/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064905/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064912/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064918/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064924/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064931/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064937/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064944/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064950/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064956/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064963/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064969/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064976/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064982/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064988/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3064995/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065001/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065008/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065014/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065020/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065027/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065033/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065040/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065046/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065052/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065059/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065065/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065072/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065078/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065084/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065091/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065097/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065104/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065110/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065116/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065123/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065129/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065136/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065142/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065148/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065155/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065161/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065168/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065174/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065180/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065187/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065193/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065200/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065206/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065212/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065219/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065225/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065232/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065238/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065244/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065251/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065257/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065264/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065270/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065276/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065283/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065289/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065296/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065302/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065308/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065315/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065321/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065328/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065334/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065340/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065347/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065353/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065360/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065366/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065372/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065379/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065385/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065392/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065398/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065404/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065411/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065417/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065424/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065430/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065436/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065443/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065449/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065456/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065462/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065468/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065475/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065481/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065488/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065494/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065500/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065507/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065513/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065520/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065526/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065532/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065539/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065545/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065552/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065558/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065564/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065571/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065577/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065584/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065590/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065596/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065603/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065609/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065616/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065622/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065628/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065635/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065641/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065648/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065654/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065660/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065667/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065673/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065680/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065686/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065692/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065699/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065705/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065712/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065718/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065724/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065731/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065737/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065744/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065750/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065756/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065763/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065769/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065776/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065782/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065788/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065795/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065801/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065808/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065814/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065820/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065827/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065833/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065840/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065846/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065852/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065859/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065865/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065872/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065878/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065884/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065891/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065897/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065904/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065910/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065916/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065923/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065929/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065936/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065942/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065948/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065955/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065961/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065968/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065974/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065980/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065987/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3065993/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066000/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066006/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066012/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066019/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066025/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066032/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066038/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066044/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066051/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066057/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066064/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066070/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066076/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066083/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066089/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066096/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066102/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066108/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066115/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066121/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066128/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066134/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066140/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066147/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066153/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066160/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066166/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066172/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066179/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066185/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066192/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066198/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066204/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066211/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066217/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066224/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066230/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066236/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066243/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066249/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066256/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066262/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066268/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066275/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066281/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066288/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066294/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066300/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066307/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066313/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066320/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066326/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066332/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066339/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066345/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066352/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066358/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066364/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066371/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066377/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066384/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066390/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066396/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066403/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066409/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066416/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066422/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066428/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066435/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066441/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066448/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066454/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066460/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066467/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066473/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066480/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066486/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066492/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066499/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066505/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066512/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066518/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066524/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066531/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066537/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066544/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066550/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066556/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066563/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066569/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066576/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066582/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066588/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066595/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066601/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066608/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066614/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066620/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066627/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066633/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066640/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066646/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066652/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066659/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066665/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066672/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066678/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066684/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066691/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066697/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066704/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066710/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066716/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066723/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066729/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066736/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066742/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066748/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066755/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066761/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066768/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066774/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066780/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066787/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066793/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066800/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066806/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066812/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066819/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066825/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066832/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066838/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066844/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066851/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066857/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066864/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066870/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066876/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066883/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066889/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066896/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066902/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066908/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066915/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066921/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066928/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066934/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066940/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066947/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066953/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066960/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066966/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066972/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066979/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066985/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066992/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3066998/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067004/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067011/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067017/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067024/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067030/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067036/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067043/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067049/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067056/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067062/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067068/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067075/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067081/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067088/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067094/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067100/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067107/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067113/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067120/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067126/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067132/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067139/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067145/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067152/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067158/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067164/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067171/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067177/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067184/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067190/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067196/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067203/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067209/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067216/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067222/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067228/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067235/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067241/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067248/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067254/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067260/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067267/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067273/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067280/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067286/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067292/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067299/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067305/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067312/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067318/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067324/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067331/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067337/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067344/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067350/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067356/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067363/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067369/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067376/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067382/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067388/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067395/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067401/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067408/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067414/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067420/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067427/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067433/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067440/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067446/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067452/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067459/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067465/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067472/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067478/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067484/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067491/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067497/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067504/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067510/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067516/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067523/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067529/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067536/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067542/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067548/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067555/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067561/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067568/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067574/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067580/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067587/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067593/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067600/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067606/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067612/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067619/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067625/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067632/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067638/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067644/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067651/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067657/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067664/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067670/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067676/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067683/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067689/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067696/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067702/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067708/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067715/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067721/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067728/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067734/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067740/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067747/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067753/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067760/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067766/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067772/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067779/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067785/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067792/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067798/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067804/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067811/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067817/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067824/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067830/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067836/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067843/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067849/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067856/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067862/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067868/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067875/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067881/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067888/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067894/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067900/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067907/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067913/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067920/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067926/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067932/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067939/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067945/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067952/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067958/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067964/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067971/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067977/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067984/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067990/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3067996/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068003/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068009/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068016/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068022/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068028/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068035/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068041/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068048/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068054/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068060/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068067/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068073/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068080/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068086/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068092/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068099/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068105/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068112/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068118/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068124/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068131/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068137/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068144/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068150/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068156/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068163/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068169/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068176/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068182/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068188/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068195/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068201/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068208/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068214/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068220/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068227/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068233/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068240/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068246/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068252/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068259/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068265/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068272/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068278/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068284/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068291/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -92 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068297/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068304/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068310/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068316/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068323/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] ============================================ +[NR_PHY] Harq round stats for Downlink: 3068329/1/0 +[NR_PHY] ============================================ +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +[NR_PHY] RSRP = -41 dBm +Press ^C again to trigger immediate shutdown +[NAS] [UE 0] Received NAS_DEREGISTRATION_REQ + \ No newline at end of file diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/agent.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/agent.log new file mode 100644 index 000000000..68c0e9c57 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/agent.log @@ -0,0 +1,7266 @@ +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + ytes +UE c22c: LCID 4: TX 4527744302 RX 103949 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2279 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 660823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4465446369 RX 1501243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCI + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 2683 28.0 UE3 + 0 0.0 UE1 + 3219 30.0 UE3 + 0 0.0 UE1 + 3137 30.0 UE3 + 0 0.0 UE1 + 5159 41.0 UE3 + 0 0.0 UE1 + 2951 32.0 UE3 + 0 0.0 UE1 + 2646 29.0 UE3 + 0 0.0 UE1 + 3038 29.0 UE3 + 0 0.0 UE1 + 3011 30.0 UE3 + 0 0.0 UE1 + 3380 32.0 UE3 + 0 0.0 UE1 + 3124 31.0 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 50, + "value_2_old": 50 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=50, value_2_old=50 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925517485626 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 8 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1081 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925524519051 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 9 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1691 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + bytes +UE c22c: LCID 4: TX 5024050047 RX 109709 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 44 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 16 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 690285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4621012926 RX 1592275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 152 1.4 UE3 + 0 0.0 UE1 + 124 1.2 UE3 + 0 0.0 UE1 + 65 0.71 UE3 + 0 0.0 UE1 + 940 8.3 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 162 1.5 UE3 + 0 0.0 UE1 + 77 0.75 UE3 + 0 0.0 UE1 + 110 1.1 UE3 + 0 0.0 UE1 + 88 0.85 UE3 + 0 0.0 UE1 + 87 0.8 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925557440534 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 10 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1491 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925564478184 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 11 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2537 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 442 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 710344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4772213062 RX 1678435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4749380430 RX 115288 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 761205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 7094 68.0 UE1 + 0 0.0 UE3 + 2366 45.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 69 0.61 UE3 + 0 0.0 UE1 + 510 4.8 UE3 + 0 0.0 UE1 + 4 0.038 UE3 + 0 0.0 UE1 + 244 2.4 UE3 + 0 0.0 UE1 + 359 3.9 UE3 + 0 0.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925596898741 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 12 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2504 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925603929243 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 13 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 865 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + nc PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 796501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5843599354 RX 1679072 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5819606709 RX 123763 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 167 SDU rejected, SDU buffer full +[NR_MAC] Frame.Sl + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6017646535 RX 130690 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 846249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6043805840 RX 1901038 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6017958409 RX 130743 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 477 4.9 UE1 + 0 0.0 UE3 + 63 0.59 UE1 + 0 0.0 UE3 + 69 0.69 UE1 + 0 0.0 UE3 + 221 2.1 UE1 + 0 0.0 UE3 + 29 0.26 UE1 + 0 0.0 UE3 + 98 1.0 UE1 + 0 0.0 UE3 + 53 0.51 UE1 + 0 0.0 UE3 + 349 3.5 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 50, + "value_2_old": 50 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=50, value_2_old=50 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925693223881 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 14 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2543 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925700264045 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 15 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1188 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4093 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 892459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6290415061 RX 2003089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6262899693 RX 138864 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 841324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsc + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 7057 68.0 UE3 + 0 0.0 UE1 + 7097 68.0 UE3 + 0 0.0 UE1 + 6819 67.0 UE3 + 0 0.0 UE1 + 6967 68.0 UE3 + 0 0.0 UE1 + 6987 68.0 UE3 + 0 0.0 UE1 + 7419 68.0 UE3 + 0 0.0 UE1 + 6957 68.0 UE3 + 0 0.0 UE1 + 7259 68.0 UE3 + 0 0.0 UE1 + 6482 66.0 UE3 + 0 0.0 UE1 + 6608 67.0 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925732689829 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 16 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 4294 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925739726626 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 17 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1616 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + bytes +UE c22c: LCID 4: TX 6634376100 RX 144391 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 180 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 923830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6444494785 RX 2100121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6415703894 RX 144930 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 885291/1/0/ + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 0 0.0 UE1 + 6 0.053 UE3 + 0 0.0 UE1 + 26 0.27 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 238 2.2 UE3 + 0 0.0 UE1 + 519 4.9 UE3 + 0 0.0 UE1 + 31 0.29 UE3 + 0 0.0 UE1 + 39 0.4 UE3 + 0 0.0 UE1 + 9 0.087 UE3 + 0 0.0 UE1 + 181 1.7 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925772758847 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 18 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1785 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925779797206 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 19 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1313 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 944524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6601453533 RX 2192761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6571944880 RX 152267 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 941236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsc + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 6911 68.0 UE1 + 0 0.0 UE3 + 7079 68.0 UE1 + 0 0.0 UE3 + 6913 68.0 UE1 + 0 0.0 UE3 + 6940 68.0 UE1 + 0 0.0 UE3 + 6992 68.0 UE1 + 0 0.0 UE3 + 7338 68.0 UE1 + 0 0.0 UE3 + 7997 71.0 UE1 + 0 0.0 UE3 + 8042 71.0 UE1 + 0 0.0 UE3 + 6439 69.0 UE1 + 0 0.0 UE3 + 5939 67.0 UE1 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925812246103 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 20 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1219 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925819282845 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 21 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1329 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + bytes +UE c22c: LCID 4: TX 7265276758 RX 158199 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 72 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 988299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7012664041 RX 2290057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6982158648 RX 158348 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 972383/1/0/0 + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 58 0.55 UE1 + 0 0.0 UE3 + 91 0.88 UE1 + 0 0.0 UE3 + 470 4.4 UE1 + 0 0.0 UE3 + 71 0.64 UE1 + 0 0.0 UE3 + 260 2.7 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 32 0.3 UE1 + 0 0.0 UE3 + 408 3.4 UE1 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925852244997 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 22 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1989 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925859284120 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 23 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1856 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + bytes +UE c22c: LCID 4: TX 7419159749 RX 163671 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1049438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7585453421 RX 2380201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7553590741 RX 163982 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 992550/1/0/0, + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 27 0.26 UE1 + 0 0.0 UE3 + 101 0.97 UE1 + 0 0.0 UE3 + 432 4.1 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 41 0.39 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925892248223 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 24 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 901 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925899296013 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 25 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1309 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1098377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7878306308 RX 2482227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7844787867 RX 172101 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1015342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: u + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 7530 68.0 UE3 + 0 0.0 UE1 + 7019 68.0 UE3 + 0 0.0 UE1 + 6651 67.0 UE3 + 0 0.0 UE1 + 6938 68.0 UE3 + 0 0.0 UE1 + 7150 68.0 UE3 + 0 0.0 UE1 + 6969 68.0 UE3 + 0 0.0 UE1 + 6768 67.0 UE3 + 0 0.0 UE1 + 7189 68.0 UE3 + 0 0.0 UE1 + 6624 66.0 UE3 + 0 0.0 UE1 + 6780 67.0 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925931813805 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 26 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 783 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925938848627 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 27 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1609 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 0 bytes +UE c22c: LCID 4: TX 8045298571 RX 177483 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 73 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1130085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8035850207 RX 2581659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: L + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 105 1.0 UE3 + 0 0.0 UE1 + 441 4.2 UE3 + 0 0.0 UE1 + 231 2.3 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 46 0.43 UE3 + 0 0.0 UE1 + 76 0.74 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925971700981 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 28 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1832 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752925978741106 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 29 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1784 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1149932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8184399535 RX 2670144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8148893502 RX 185439 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1116641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: u + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 6523 68.0 UE1 + 0 0.0 UE3 + 6893 67.0 UE1 + 0 0.0 UE3 + 6687 67.0 UE1 + 0 0.0 UE3 + 7286 68.0 UE1 + 0 0.0 UE3 + 7146 67.0 UE1 + 0 0.0 UE3 + 7128 68.0 UE1 + 0 0.0 UE3 + 7061 68.0 UE1 + 0 0.0 UE3 + 7456 69.0 UE1 + 0 0.0 UE3 + 8765 73.0 UE1 + 0 0.0 UE3 + 6517 68.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926010982429 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 30 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1470 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926018041926 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 31 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1232 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1192361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8582849858 RX 2765400 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8546381317 RX 191394 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1147401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsc + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 300 2.8 UE1 + 0 0.0 UE3 + 89 0.87 UE1 + 0 0.0 UE3 + 126 1.1 UE1 + 0 0.0 UE3 + 602 6.4 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 44 0.42 UE1 + 0 0.0 UE3 + 11 0.11 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926050419624 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 32 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1619 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926057457273 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 33 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2706 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 0 bytes +UE c22c: LCID 4: TX 8851590023 RX 196477 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 73 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1253372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9154175583 RX 2855520 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9116353059 RX 197025 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 116760 + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 260 2.3 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 56 0.54 UE1 + 0 0.0 UE3 + 218 1.9 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926090151171 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 34 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1333 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926097199612 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 35 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2346 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 0 bytes +UE c22c: LCID 4: TX 9048370299 RX 204004 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4031 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1305177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9497436550 RX 2957563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2 + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE1 + 7052 68.0 UE3 + 0 0.0 UE1 + 6460 67.0 UE3 + 0 0.0 UE1 + 6933 67.0 UE3 + 0 0.0 UE1 + 7002 67.0 UE3 + 0 0.0 UE1 + 6771 67.0 UE3 + 0 0.0 UE1 + 6931 67.0 UE3 + 0 0.0 UE1 + 6805 67.0 UE3 + 0 0.0 UE1 + 6938 66.0 UE3 + 0 0.0 UE1 + 6974 67.0 UE3 + 0 0.0 UE1 + 6891 67.0 UE3 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926129863149 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 36 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 905 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926136902428 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 37 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1346 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + ors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9542196919 RX 2875341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9505662634 RX 210565 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1338053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9665880308 RX 3062779 bytes +UE 2421: LC + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 114 1.1 UE3 + 0 0.0 UE1 + 119 1.2 UE3 + 0 0.0 UE1 + 121 1.2 UE3 + 0 0.0 UE1 + 186 1.7 UE3 + 0 0.0 UE1 + 505 5.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926173066185 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 38 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 996 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926180114575 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 39 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1804 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1357935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9815336049 RX 3151386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9773857628 RX 218883 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1296316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: u + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 7015 68.0 UE1 + 0 0.0 UE3 + 6979 67.0 UE1 + 0 0.0 UE3 + 7362 68.0 UE1 + 0 0.0 UE3 + 6724 67.0 UE1 + 0 0.0 UE3 + 7006 68.0 UE1 + 0 0.0 UE3 + 7050 66.0 UE1 + 0 0.0 UE3 + 6617 68.0 UE1 + 0 0.0 UE3 + 7140 67.0 UE1 + 0 0.0 UE3 + 6927 68.0 UE1 + 0 0.0 UE3 + 8228 70.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926212363337 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 40 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1380 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926219413391 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 41 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2129 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1401211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10221832482 RX 3248634 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10179371622 RX 224961 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1327574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsc + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 517 4.7 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926251961474 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 42 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1640 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926258991865 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 43 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1725 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 29 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1462226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10793581463 RX 3338778 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10749768173 RX 230595 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1347797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: uls + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 124 1.3 UE1 + 0 0.0 UE3 + 101 0.96 UE1 + 0 0.0 UE3 + 50 0.5 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 81 0.78 UE1 + 0 0.0 UE3 + 668 6.1 UE1 + 0 0.0 UE3 + 10 0.1 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 97 0.86 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926291428286 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 44 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1754 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926298467692 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 45 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 971 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1513556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11144806479 RX 3438775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11099408030 RX 238662 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1368891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: u + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 6481 67.0 UE3 + 0 0.0 UE1 + 7017 68.0 UE3 + 0 0.0 UE1 + 7786 70.0 UE3 + 0 0.0 UE1 + 6794 67.0 UE3 + 0 0.0 UE1 + 6688 68.0 UE3 + 0 0.0 UE1 + 6801 67.0 UE3 + 0 0.0 UE1 + 8059 71.0 UE3 + 0 0.0 UE1 + 7364 67.0 UE3 + 0 0.0 UE1 + 6078 68.0 UE3 + 0 0.0 UE1 + 7738 70.0 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926330804162 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 46 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1374 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926337839758 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 47 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1034 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1544739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11297011187 RX 3533863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11250352160 RX 244605 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1411247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ul + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 0 0.0 UE1 + 24 0.23 UE3 + 0 0.0 UE1 + 84 0.8 UE3 + 0 0.0 UE1 + 11 0.1 UE3 + 0 0.0 UE1 + 293 2.7 UE3 + 0 0.0 UE1 + 112 1.2 UE3 + 0 0.0 UE1 + 844 7.7 UE3 + 0 0.0 UE1 + 18 0.19 UE3 + 0 0.0 UE1 + 86 0.83 UE3 + 0 0.0 UE1 + 249 2.4 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926370194230 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 48 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1572 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926377250181 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 49 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 3011 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigure_network tool returns the new configuration values as ['20', '80']. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 0 bytes +UE c22c: LCID 4: TX 11475168761 RX 248544 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1564993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 2421: ulsch_rounds 149538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 11451644475 RX 3622727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11404283806 RX 250950 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1472510 + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 6238 67.0 UE1 + 0 0.0 UE3 + 7298 68.0 UE1 + 0 0.0 UE3 + 7284 67.0 UE1 + 0 0.0 UE3 + 8084 71.0 UE1 + 0 0.0 UE3 + 6882 67.0 UE1 + 0 0.0 UE3 + 2343 45.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926410050729 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 50 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1475 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926417087013 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 51 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2135 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 24 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11644401547 RX 256602 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1610235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11874420504 RX 3721711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11826031398 RX 257889 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, averag + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 38 0.36 UE1 + 0 0.0 UE3 + 228 2.1 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 14 0.12 UE1 + 0 0.0 UE3 + 88 0.87 UE1 + 0 0.0 UE3 + 515 4.9 UE1 + 0 0.0 UE3 + 121 1.1 UE1 + 0 0.0 UE3 + 639 7.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926450564125 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 52 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1141 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926457606119 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 53 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1283 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + ty/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1707366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12777881109 RX 3864686 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12727318732 RX 268528 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1533412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0 + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 7570 68.0 UE3 + 0 0.0 UE1 + 6904 67.0 UE3 + 0 0.0 UE1 + 6898 67.0 UE3 + 0 0.0 UE1 + 6763 67.0 UE3 + 0 0.0 UE1 + 7118 68.0 UE3 + 0 0.0 UE1 + 7481 68.0 UE3 + 0 0.0 UE1 + 6739 67.0 UE3 + 0 0.0 UE1 + 2858 49.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926513564414 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 54 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1524 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926520604468 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 55 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1335 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 256 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1739145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12931067772 RX 3962222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12879228169 RX 274624 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1576096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsc + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 60 0.57 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 10 0.097 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 11 0.11 UE3 + 0 0.0 UE1 + 36 0.35 UE3 + 0 0.0 UE1 + 291 2.7 UE3 + 0 0.0 UE1 + 106 0.93 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926552948145 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 56 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1884 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926559983999 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 57 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1240 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no +yes + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1762676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13113128465 RX 4066526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13060415914 RX 281143 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1649281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13016909407 RX 3822733 bytes +UE c22c: LCID 1: TX + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 67 0.64 UE3 + 0 0.0 UE1 + 176 1.7 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 30 0.26 UE3 + 0 0.0 UE1 + 726 7.3 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926599598334 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 58 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1485 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926606636924 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 59 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1705 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1785214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13322589434 RX 4163208 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13269289590 RX 288720 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1698193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ul + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE3 + 6727 67.0 UE1 + 0 0.0 UE3 + 7046 68.0 UE1 + 0 0.0 UE3 + 7196 67.0 UE1 + 0 0.0 UE3 + 7049 68.0 UE1 + 0 0.0 UE3 + 6800 67.0 UE1 + 0 0.0 UE3 + 6680 67.0 UE1 + 0 0.0 UE3 + 8731 71.0 UE1 + 0 0.0 UE3 + 6731 67.0 UE1 + 0 0.0 UE3 + 5920 67.0 UE1 + 0 0.0 UE3 + 7133 67.0 UE1 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926638963551 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 60 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1259 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926645999432 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 61 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 2134 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13782708323 RX 295821 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1732841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13499739350 RX 4023664 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13448773796 RX 294679 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 17 0.17 UE1 + 0 0.0 UE3 + 803 7.7 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 44 0.42 UE1 + 0 0.0 UE3 + 55 0.53 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 41 0.37 UE1 + 0 0.0 UE3 + 416 4.3 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926685451619 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 62 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1981 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926692497234 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 63 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1776 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 0 bytes +UE c22c: LCID 4: TX 13604196173 RX 301962 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5240 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1895576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14285649279 RX 4374809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14229629433 RX 303690 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1753 + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE1 + 7038 68.0 UE3 + 0 0.0 UE1 + 6823 67.0 UE3 + 0 0.0 UE1 + 7182 67.0 UE3 + 0 0.0 UE1 + 6936 67.0 UE3 + 0 0.0 UE1 + 6749 67.0 UE3 + 0 0.0 UE1 + 6918 67.0 UE3 + 0 0.0 UE1 + 7316 67.0 UE3 + 0 0.0 UE1 + 8045 71.0 UE3 + 0 0.0 UE1 + 7162 68.0 UE3 + 0 0.0 UE1 + 5946 67.0 UE3 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926725096494 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 64 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 931 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926732137463 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 65 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 879 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + TX 14086415502 RX 4207326 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14033694417 RX 308265 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1927777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14446789530 RX 4476157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14389458298 RX + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 4 0.042 UE3 + 0 0.0 UE1 + 139 1.3 UE3 + 0 0.0 UE1 + 54 0.55 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 65 0.62 UE3 + 0 0.0 UE1 + 143 1.4 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 11 0.11 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 0 0.0 UE1 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926765699203 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 66 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1290 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926772736871 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 67 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1461 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + 0 bytes +UE c22c: LCID 4: TX 14592216728 RX 313770 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 48 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1947830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14597592834 RX 4562269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14539529846 RX 315399 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1860137/ + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 0 0.0 UE1 + 176 1.8 UE3 + 0 0.0 UE1 + 73 0.7 UE3 + 0 0.0 UE1 + 118 1.1 UE3 + 0 0.0 UE1 + 36 0.36 UE3 + 0 0.0 UE1 + 86 0.83 UE3 + 0 0.0 UE1 + 14 0.14 UE3 + 0 0.0 UE1 + 87 0.83 UE3 + 0 0.0 UE1 + 38 0.37 UE3 + 0 0.0 UE1 + 130 1.2 UE3 + 0 0.0 UE1 + 79 0.83 UE3 +[ai]: UE3 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE3", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE3, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926805445369 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 68 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1187 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +20+80 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926812491857 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 69 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:80 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1511 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['20', '80'] +[ai]: The reconfigured network values are 20 and 80. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4069 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1970778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14811831937 RX 4661115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14753177455 RX 323118 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1907427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: u + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 8107 71.0 UE1 + 0 0.0 UE3 + 7155 68.0 UE1 + 0 0.0 UE3 + 6273 68.0 UE1 + 0 0.0 UE3 + 6961 68.0 UE1 + 0 0.0 UE3 + 6788 67.0 UE1 + 0 0.0 UE3 + 6649 67.0 UE1 + 0 0.0 UE3 + 7113 67.0 UE1 + 0 0.0 UE3 + 7009 68.0 UE1 + 0 0.0 UE3 + 7267 67.0 UE1 + 0 0.0 UE3 + 6832 68.0 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 20, + "value_2_old": 80 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=20, value_2_old=80 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926844980897 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 70 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1831 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926852018229 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 71 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1446 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? yes + + +This is a Configuration Agent, whose goal is to reconfigure the network to solve the SDU buffer full error. +Error detected in logs: + [RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2014169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15219116442 RX 4758459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15159482519 RX 329202 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1938898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsc + + +[ai]: +Tools: +- get_packetloss_logs({}) +This is get_packetloss_logs Tool + + +Retrieving packet loss logs from database + +[tool]: lost_packets loss_percentage UE + 207 1.9 UE1 + 0 0.0 UE3 + 313 3.2 UE1 + 0 0.0 UE3 + 139 1.3 UE1 + 0 0.0 UE3 + 20 0.2 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 637 5.8 UE1 + 0 0.0 UE3 + 57 0.58 UE1 + 0 0.0 UE3 + 0 0.0 UE1 + 0 0.0 UE3 + 49 0.44 UE1 + 0 0.0 UE3 + 30 0.31 UE1 + 0 0.0 UE3 +[ai]: UE1 +Tools: + +[ai]: +Tools: +- reconfigure_network({ + "UE": "UE1", + "value_1_old": 80, + "value_2_old": 20 +}) +This is reconfigure_network Tool + + + Executing reconfigure_network with UE=UE1, value_1_old=80, value_2_old=20 + + +Script output args_1: + +20+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926884432651 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 72 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 20:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1623 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + +Script output args_2: + +80+20 +[UTIL]: Setting the config -c file to /usr/local/etc/flexric/flexric.conf +[UTIL]: Setting path -p for the shared libraries to /usr/local/lib/flexric/ +[xAapp]: Initializing ... +[xApp]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36422 +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[NEAR-RIC]: Loading SM ID = 145 with def = SLICE_STATS_V0 +[NEAR-RIC]: Loading SM ID = 142 with def = MAC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 2 with def = ORAN-E2SM-KPM +[NEAR-RIC]: Loading SM ID = 3 with def = ORAN-E2SM-RC +[NEAR-RIC]: Loading SM ID = 143 with def = RLC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 146 with def = TC_STATS_V0 +[NEAR-RIC]: Loading SM ID = 148 with def = GTP_STATS_V0 +[NEAR-RIC]: Loading SM ID = 144 with def = PDCP_STATS_V0 +[xApp]: DB filename = /tmp/xapp_db_1752926891470015 + [xApp]: E42 SETUP-REQUEST tx +[xApp]: E42 SETUP-RESPONSE rx +[xApp]: xApp ID = 73 +[xApp]: Registered E2 Nodes = 1 +Connected E2 nodes = 1 +Setting PRB Ratio to 80:20 +[xApp]: CONTROL-REQUEST tx +[xApp]: CONTROL ACK rx +[xApp]: Successfully received CONTROL-ACK +[xApp]: Control Loop Latency: 1485 us +[xApp]: Sucessfully stopped +Test xApp run SUCCESSFULLY + + + Wait for reconfiguration to kick in + +[tool]: ['80', '20'] +[ai]: The reconfigured network values are 80 and 20. +Tools: + +This is a Monitoring agent, monitoring logs for SDU buffer full error. +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Response from Monitoring agent: Error Detected? no + +Waiting for logs + diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/docker_iperfserver_server1.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/docker_iperfserver_server1.log new file mode 100644 index 000000000..fb6856021 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/docker_iperfserver_server1.log @@ -0,0 +1,5507 @@ +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 51881 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 43655 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 65.00-66.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 274 KBytes 30.0 Mbits/sec 194 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259170 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 47407 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 55174 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.24 sec 3.48 MBytes 120 Mbits/sec 2520 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.24 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038424 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 48143 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 47568 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 24.00-25.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 246 KBytes 30.1 Mbits/sec 174 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259150 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 46781 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 51744 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10333 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10387 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.23 sec 3.29 MBytes 120 Mbits/sec 2382 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.23 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038286 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 52743 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 36309 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 255 KBytes 30.1 Mbits/sec 180 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259156 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 42725 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 36370 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 100.00-100.24 sec 3.48 MBytes 120 Mbits/sec 2519 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.24 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038422 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 56385 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 49789 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 23.00-24.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 66.00-67.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 228 KBytes 30.5 Mbits/sec 161 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259137 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 58197 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 42255 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10346 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10370 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 100.00-100.33 sec 4.78 MBytes 120 Mbits/sec 3461 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.33 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039364 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 52653 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 44062 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.05 sec 202 KBytes 30.3 Mbits/sec 143 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.05 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259119 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 54571 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 38916 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10349 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 32.00-33.01 sec 14.3 MBytes 119 Mbits/sec 10340 +[ 5] 33.01-34.00 sec 14.3 MBytes 121 Mbits/sec 10379 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 100.00-100.40 sec 5.69 MBytes 120 Mbits/sec 4121 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.40 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1040026 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 57851 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 49825 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 35.00-36.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 230 KBytes 30.2 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 37389 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 58609 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.30 sec 4.25 MBytes 120 Mbits/sec 3076 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.30 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038980 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 52139 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 47352 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 230 KBytes 30.2 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 43577 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 43903 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10345 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10375 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 100.00-100.36 sec 5.12 MBytes 120 Mbits/sec 3710 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.36 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039612 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 46817 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 48295 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 219 KBytes 30.2 Mbits/sec 155 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259131 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 36613 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 40060 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10347 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 100.00-100.36 sec 5.14 MBytes 120 Mbits/sec 3723 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.36 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039634 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 46783 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 35648 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 36.00-37.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 2587 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 256 KBytes 30.0 Mbits/sec 181 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259157 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 39507 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 51337 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10337 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10379 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10343 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10375 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 100.00-100.39 sec 5.58 MBytes 120 Mbits/sec 4038 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.39 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039943 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 49631 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 45136 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.07 sec 249 KBytes 30.4 Mbits/sec 176 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259152 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 37335 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 37176 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 100.00-100.32 sec 4.56 MBytes 120 Mbits/sec 3301 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.32 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039210 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 42907 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 36289 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 29.8 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.1 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 57.00-58.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 81.00-82.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 235 KBytes 30.4 Mbits/sec 166 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259142 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 59365 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 40685 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 100.00-100.15 sec 2.21 MBytes 120 Mbits/sec 1600 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.15 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037503 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 60475 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 53590 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 2587 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 230 KBytes 30.0 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 33969 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 41705 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 100.00-100.17 sec 2.43 MBytes 120 Mbits/sec 1759 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.17 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037662 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 43087 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 38553 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 219 KBytes 30.1 Mbits/sec 155 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259131 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 60013 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 45667 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 253 KBytes 30.5 Mbits/sec 179 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259155 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 35005 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 38418 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10345 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10377 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.20 sec 2.83 MBytes 120 Mbits/sec 2052 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.20 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037956 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 50315 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 48911 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 25.00-26.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 32.00-33.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 49.00-50.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 94.00-95.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 230 KBytes 30.4 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 37599 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 46199 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10349 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10372 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 100.00-100.21 sec 3.06 MBytes 120 Mbits/sec 2216 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038122 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 52671 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 34742 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 46.00-47.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.06 sec 230 KBytes 30.3 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 47937 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 37486 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10344 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10372 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.22 sec 3.12 MBytes 118 Mbits/sec 2260 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.22 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038164 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 55461 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 35790 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 100.00-100.05 sec 192 KBytes 29.7 Mbits/sec 136 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.05 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259113 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 55937 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 42149 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 100.00-100.24 sec 3.47 MBytes 120 Mbits/sec 2516 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.24 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038421 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 48987 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 41105 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 214 KBytes 30.6 Mbits/sec 151 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259127 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 38815 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 51946 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 100.00-100.25 sec 3.58 MBytes 120 Mbits/sec 2594 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.25 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038504 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 57115 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 37970 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 219 KBytes 29.9 Mbits/sec 155 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259131 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 56591 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 52139 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10348 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10347 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10370 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.16 sec 2.30 MBytes 120 Mbits/sec 1666 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.16 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037571 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 58217 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 37800 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 41.00-42.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 233 KBytes 30.3 Mbits/sec 165 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259141 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 51931 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 57206 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10346 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10373 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 100.00-100.22 sec 3.18 MBytes 120 Mbits/sec 2301 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.22 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038204 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 38043 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 44315 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.06 sec 228 KBytes 30.3 Mbits/sec 161 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259137 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 43441 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 54343 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10338 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10375 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.21 sec 3.08 MBytes 121 Mbits/sec 2228 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038131 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 47199 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 54606 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.06 sec 228 KBytes 30.3 Mbits/sec 161 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259137 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 52411 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 54133 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10330 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10385 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10339 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10378 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10344 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10370 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 43.00-44.00 sec 14.2 MBytes 119 Mbits/sec 10312 +[ 5] 44.00-45.00 sec 14.4 MBytes 121 Mbits/sec 10403 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10341 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10380 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10343 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10374 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.22 sec 3.10 MBytes 120 Mbits/sec 2248 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.22 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038152 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 38247 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 43918 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 52.00-53.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 235 KBytes 30.4 Mbits/sec 166 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259142 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 54987 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 56302 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10339 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10381 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 100.00-100.21 sec 2.99 MBytes 120 Mbits/sec 2165 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038070 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 60401 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 41794 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 240 KBytes 30.0 Mbits/sec 170 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259147 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 53549 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 41930 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 100.00-100.21 sec 3.06 MBytes 120 Mbits/sec 2216 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038121 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 35423 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 54345 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.06 sec 230 KBytes 30.2 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 36899 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 60735 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10331 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10387 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 100.00-100.21 sec 3.06 MBytes 120 Mbits/sec 2215 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038119 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +Accepted connection from 192.168.70.134, port 45759 +[ 5] local 192.168.70.135 port 5201 connected to 192.168.70.134 port 33850 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 205 KBytes 30.1 Mbits/sec 145 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259121 (0%) sender +----------------------------------------------------------- +Server listening on 5201 +----------------------------------------------------------- +context canceled diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/docker_iperfserver_server2.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/docker_iperfserver_server2.log new file mode 100644 index 000000000..3c95f1226 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/docker_iperfserver_server2.log @@ -0,0 +1,5507 @@ +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 58565 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 35378 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 100.00-100.21 sec 3.03 MBytes 120 Mbits/sec 2196 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038099 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 48797 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 43548 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.57 MBytes 29.9 Mbits/sec 2584 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.1 Mbits/sec 2595 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.06 sec 229 KBytes 30.4 Mbits/sec 162 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259137 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 39201 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 40795 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.22 sec 3.17 MBytes 120 Mbits/sec 2293 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.22 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038197 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 33993 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 57884 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 18.00-19.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.05 sec 202 KBytes 30.5 Mbits/sec 143 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.05 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259119 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 46077 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 43413 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10344 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10375 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10349 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 100.00-100.23 sec 3.26 MBytes 120 Mbits/sec 2364 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.23 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038267 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 55087 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 46574 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 93.00-94.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 216 KBytes 30.3 Mbits/sec 153 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259129 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 59891 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 37530 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10346 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.2 MBytes 119 Mbits/sec 10283 +[ 5] 53.00-54.00 sec 14.4 MBytes 121 Mbits/sec 10437 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 100.00-100.24 sec 3.43 MBytes 120 Mbits/sec 2483 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.24 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038389 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 40669 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 54610 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 13.00-14.00 sec 3.57 MBytes 30.0 Mbits/sec 2587 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 64.00-65.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 73.00-74.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 267 KBytes 30.3 Mbits/sec 189 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259165 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 54761 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 45248 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10335 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10378 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 45.00-46.00 sec 14.2 MBytes 119 Mbits/sec 10313 +[ 5] 46.00-47.00 sec 14.4 MBytes 120 Mbits/sec 10400 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 100.00-100.31 sec 4.50 MBytes 120 Mbits/sec 3261 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.31 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039167 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 39197 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 60105 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 36.00-37.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 88.00-89.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 238 KBytes 30.3 Mbits/sec 168 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259144 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 58617 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 53822 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10347 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.37 sec 5.27 MBytes 120 Mbits/sec 3814 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.37 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039717 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 58205 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 51004 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.57 MBytes 30.0 Mbits/sec 2586 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2594 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 226 KBytes 29.9 Mbits/sec 160 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259137 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 55049 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 48443 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.26 sec 3.76 MBytes 120 Mbits/sec 2725 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.26 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038628 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 46465 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 58418 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 76.00-77.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 230 KBytes 30.4 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 59557 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 51682 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10348 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.26 sec 3.77 MBytes 120 Mbits/sec 2733 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.26 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038637 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 42153 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 43468 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 253 KBytes 30.1 Mbits/sec 179 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259155 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 54847 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 41804 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10344 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10377 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 100.00-100.35 sec 4.93 MBytes 120 Mbits/sec 3573 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.35 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039477 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 42391 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 55942 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 43.00-44.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.08 sec 290 KBytes 30.3 Mbits/sec 205 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.08 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259181 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 33649 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 58380 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10338 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10382 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 88.00-89.00 sec 14.3 MBytes 119 Mbits/sec 10324 +[ 5] 89.00-90.00 sec 14.4 MBytes 120 Mbits/sec 10393 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 100.00-100.31 sec 4.38 MBytes 120 Mbits/sec 3175 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.31 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039085 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 35431 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 53737 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 228 KBytes 30.5 Mbits/sec 161 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259137 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 36297 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 33089 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10375 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10346 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10372 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10345 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10374 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10373 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10332 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10386 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.31 sec 4.46 MBytes 120 Mbits/sec 3233 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.31 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039136 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 37397 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 57557 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.08 sec 283 KBytes 30.1 Mbits/sec 200 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.08 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259176 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 49733 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 48808 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10348 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10375 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 81.00-82.00 sec 14.3 MBytes 119 Mbits/sec 10332 +[ 5] 82.00-83.00 sec 14.3 MBytes 121 Mbits/sec 10386 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10323 +[ 5] 86.00-87.00 sec 14.4 MBytes 120 Mbits/sec 10394 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.28 sec 3.94 MBytes 120 Mbits/sec 2852 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.28 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038756 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 54233 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 44033 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 70.00-71.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.06 sec 216 KBytes 30.2 Mbits/sec 153 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259129 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 48483 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 50713 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10336 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10380 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 100.00-100.25 sec 3.52 MBytes 120 Mbits/sec 2546 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.25 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038453 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 35577 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 40170 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10340 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10375 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10349 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10347 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10370 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 100.00-100.21 sec 2.99 MBytes 120 Mbits/sec 2166 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038070 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 43363 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 54054 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 212 KBytes 30.3 Mbits/sec 150 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259126 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 37499 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 36790 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 100.00-100.17 sec 2.48 MBytes 120 Mbits/sec 1793 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.17 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037697 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 57785 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 33190 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 99.00-100.00 sec 3.57 MBytes 30.0 Mbits/sec 2587 +[ 5] 100.00-100.07 sec 246 KBytes 30.1 Mbits/sec 174 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259150 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 46383 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 37384 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10348 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 100.00-100.19 sec 2.68 MBytes 120 Mbits/sec 1938 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.19 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037843 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 57585 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 59935 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 22.00-23.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 47.00-48.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 223 KBytes 30.0 Mbits/sec 158 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259134 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 45959 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 37802 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10345 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10373 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 100.00-100.20 sec 2.89 MBytes 120 Mbits/sec 2096 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.20 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037999 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 49749 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 57621 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 2586 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2593 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 238 KBytes 30.0 Mbits/sec 168 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259144 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 60293 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 58629 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10349 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10344 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 100.00-100.18 sec 2.57 MBytes 120 Mbits/sec 1863 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.18 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037768 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 40685 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 55760 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 16.00-17.00 sec 3.57 MBytes 30.0 Mbits/sec 2587 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 230 KBytes 30.1 Mbits/sec 163 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259139 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 39389 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 48086 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10369 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.20 sec 2.86 MBytes 120 Mbits/sec 2073 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.20 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037976 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 42093 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 57445 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 20.00-21.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 25.00-26.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.07 sec 246 KBytes 30.1 Mbits/sec 174 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259150 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 37069 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 50072 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10345 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10374 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10345 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 100.00-100.18 sec 2.55 MBytes 120 Mbits/sec 1850 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.18 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037758 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 58439 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 48069 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 238 KBytes 30.2 Mbits/sec 168 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259144 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 49111 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 38539 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 100.00-100.21 sec 2.96 MBytes 120 Mbits/sec 2144 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.21 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038048 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 59499 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 42953 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 232 KBytes 30.2 Mbits/sec 164 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259140 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 36525 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 58734 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10342 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10377 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.24 sec 3.46 MBytes 120 Mbits/sec 2506 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.24 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038410 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 33813 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 55783 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 51.00-52.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 97.00-98.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.06 sec 219 KBytes 30.4 Mbits/sec 155 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259131 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 55471 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 43648 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10347 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10346 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10373 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 100.00-100.23 sec 3.22 MBytes 120 Mbits/sec 2334 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.23 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038244 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 42881 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 35146 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 34.00-35.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 228 KBytes 30.2 Mbits/sec 161 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259137 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 45537 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 50943 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 17.00-18.00 sec 14.2 MBytes 120 Mbits/sec 10319 +[ 5] 18.00-19.00 sec 14.4 MBytes 120 Mbits/sec 10399 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10348 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10365 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10346 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10374 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10352 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10320 +[ 5] 90.00-91.00 sec 14.4 MBytes 120 Mbits/sec 10398 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 100.00-100.19 sec 2.69 MBytes 120 Mbits/sec 1949 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.19 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1037854 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 48263 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 42993 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 53.00-54.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 74.00-75.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 100.00-100.06 sec 206 KBytes 30.2 Mbits/sec 146 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.06 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259122 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 39737 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 39928 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10344 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10330 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10388 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10367 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10354 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 100.00-100.32 sec 4.51 MBytes 120 Mbits/sec 3264 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.32 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1039167 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 56827 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 43945 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 1.00-2.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 2.00-3.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 3.00-4.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 4.00-5.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 5.00-6.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 6.00-7.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 7.00-8.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 8.00-9.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 9.00-10.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 10.00-11.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 11.00-12.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 12.00-13.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 13.00-14.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 14.00-15.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 15.00-16.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 16.00-17.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 17.00-18.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 18.00-19.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 19.00-20.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 20.00-21.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 21.00-22.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 22.00-23.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 23.00-24.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 24.00-25.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 25.00-26.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 26.00-27.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 27.00-28.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 28.00-29.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 29.00-30.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 30.00-31.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 31.00-32.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 32.00-33.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 33.00-34.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 34.00-35.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 35.00-36.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 36.00-37.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 37.00-38.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 38.00-39.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 39.00-40.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 40.00-41.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 41.00-42.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 42.00-43.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 43.00-44.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 44.00-45.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 45.00-46.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 46.00-47.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 47.00-48.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 48.00-49.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 49.00-50.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 50.00-51.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 51.00-52.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 52.00-53.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 53.00-54.00 sec 3.57 MBytes 30.0 Mbits/sec 2587 +[ 5] 54.00-55.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 55.00-56.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 56.00-57.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 57.00-58.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 58.00-59.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 59.00-60.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 60.00-61.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 61.00-62.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 62.00-63.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 63.00-64.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 64.00-65.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 65.00-66.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 66.00-67.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 67.00-68.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 68.00-69.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 69.00-70.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 70.00-71.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 71.00-72.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 72.00-73.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 73.00-74.00 sec 3.58 MBytes 30.0 Mbits/sec 2592 +[ 5] 74.00-75.00 sec 3.57 MBytes 30.0 Mbits/sec 2588 +[ 5] 75.00-76.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 76.00-77.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 77.00-78.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 78.00-79.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 79.00-80.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 80.00-81.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 81.00-82.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 82.00-83.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 83.00-84.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 84.00-85.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 85.00-86.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 86.00-87.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 87.00-88.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 88.00-89.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 89.00-90.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 90.00-91.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 91.00-92.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 92.00-93.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 93.00-94.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 94.00-95.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 95.00-96.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 96.00-97.00 sec 3.58 MBytes 30.0 Mbits/sec 2590 +[ 5] 97.00-98.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 98.00-99.00 sec 3.58 MBytes 30.0 Mbits/sec 2591 +[ 5] 99.00-100.00 sec 3.58 MBytes 30.0 Mbits/sec 2589 +[ 5] 100.00-100.07 sec 242 KBytes 30.1 Mbits/sec 171 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.07 sec 358 MBytes 30.0 Mbits/sec 0.000 ms 0/259147 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +Accepted connection from 192.168.70.143, port 55617 +[ 5] local 192.168.70.135 port 5202 connected to 192.168.70.143 port 48405 +[ ID] Interval Transfer Bitrate Total Datagrams +[ 5] 0.00-1.00 sec 14.3 MBytes 120 Mbits/sec 10350 +[ 5] 1.00-2.00 sec 14.3 MBytes 120 Mbits/sec 10347 +[ 5] 2.00-3.00 sec 14.3 MBytes 120 Mbits/sec 10374 +[ 5] 3.00-4.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 4.00-5.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 5.00-6.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 6.00-7.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 7.00-8.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 8.00-9.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 9.00-10.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 10.00-11.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 11.00-12.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 12.00-13.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 13.00-14.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 14.00-15.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 15.00-16.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 16.00-17.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 17.00-18.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 18.00-19.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 19.00-20.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 20.00-21.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 21.00-22.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 22.00-23.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 23.00-24.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 24.00-25.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 25.00-26.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 26.00-27.00 sec 14.3 MBytes 120 Mbits/sec 10366 +[ 5] 27.00-28.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 28.00-29.00 sec 14.3 MBytes 120 Mbits/sec 10347 +[ 5] 29.00-30.00 sec 14.3 MBytes 120 Mbits/sec 10371 +[ 5] 30.00-31.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 31.00-32.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 32.00-33.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 33.00-34.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 34.00-35.00 sec 14.3 MBytes 120 Mbits/sec 10356 +[ 5] 35.00-36.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 36.00-37.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 37.00-38.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 38.00-39.00 sec 14.3 MBytes 120 Mbits/sec 10368 +[ 5] 39.00-40.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 40.00-41.00 sec 14.3 MBytes 120 Mbits/sec 10346 +[ 5] 41.00-42.00 sec 14.3 MBytes 120 Mbits/sec 10374 +[ 5] 42.00-43.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 43.00-44.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 44.00-45.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 45.00-46.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 46.00-47.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 47.00-48.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 48.00-49.00 sec 14.3 MBytes 120 Mbits/sec 10363 +[ 5] 49.00-50.00 sec 14.3 MBytes 120 Mbits/sec 10355 +[ 5] 50.00-51.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 51.00-52.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 52.00-53.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 53.00-54.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 54.00-55.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 55.00-56.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 56.00-57.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 57.00-58.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 58.00-59.00 sec 14.3 MBytes 120 Mbits/sec 10351 +[ 5] 59.00-60.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 60.00-61.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 61.00-62.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 62.00-63.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 63.00-64.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 64.00-65.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 65.00-66.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 66.00-67.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 67.00-68.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 68.00-69.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 69.00-70.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 70.00-71.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 71.00-72.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 72.00-73.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 73.00-74.00 sec 14.3 MBytes 120 Mbits/sec 10364 +[ 5] 74.00-75.00 sec 14.3 MBytes 120 Mbits/sec 10353 +[ 5] 75.00-76.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 76.00-77.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 77.00-78.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 78.00-79.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 79.00-80.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 80.00-81.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 81.00-82.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 82.00-83.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 83.00-84.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 84.00-85.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 85.00-86.00 sec 14.3 MBytes 120 Mbits/sec 10362 +[ 5] 86.00-87.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 87.00-88.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 88.00-89.00 sec 14.3 MBytes 120 Mbits/sec 10358 +[ 5] 89.00-90.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 90.00-91.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 91.00-92.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 92.00-93.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 93.00-94.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 94.00-95.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 95.00-96.00 sec 14.3 MBytes 120 Mbits/sec 10361 +[ 5] 96.00-97.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 97.00-98.00 sec 14.3 MBytes 120 Mbits/sec 10360 +[ 5] 98.00-99.00 sec 14.3 MBytes 120 Mbits/sec 10359 +[ 5] 99.00-100.00 sec 14.3 MBytes 120 Mbits/sec 10357 +[ 5] 100.00-100.20 sec 2.90 MBytes 120 Mbits/sec 2103 +- - - - - - - - - - - - - - - - - - - - - - - - - +[ ID] Interval Transfer Bitrate Jitter Lost/Total Datagrams +[ 5] 0.00-100.20 sec 1.40 GBytes 120 Mbits/sec 0.000 ms 0/1038006 (0%) sender +----------------------------------------------------------- +Server listening on 5202 +----------------------------------------------------------- +context canceled diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/gNodeB.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/gNodeB.log new file mode 100644 index 000000000..3894f73a4 --- /dev/null +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/logs/gNodeB.log @@ -0,0 +1,265632 @@ +[HW] # /dev/cpu_dma_latency set to 2 us +sh: 1: cannot create /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu10/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu11/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu12/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu13/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu14/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu15/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu8/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu9/cpufreq/scaling_min_freq: Directory nonexistent +[HW] Can't set cpu frequency +[ENB_APP] nfapi (0) running mode: MONOLITHIC +[GNB_APP] Getting GNBSParams +[ITTI] Starting itti queue: TASK_UNKNOWN as task 0 +[ITTI] Starting itti queue: TASK_TIMER as task 1 +[ITTI] Starting itti queue: TASK_L2L1 as task 2 +[ITTI] Starting itti queue: TASK_BM as task 3 +[ITTI] Starting itti queue: TASK_PHY_ENB as task 4 +[ITTI] Starting itti queue: TASK_MAC_GNB as task 5 +[ITTI] Starting itti queue: TASK_RLC_ENB as task 6 +[ITTI] Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7 +[ITTI] Starting itti queue: TASK_PDCP_ENB as task 8 +[ITTI] Starting itti queue: TASK_PDCP_GNB as task 9 +[ITTI] Starting itti queue: TASK_DATA_FORWARDING as task 10 +[ITTI] Starting itti queue: TASK_END_MARKER as task 11 +[ITTI] Starting itti queue: TASK_RRC_ENB as task 12 +[ITTI] Starting itti queue: TASK_RRC_GNB as task 13 +[ITTI] Starting itti queue: TASK_RAL_ENB as task 14 +[ITTI] Starting itti queue: TASK_S1AP as task 15 +[ITTI] Starting itti queue: TASK_NGAP as task 16 +[ITTI] Starting itti queue: TASK_X2AP as task 17 +[ITTI] Starting itti queue: TASK_M2AP_ENB as task 18 +[ITTI] Starting itti queue: TASK_M2AP_MCE as task 19 +[ITTI] Starting itti queue: TASK_M3AP as task 20 +[ITTI] Starting itti queue: TASK_M3AP_MME as task 21 +[ITTI] Starting itti queue: TASK_M3AP_MCE as task 22 +[ITTI] Starting itti queue: TASK_SCTP as task 23 +[ITTI] Starting itti queue: TASK_ENB_APP as task 24 +[ITTI] Starting itti queue: TASK_GNB_APP as task 25 +[ITTI] Starting itti queue: TASK_MCE_APP as task 26 +[ITTI] Starting itti queue: TASK_MME_APP as task 27 +[ITTI] Starting itti queue: TASK_PHY_UE as task 28 +[ITTI] Starting itti queue: TASK_MAC_UE as task 29 +[ITTI] Starting itti queue: TASK_RLC_UE as task 30 +[ITTI] Starting itti queue: TASK_PDCP_UE as task 31 +[ITTI] Starting itti queue: TASK_RRC_UE as task 32 +[ITTI] Starting itti queue: TASK_RRC_NRUE as task 33 +[ITTI] Starting itti queue: TASK_NAS_UE as task 34 +[ITTI] Starting itti queue: TASK_RAL_UE as task 35 +[ITTI] Starting itti queue: TASK_GTPV1_U as task 36 +[ITTI] Starting itti queue: TASK_CU_F1 as task 37 +[ITTI] Starting itti queue: TASK_DU_F1 as task 38 +[ITTI] Starting itti queue: TASK_CUCP_E1 as task 39 +[ITTI] Starting itti queue: TASK_CUUP_E1 as task 40 +[ITTI] Starting itti queue: TASK_RRC_UE_SIM as task 41 +[ITTI] Starting itti queue: TASK_RRC_GNB_SIM as task 42 +[ITTI] Starting itti queue: TASK_RRC_NSA_UE as task 43 +[ITTI] Starting itti queue: TASK_RRC_NSA_NRUE as task 44 +[ITTI] Starting itti queue: TASK_NAS_NRUE as task 45 +[OPT] OPT disabled +[HW] Version: Branch: slicing-spring-of-code Abrev. Hash: 50d33e69f0 Date: Sat Mar 30 19:11:11 2024 +0100 +[NR_PHY] RC.gNB = 0x563772bdc760 +[NR_PHY] PRB blacklist +[NR_PHY] Copying 0 blacklisted PRB to L1 context +[PHY] L1_RX_THREAD_CORE -1 (16) +[PHY] TX_AMP = 519 (-36 dBFS) +[PHY] l1_north_init_gNB() RC.nb_nr_L1_inst:1 +[PHY] Installing callbacks for IF_Module - UL_indication +[MAC] Allocating shared L1/L2 interface structure for instance 0 @ 0x563772be4c60 +[PHY] l1_north_init_gNB() RC.gNB[0] installing callbacks +[PHY] create_gNB_tasks() Task ready initialize structures +[PHY] No prs_config configuration found..!! +[GNB_APP] pdsch_AntennaPorts N1 1 N2 1 XP 1 pusch_AntennaPorts 1 +[GNB_APP] minTXRXTIME 6 +[GNB_APP] SIB1 TDA 1 +[GNB_APP] CSI-RS 1, SRS 1, 256 QAM may be on +[RRC] Read in ServingCellConfigCommon (PhysCellId 0, ABSFREQSSB 641280, DLBand 78, ABSFREQPOINTA 640008, DLBW 106,RACH_TargetReceivedPower -96 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[RRC] absoluteFrequencySSB 641280 corresponds to 3619200000 Hz +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[MAC] [MAIN] Init function start:nb_nr_macrlc_inst=1 +[UTIL] Creating thread MAC_STATS with affinity -1 and priority 2 +[UTIL] threadCreate for MAC_STATS, affinity ffffffff, priority 2 +[PHY] Installing callbacks for IF_Module - UL_indication +[NR_MAC] Configuring common parameters from NR ServingCellConfig +[NR_MAC] DL_Bandwidth:40 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] DL_Bandwidth:40 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_MAC] ssb_OffsetPointA 86, ssb_SubcarrierOffset 0 +[NR_MAC] Set RX antenna number to 1, Set TX antenna number to 1 (num ssb 1: 80000000,0) +[NR_MAC] Setting TDD configuration period to 6 +[NR_MAC] TDD has been properly configurated +[PHY] DL frequency 3619200000 Hz, UL frequency 3619200000 Hz: band 48, uldl offset 0 Hz +[PHY] Configuring MIB for instance 0, : (Nid_cell 0,DL freq 3619200000, UL freq 3619200000) +[PHY] Initializing frame parms for mu 1, N_RB 106, Ncp 0 +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] gNB 0 configured +[NR_MAC] PUSCH Target 150, PUCCH Target 200, PUCCH Failure 10, PUSCH Failure 10 +[GNB_APP] no slices transported via F1 Setup Request! +[NR_RRC] SIB1 freq: offsetToPointA 86 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[GNB_APP] F1AP: gNB idx 0 gNB_DU_id 3584, gNB_DU_name gNB-OAI, TAC 1 MCC/MNC/length 1/1/2 cellID 12345678 +[GNB_APP] ngran_DU: Configuring Cell 0 for TDD +[PHY] create_gNB_tasks() RC.nb_nr_L1_inst:1 +[PHY] l1_north_init_gNB() RC.nb_nr_L1_inst:1 +[PHY] Installing callbacks for IF_Module - UL_indication +[PHY] l1_north_init_gNB() RC.gNB[0] installing callbacks +[GNB_APP] Allocating gNB_RRC_INST for 1 instances +[GNB_APP] SDAP layer is disabled +[GNB_APP] Data Radio Bearer count 1 +[NR_RRC] do_SIB23_NR, size 9 + CMDLINE: "./openairinterface5g/cmake_targets/ran_build/build/nr-softmodem" "-O" "ran-conf/gnb.conf" "--sa" "--rfsim" "-E" "--gNBs.[0].min_rxtxtime" "6" +[CONFIG] get parameters from libconfig ran-conf/gnb.conf [LIBCONFIG] Path for include directive set to: ran-conf +[CONFIG] function config_libconfig_init returned 0 +[CONFIG] config module libconfig loaded +[LIBCONFIG] config: 2/2 parameters successfully set, (2 to default value) +[CONFIG] debug flags: 0x00000000 +[LIBCONFIG] log_config: 3/3 parameters successfully set, (1 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (42 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (50 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +log init done +Reading in command-line options +[LIBCONFIG] (root): 42/42 parameters successfully set, (39 to default value) +[LIBCONFIG] (root): 6/6 parameters successfully set, (5 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value) +[CONFIG] parallel_conf is set to 0 +[CONFIG] worker_conf is set to 1 +Configuration: nb_rrc_inst 1, nb_nr_L1_inst 1, nb_ru 1 +[LIBCONFIG] TTracer: 3/3 parameters successfully set, (3 to default value) +configuring for RAU/RRU +[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] L1s.[0]: 20/20 parameters successfully set, (15 to default value) +Initializing northbound interface for L1 +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] list prs_config not found in config file ran-conf/gnb.conf +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] gNBs.[0].servingCellConfigCommon.[0]: 60/60 parameters successfully set, (9 to default value) +[LIBCONFIG] list gNBs.[0].servingCellConfigDedicated not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +DL frequency 3619200000: band 48, UL frequency 3619200000 +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +NRRRC 0: Southbound Transport local_mac +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[[PDCP] pdcp init,usegtp +[GNB_APP] default drx 0 +[GNB_APP] [gNB 0] gNB_app_register for instance 0 +[UTIL] Creating thread TASK_SCTP with affinity -1 and priority 50 +[UTIL] threadCreate for TASK_SCTP, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_SCTP +[X2AP] X2AP is disabled. +[NGAP] Configuration in the file: demo-oai. +[NGAP] Configuration in the file: 192.168.70.1/24. +[UTIL] Creating thread TASK_NGAP with affinity -1 and priority 50 +[UTIL] threadCreate for TASK_NGAP, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_NGAP +[NGAP] Starting NGAP layer +[UTIL] Creating thread TASK_GNB_APP with affinity -1 and priority 50 +[NGAP] Registered new gNB[0] and macro gNB id 3584 +[NGAP] [gNB 0] check the amf registration state +[UTIL] threadCreate for TASK_GNB_APP, affinity ffffffff, priority 50 +[NGAP] 3584 -> 0000e000 +[NGAP] servedGUAMIs.list.count 1 +[NGAP] PLMNSupportList.list.count 1 +[NGAP] PLMNSupportList.list.count 2 +[ITTI] Created Posix thread TASK_GNB_APP +[UTIL] Creating thread TASK_RRC_GNB with affinity -1 and priority 50 +[GNB_APP] [gNB 0] Received NGAP_REGISTER_GNB_CNF: associated AMF 1 +[UTIL] threadCreate for TASK_RRC_GNB, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_RRC_GNB +[GTPU] Configuring GTPu +[GTPU] SA mode +[GTPU] Configuring GTPu address : 192.168.70.1, port : 2152 +[GTPU] Initializing UDP for local address 192.168.70.1 with port 2152 +[GTPU] Created gtpu instance id: 100 +[NR_RRC] Entering main loop of NR_RRC message task +[NR_RRC] Received F1 Setup Request from gNB_DU 3584 (gNB-OAI) on assoc_id -1 +[RRC] Accepting DU 3584 (gNB-OAI), sending F1 Setup Response +[RRC] DU uses RRC version 17.3.0 +[MAC] received F1 Setup Response from CU (null) +[MAC] CU uses RRC version 17.3.0 +[NR_RRC] Accepting new CU-UP ID 3584 name gNB-OAI (assoc_id -1) +[UTIL] Creating thread TASK_GTPV1_U with affinity -1 and priority 50 +[UTIL] threadCreate for TASK_GTPV1_U, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_GTPV1_U +[PHY] Initializing gNB 0 single_thread_flag:1 +[PHY] Initializing gNB 0 +[PHY] Registering with MAC interface module (before 0x563772be4c60) +[PHY] Installing callbacks for IF_Module - UL_indication +[PHY] Registering with MAC interface module (after 0x563772be4c60) +[PHY] Setting indication lists +[PHY] [nr-gnb.c] gNB structure allocated +[PHY] RU GPIO control set as 'generic' +[PHY] RU clock source set as internal +[PHY] Setting time source to internal +[PHY] number of L1 instances 1, number of RU 1, number of CPU cores 16 +[PHY] Copying frame parms from gNB in RC to gNB 0 in ru 0 and frame_parms in ru +[PHY] Initialized RU proc 0 (,synch_to_ext_device), +[PHY] RU Thread pool size 2 +[PHY] RU thread-pool core string -1,-1 +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +LIBCONFIG] security: 4/4 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] eNBs.[0]: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] gNBs.[0]: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[0]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[1]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].amf_ip_address.[0]: 4/4 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].SCTP: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 10/10 parameters successfully set, (3 to default value) +[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 10/10 parameters successfully set, (3 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[0]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[1]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 10/10 parameters successfully set, (3 to default value) +START MAIN THREADS +RC.nb_nr_L1_inst:1 +Initializing gNB threads single_thread_flag:1 wait_for_sync:0 +wait_gNBs() +Waiting for gNB L1 instances to all get configured ... sleeping 50ms (nb_nr_sL1_inst 1) +gNB L1 are configured +About to Init RU threads RC.nb_RU:1 +Initializing RU threads +configuring RU from file +[LIBCONFIG] RUs.[0]: 43/43 parameters successfully set, (32 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +Set RU mask to 1 +Creating RC.ru[0]:0x563772c34c30 +Setting function for RU 0 to gNodeB_3GPP +[RU 0] Setting nr_flag 0, nr_band 78, nr_scs_for_raster 1 +[RU 0] Setting half-slot parallelization to 1 +configuring ru_id 0 (start_rf 0x56376f792870) +create a thread for core -1 +create a thread for core -1 +[LIBCONFIG] e2_agent: 2/2 parameters successfully set, (0 to default value) +After RCconfig_NR_E2agent /usr/local/lib/flexric/ 127.0.0.1 +[E2 NODE]: mcc = 1 mnc = 1 mnc_digit = 2 nb_id = 3584 +[E2 NODE]: Args 127.0.0.1 /usr/local/lib/flexric/ +[E2 AGENT]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36421, RAN type = ngran_gNB, nb_id = 3584 +[E2 AGENT]: Initializing ... +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: [UTIL] Creating thread ru_thread with affinity -1 and priority 97 +[UTIL] threadCreate for ru_thread, affinity ffffffff, priority 97 +[PHY] Starting RU 0 (,synch_to_ext_device) on cpu 1 +[PHY] Initializing frame parms for mu 1, N_RB 106, Ncp 0 +[PHY] Waiting for RUs to be configured ... RC.ru_mask:01 +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] fp->scs=30000 +[PHY] fp->ofdm_symbol_size=1536 +[PHY] fp->nb_prefix_samples0=132 +[PHY] fp->nb_prefix_samples=108 +[PHY] fp->slots_per_subframe=2 +[PHY] fp->samples_per_subframe_wCP=43008 +[PHY] fp->samples_per_frame_wCP=430080 +[PHY] fp->samples_per_subframe=46080 +[PHY] fp->samples_per_frame=460800 +[PHY] fp->dl_CarrierFreq=3619200000 +[PHY] fp->ul_CarrierFreq=3619200000 +[PHY] Initializing RU signal buffers (if_south local RF) nb_tx 1, nb_rx 1 +[PHY] [INIT] common.txdata[0] = 0x7fae044ad040 (1844480 bytes,sf_extension 320) +[PHY] [INIT] common.txdata[0] = 0x7fae044ad540 +[PHY] nb_tx 1 +[PHY] rxdata_7_5kHz[0] 0x7fae04235040 for RU 0 +[PHY] [INIT] common.txdata_BF= 0x7fade4000ac0 (8 bytes) +[PHY] txdataF_BF[0] 0x7fae04065040 for RU 0 +[PHY] rxdataF[0] 0x7fae04010040 for RU 0 +[PHY] [INIT] nr_phy_init_RU() ru->num_gNB:1 +[PHY] Setting RF config for N_RB 106, NB_RX 1, NB_TX 1 +[PHY] tune_offset 0 Hz, sample_rate 46080000 Hz +[PHY] Channel 0: setting tx_gain offset 12, tx_freq 3619200000 Hz +[PHY] Channel 0: setting rx_gain offset 102, rx_freq 3619200000 Hz +[HW] sample_rate 46080000.000000 +[HW] Running as server waiting opposite rfsimulators to connect +[HW] [RAU] has loaded RFSIMULATOR device. +[PHY] RU 0 Setting N_TA_offset to 600 samples (factor 1.500000, UL Freq 3600120, N_RB 106, mu 1) +[PHY] Signaling main thread that RU 0 is ready, sl_ahead 6 +[PHY] RUs configured +[PHY] init_eNB_afterRU() RC.nb_nr_inst:1 +[PHY] RC.nb_nr_CC[inst:0]:0x7fae0e1e5010 +[PHY] [gNB 0] phy_init_nr_gNB() About to wait for gNB to be configured +[PHY] Initialise nr transport +[PHY] Mapping RX ports from 1 RUs to gNB 0 +[PHY] gNB->num_RU:1 +[PHY] Attaching RU 0 antenna 0 to gNB antenna 0 +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool2_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool2_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool3_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool3_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool4_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool4_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool5_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool5_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool6_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool6_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool7_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool7_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_rx_thread with affinity -1 and priority 97 +[UTIL] threadCreate for L1_rx_thread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_tx_thread with affinity -1 and priority 97 +[UTIL] threadCreate for L1_tx_thread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_stats with affinity -1 and priority 1 +[UTIL] threadCreate for L1_stats, affinity ffffffff, priority 1 +Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[E2-AGENT]: E2 SETUP-REQUEST tx +[E2-AGENT]: E2 SETUP RESPONSE rx +[E2-AGENT]: Transaction ID E2 SETUP-REQUEST 0 E2 SETUP-RESPONSE 0 +wait RUs +[LIBCONFIG] device.recplay: 8/8 parameters successfully set, (8 to default value) +[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value) +[LIBCONFIG] loader.rfsimulator: 2/2 parameters successfully set, (1 to default value) +shlib_path librfsimulator.so +[LOADER] library librfsimulator.so successfully loaded +[LIBCONFIG] rfsimulator: 9/9 parameters successfully set, (4 to default value) +Initializing random number generator, seed 17115619792091930914 +setup_RU_buffers: frame_parms = 0x7fae0c090010 +waiting for sync (ru_thread,-1/0x5637703eb0ac,0x563770c99100,0x563770c990c0) +RC.ru_mask:00 +ALL RUs READY! +RC.nb_RU:1 +ALL RUs ready - init gNBs +Not NFAPI mode - call init_eNB_afterRU() +[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value) +shlib_path libdfts.so +[LOADER] library libdfts.so successfully loaded +[LIBCONFIG] loader.ldpc: 2/2 parameters successfully set, (1 to default value) +shlib_path libldpc.so +[LOADER] library libldpc.so successfully loaded +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +waiting for sync (L1_stats_thread,-1/0x5637703eb0ac,0x563770c99100,0x563770c990c0) +ALL RUs ready - ALL gNBs ready +Sending sync to all threads +got sync (ru_thread) +got sync (L1_stats_thread) +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_default=134217728" to increase RFsim performance +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_max=134217728" to increase RFsim performance +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_default=134217728" to increase RFsim performance +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_max=134217728" to increase RFsim performance +[PHY] RU 0 rf device ready +[PHY] RU 0 RF started opp_enabled 0 +[HW] No connected device, generating void samples... +[NR_MAC] Frame.Slot 128.0 + +[NR_MAC] Frame.Slot 256.0 + +[NR_MAC] Frame.Slot 384.0 + +[NR_MAC] Frame.Slot 512.0 + +[NR_MAC] Frame.Slot 640.0 + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] Add default DL slice id 99, label default, sst 0, sd 0, slice sched algo NVS_CAPACITY, pct_reserved 0.05, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 50 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.47, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] no UE connected +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 50 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.47, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] no UE connected +[NR_MAC] Frame.Slot 768.0 + +[NR_MAC] Frame.Slot 896.0 + +[NR_MAC] Frame.Slot 0.0 + +[NR_MAC] Frame.Slot 128.0 + +[NR_MAC] Frame.Slot 256.0 + +[NR_MAC] Frame.Slot 384.0 + +[NR_MAC] Frame.Slot 512.0 + +[NR_MAC] Frame.Slot 640.0 + +[HW] A client connects, sending the current time +[HW] A client connects, sending the current time +[NR_MAC] Frame.Slot 768.0 + +[NR_PHY] [gNB 0][RAPROC] Frame 807, slot 19 Initiating RA procedure with preamble 11, energy 55.7 dB (I0 0, thres 120), delay 0 start symbol 0 freq index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 807 Activating Msg2 generation in frame 808, slot 7 using RA rnti 10b SSB, new rnti 2421 index 0 RA index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 808, slotP 7: Generating RA-Msg2 DCI, rnti 0x10b, state 1, CoreSetType 0 +[NR_MAC] [RAPROC] Msg3 slot 17: current slot 7 Msg3 frame 808 k2 7 Msg3_tda_id 3 +[NR_MAC] Adding new UE context with RNTI 0x2421 +[NR_MAC] [gNB 0][RAPROC] PUSCH with TC_RNTI 0x2421 received correctly, adding UE MAC Context RNTI 0x2421 +[NR_MAC] [RAPROC] RA-Msg3 received (sdu_lenP 7) +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0x2421 to slice idx 0, sst 0, sd 0 +[RLC] activated srb0 for UE with RNTI 0x2421 +[RLC] Added srb 1 to UE with RNTI 0x2421 +[NR_MAC] Activating scheduling RA-Msg4 for TC_RNTI 0x2421 (state 2) +[NR_MAC] Unexpected ULSCH HARQ PID 0 (have -1) for RNTI 0x2421 (ignore this warning for RA) +[NR_RRC] Decoding CCCH: RNTI 2421, payload_size 6 +[NR_RRC] Created new UE context: CU UE ID 1 DU UE ID 9249 (rnti: 2421, random ue id c6b429980000000) +[RRC] activate SRB 1 of UE 1 +[NR_RRC] rrc_gNB_generate_RRCSetup for RNTI 2421 +[NR_MAC] No CU UE ID stored for UE RNTI 2421, adding CU UE ID 1 +[NR_MAC] UE 2421 Generate msg4: feedback at 809.17, payload 169 bytes, next state WAIT_Msg4_ACK +[NR_MAC] (UE RNTI 0x2421) Received Ack of RA-Msg4. CBRA procedure succeeded! +[NR_RRC] 5g_s_TMSI: 0x123456789ABC, amf_set_id: 0x48 (72), amf_pointer: 0x34 (52), 5g TMSI: 0x56789ABC +[NR_RRC] UE 1 Processing NR_RRCSetupComplete from UE +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 1] UE State = NR_RRC_CONNECTED +[NGAP] UE 1: Chose AMF 'OAI-AMF' (assoc_id 3) through selected PLMN Identity index 0 MCC 1 MNC 1 +[NGAP] FIVEG_S_TMSI_PRESENT +[NR_PHY] [gNB 0][RAPROC] Frame 817, slot 19 Initiating RA procedure with preamble 11, energy 55.7 dB (I0 7, thres 120), delay 0 start symbol 0 freq index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 817 Activating Msg2 generation in frame 818, slot 7 using RA rnti 10b SSB, new rnti c22c index 0 RA index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 818, slotP 7: Generating RA-Msg2 DCI, rnti 0x10b, state 1, CoreSetType 0 +[NR_MAC] [RAPROC] Msg3 slot 17: current slot 7 Msg3 frame 818 k2 7 Msg3_tda_id 3 +[NR_MAC] Adding new UE context with RNTI 0xc22c +[NR_MAC] [gNB 0][RAPROC] PUSCH with TC_RNTI 0xc22c received correctly, adding UE MAC Context RNTI 0xc22c +[NR_MAC] [RAPROC] RA-Msg3 received (sdu_lenP 7) +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0xc22c to slice idx 0, sst 0, sd 0 +[RLC] activated srb0 for UE with RNTI 0xc22c +[RLC] Added srb 1 to UE with RNTI 0xc22c +[NR_MAC] Activating scheduling RA-Msg4 for TC_RNTI 0xc22c (state 2) +[NR_MAC] Unexpected ULSCH HARQ PID 0 (have -1) for RNTI 0xc22c (ignore this warning for RA) +[NR_RRC] Decoding CCCH: RNTI c22c, payload_size 6 +[NR_RRC] Created new UE context: CU UE ID 2 DU UE ID 49708 (rnti: c22c, random ue id 86907ab67f000000) +[RRC] activate SRB 1 of UE 2 +[NR_RRC] rrc_gNB_generate_RRCSetup for RNTI c22c +[NR_MAC] No CU UE ID stored for UE RNTI c22c, adding CU UE ID 2 +[NR_MAC] UE c22c Generate msg4: feedback at 819.17, payload 169 bytes, next state WAIT_Msg4_ACK +[NR_MAC] (UE RNTI 0xc22c) Received Ack of RA-Msg4. CBRA procedure succeeded! +[NR_RRC] 5g_s_TMSI: 0x123456789ABC, amf_set_id: 0x48 (72), amf_pointer: 0x34 (52), 5g TMSI: 0x56789ABC +[NR_RRC] UE 2 Processing NR_RRCSetupComplete from UE +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 2] UE State = NR_RRC_CONNECTED +[NGAP] UE 2: Chose AMF 'OAI-AMF' (assoc_id 3) through selected PLMN Identity index 0 MCC 1 MNC 1 +[NGAP] FIVEG_S_TMSI_PRESENT +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 110) +[NGAP] could not find NGAP_ProtocolIE_ID_id_UEAggregateMaximumBitRate +[NGAP] Initial Context Request, GUAMI mcc 1 mnc 1 mnc_len 2 +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 71) +[NGAP] AllowedNSSAI.list.count 2 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000001 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000005 +[NR_RRC] [gNB 0][UE 1] Selected security algorithms (0x7fae000059ec): ciphering 0, integrity 2 (algorithms changed) +[NR_RRC] [gNB 0][UE 2421] Saved security key BDBAD820D9F85E1B3A3B299A0FE5ED97BC261278ACC4A815A69F9F3140236297 +[NR_RRC] UE 1 Logical Channel DL-DCCH, Generate SecurityModeCommand (bytes 3) +[NR_MAC] Number of DRBs = 0 and SRBs = 0 +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 1] received securityModeComplete on UL-DCCH 1 from UE +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] Searching for nr band 78 DL Carrier frequency 3619200000 bw 40000000 +[NR_RRC] UE 1: Generate RRCReconfiguration (bytes 257, xid 0) +[NR_RRC] UE 1: Receive RRC Reconfiguration Complete message (xid 0) +[NR_RRC] Send message to sctp: NGAP_InitialContextSetupResponse +[NR_RRC] UE 1: Logical Channel DL-DCCH, Generate NR UECapabilityEnquiry (bytes 8, xid 1) +[NR_RRC] UE 1: received UE capabilities (xid 1) +[NR_RRC] Send message to ngap: NGAP_UE_CAPABILITIES_IND +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 110) +[NGAP] could not find NGAP_ProtocolIE_ID_id_UEAggregateMaximumBitRate +[NGAP] Initial Context Request, GUAMI mcc 1 mnc 1 mnc_len 2 +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 71) +[NGAP] AllowedNSSAI.list.count 2 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000001 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000005 +[NR_RRC] [gNB 0][UE 2] Selected security algorithms (0x7fae00006a0c): ciphering 0, integrity 2 (algorithms changed) +[NR_RRC] [gNB 0][UE c22c] Saved security key 1DB969F043944C5E3800AF99A42130D84270C74864E6B2C3CEAAA6472B59619D +[NR_RRC] UE 2 Logical Channel DL-DCCH, Generate SecurityModeCommand (bytes 3) +[NR_MAC] Number of DRBs = 0 and SRBs = 0 +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 2] received securityModeComplete on UL-DCCH 1 from UE +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] Searching for nr band 78 DL Carrier frequency 3619200000 bw 40000000 +[NR_RRC] UE 2: Generate RRCReconfiguration (bytes 257, xid 3) +[NR_RRC] UE 2: Receive RRC Reconfiguration Complete message (xid 3) +[NR_RRC] Send message to sctp: NGAP_InitialContextSetupResponse +[NR_RRC] UE 2: Logical Channel DL-DCCH, Generate NR UECapabilityEnquiry (bytes 8, xid 0) +[NR_RRC] UE 2: received UE capabilities (xid 0) +[NR_RRC] Send message to ngap: NGAP_UE_CAPABILITIES_IND +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (10 meas) +UE 2421: dlsch_rounds 17/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.06259 MCS (0) 9 +UE 2421: ulsch_rounds 26/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.04783 MCS (0) 9 +UE 2421: MAC: TX 2145 RX 1096 bytes +UE 2421: LCID 1: TX 612 RX 233 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (9 meas) +UE c22c: dlsch_rounds 15/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.07814 MCS (0) 9 +UE c22c: ulsch_rounds 25/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.05314 MCS (0) 9 +UE c22c: MAC: TX 1899 RX 980 bytes +UE c22c: LCID 1: TX 612 RX 237 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: dlsch_rounds 22/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.03696 MCS (0) 9 +UE 2421: ulsch_rounds 39/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.01216 MCS (0) 9 +UE 2421: MAC: TX 2365 RX 2604 bytes +UE 2421: LCID 1: TX 612 RX 233 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: dlsch_rounds 28/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.01986 MCS (0) 9 +UE c22c: ulsch_rounds 38/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.01351 MCS (0) 9 +UE c22c: MAC: TX 3340 RX 2488 bytes +UE c22c: LCID 1: TX 612 RX 237 bytes + +[NGAP] PDUSESSIONSetup initiating message +[NGAP] Handle Pdusession Setup Request, nssai ST 1 SD 0x000001 +[NR_RRC] [gNB 0] gNB_ue_ngap_id 1 +[NR_RRC] Adding pdusession 10, total nb of sessions 1 +[NR_RRC] UE 1: configure DRB ID 1 for PDU session ID 10 +[RRC] selecting CU-UP ID 3584 based on exact NSSAI match (1:0x000001) +[RRC] UE 1 associating to CU-UP assoc_id -1 out of 1 CU-UPs +[GTPU] [100] Created tunnel for UE ID 1, teid for incoming: a6fc5dff, teid for outgoing 1 to remote IPv4: 192.168.70.134, IPv6 :: +[PDCP] added drb 1 to UE ID 1 +[SDAP] Default DRB for the created SDAP entity: 1 +[RRC] activate SRB 2 of UE 1 +[RLC] Added srb 2 to UE with RNTI 0x2421 +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0x2421 +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0x2421 +[NR_MAC] UE 2421: received capabilities, updating CellGroupConfig +[NR_RRC] SRS configured with 1 ports +[NR_MAC] Number of DRBs = 1 and SRBs = 1 +[NR_MAC] number of QOS flows mapped to DRB_id 1: 1 +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 2 +[NR_MAC] Setting NSSAI sst: 1, sd: 1 for DRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0x2421 to slice idx 1, sst 1, sd 1 +[E1AP] UE 1: updating PDU session ID 10 (1 bearers) +[RRC] UE 2421 replacing existing CellGroupConfig with new one received from DU +[NR_RRC] UE 1: Generate RRCReconfiguration (bytes 393, xid 1) +[RRC] UE 1: PDU session ID 10 modified 1 bearers +[NR_RRC] UE 1: Receive RRC Reconfiguration Complete message (xid 1) +[NR_RRC] msg index 0, pdu_sessions index 0, status 2, xid 1): nb_of_pdusessions 1, pdusession_id 10, teid: 2801556991 + [NR_RRC] NGAP_PDUSESSION_SETUP_RESP: sending the message +[NGAP] pdusession_setup_resp_p: pdusession ID 10, gnb_addr 192.168.70.1, SIZE 4, TEID 2801556991 +[NGAP] PDUSESSIONSetup initiating message +[NGAP] Handle Pdusession Setup Request, nssai ST 1 SD 0x000005 +[NR_RRC] [gNB 0] gNB_ue_ngap_id 2 +[NR_RRC] Adding pdusession 10, total nb of sessions 1 +[NR_RRC] UE 2: configure DRB ID 1 for PDU session ID 10 +[RRC] second best match: CU-UP ID 3584 matches SST 1 +[RRC] selecting CU-UP ID 3584 based on exact NSSAI match (1:0x000005) +[RRC] UE 2 associating to CU-UP assoc_id -1 out of 1 CU-UPs +[GTPU] [100] Created tunnel for UE ID 2, teid for incoming: 33dfdec0, teid for outgoing 1 to remote IPv4: 192.168.70.143, IPv6 :: +[PDCP] added drb 1 to UE ID 2 +[SDAP] Default DRB for the created SDAP entity: 1 +[RRC] activate SRB 2 of UE 2 +[RLC] Added srb 2 to UE with RNTI 0xc22c +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0xc22c +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0xc22c +[NR_MAC] UE c22c: received capabilities, updating CellGroupConfig +[NR_RRC] SRS configured with 1 ports +[NR_MAC] Number of DRBs = 1 and SRBs = 1 +[NR_MAC] number of QOS flows mapped to DRB_id 1: 1 +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 2 +[NR_MAC] Setting NSSAI sst: 1, sd: 5 for DRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0xc22c to slice idx 2, sst 1, sd 5 +[E1AP] UE 2: updating PDU session ID 10 (1 bearers) +[RRC] UE c22c replacing existing CellGroupConfig with new one received from DU +[NR_RRC] UE 2: Generate RRCReconfiguration (bytes 395, xid 2) +[RRC] UE 2: PDU session ID 10 modified 1 bearers +[NR_RRC] UE 2: Receive RRC Reconfiguration Complete message (xid 2) +[NR_RRC] msg index 0, pdu_sessions index 0, status 2, xid 2): nb_of_pdusessions 1, pdusession_id 10, teid: 870309568 + [NR_RRC] NGAP_PDUSESSION_SETUP_RESP: sending the message +[NGAP] pdusession_setup_resp_p: pdusession ID 10, gnb_addr 192.168.70.1, SIZE 4, TEID 870309568 +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 36/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.01160 MCS (0) 9 +UE 2421: ulsch_rounds 59/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00343 MCS (0) 9 +UE 2421: MAC: TX 4231 RX 4086 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 0 RX 0 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 44/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00561 MCS (0) 9 +UE c22c: ulsch_rounds 60/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00343 MCS (0) 9 +UE c22c: MAC: TX 5069 RX 4004 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 0 RX 0 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 49/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00295 MCS (0) 9 +UE 2421: ulsch_rounds 72/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00087 MCS (0) 9 +UE 2421: MAC: TX 5794 RX 5554 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 0 RX 0 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 58/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00143 MCS (0) 9 +UE c22c: ulsch_rounds 75/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00097 MCS (0) 9 +UE c22c: MAC: TX 6791 RX 5492 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 62/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00083 MCS (0) 9 +UE 2421: ulsch_rounds 90/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00022 MCS (0) 9 +UE 2421: MAC: TX 7381 RX 7182 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3 RX 69 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 71/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00036 MCS (0) 9 +UE c22c: ulsch_rounds 88/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00025 MCS (0) 9 +UE c22c: MAC: TX 8390 RX 7000 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 75/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00021 MCS (0) 9 +UE 2421: ulsch_rounds 103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00006 MCS (0) 9 +UE 2421: MAC: TX 8932 RX 8690 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3 RX 69 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 84/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00009 MCS (0) 9 +UE c22c: ulsch_rounds 101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00006 MCS (0) 9 +UE c22c: MAC: TX 9989 RX 8508 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00005 MCS (0) 12 +UE 2421: ulsch_rounds 160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00002 MCS (0) 12 +UE 2421: MAC: TX 646794 RX 10978 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 634161 RX 892 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00003 MCS (0) 12 +UE c22c: ulsch_rounds 153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00002 MCS (0) 11 +UE c22c: MAC: TX 647559 RX 10859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 633872 RX 820 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00001 MCS (0) 25 +UE 2421: ulsch_rounds 245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00001 MCS (0) 12 +UE 2421: MAC: TX 4016366 RX 13042 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3977147 RX 1021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00001 MCS (0) 25 +UE c22c: ulsch_rounds 237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00001 MCS (0) 12 +UE c22c: MAC: TX 5995423 RX 12889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5967600 RX 1022 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 7147752 RX 15082 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7072028 RX 1150 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 15223898 RX 14833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15174515 RX 1151 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1606 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 10314409 RX 17184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10204037 RX 1343 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 3248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 399/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 24517841 RX 16785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 24446778 RX 1349 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1898 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 3732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 13533001 RX 19224 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13389330 RX 1469 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 4215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 33831546 RX 18729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 33738255 RX 1478 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1762 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1694 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 4569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16720020 RX 21288 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16540537 RX 1598 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 5182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 43164465 RX 20625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 43049411 RX 1607 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 5416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 19928269 RX 23328 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19712056 RX 1727 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 6147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 52461033 RX 22545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 52324295 RX 1733 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 6237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 23117543 RX 25368 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 22866718 RX 1853 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 7116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 61772113 RX 24489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 61613159 RX 1862 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 7091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 26420285 RX 27432 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 26133566 RX 1982 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 8083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 71092168 RX 26385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 70911466 RX 1991 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1857 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 7916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 29616633 RX 29472 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 29293635 RX 2111 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 9048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 80410498 RX 28305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 80208063 RX 2117 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 8759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 32885348 RX 31512 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 32526337 RX 2237 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 10015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 89730361 RX 30249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 89506191 RX 2246 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 9596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 36119971 RX 33576 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 35726445 RX 2366 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 10983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 99037856 RX 32145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 98791470 RX 2375 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1918 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 10442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 39345150 RX 35616 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 38916194 RX 2495 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 11949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 108338009 RX 34065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 108069926 RX 2501 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 11285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 42585666 RX 37712 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 42122213 RX 2693 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 12916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 117664592 RX 36041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 117374756 RX 2699 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 12113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 45832927 RX 39752 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 45334192 RX 2819 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 13884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 126965175 RX 37985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 126653144 RX 2828 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1945 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 12958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 49083192 RX 41816 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 48547668 RX 2948 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 14850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1362/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 136265520 RX 39881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 135931800 RX 2957 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1788 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 13792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 52312500 RX 43856 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 51741868 RX 3077 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 15817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 145598439 RX 41801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 145242955 RX 3083 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 14641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 55564793 RX 45896 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 54957857 RX 3203 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 16784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 154889998 RX 43745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 154512335 RX 3212 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 15483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 58799185 RX 47960 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 58156959 RX 3332 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 17751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 164199559 RX 45641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 163800178 RX 3341 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1932 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 16340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 62055229 RX 50000 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 61376413 RX 3461 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 18718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 173532286 RX 47561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 173111135 RX 3467 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 17169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 65226176 RX 52040 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 64512775 RX 3587 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 19684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 182843687 RX 49505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 182400322 RX 3596 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 18009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 1955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 68612608 RX 54104 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 67863581 RX 3716 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 20651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 192150494 RX 51401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 191685421 RX 3725 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1990 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 18826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 71817255 RX 56144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 71034555 RX 3845 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 21619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 1921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 201466325 RX 53321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 200979521 RX 3851 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1821 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 19660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 75011868 RX 58184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 74193242 RX 3971 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 22585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 210779007 RX 55265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 210270000 RX 3980 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 20515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 78235650 RX 60248 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 77380032 RX 4100 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 23552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 220105206 RX 57161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 219574444 RX 4109 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2068 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 21372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 81753994 RX 62288 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 80863290 RX 4229 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 24519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 229405677 RX 59081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 228853210 RX 4235 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2287 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 22223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 84974477 RX 64328 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 84046998 RX 4355 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 25486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 238706326 RX 61025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 238131664 RX 4364 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1920 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 23055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 88209628 RX 66392 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 87245714 RX 4484 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 26453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 248032717 RX 62921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 247436301 RX 4493 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 23910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 91449400 RX 68432 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 90450318 RX 4613 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 27420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 257333188 RX 64841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 256715070 RX 4619 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 24747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 94673627 RX 70472 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 93640042 RX 4739 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 28387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 266640365 RX 66785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 266000039 RX 4748 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1829 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 25595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 97884971 RX 72536 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 96814911 RX 4868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 29354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 275973476 RX 68681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 275311392 RX 4877 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 26442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 101114265 RX 74632 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 100008648 RX 5066 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 30320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 285272348 RX 70601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 284588557 RX 5003 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2119 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 27307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 104719455 RX 76696 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 103578380 RX 5195 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 31288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 294574404 RX 72545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 293868411 RX 5132 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2640 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 28149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 2982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 107945623 RX 78736 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 106768134 RX 5324 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 32255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 303907323 RX 74441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 303179558 RX 5261 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2328 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2396 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 29025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 111625851 RX 80776 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 110411069 RX 5450 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 33220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 313225845 RX 76361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 312476348 RX 5387 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 29862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 114862639 RX 82840 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 113613175 RX 5579 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 34188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 2964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 322539868 RX 78361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 321768147 RX 5585 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 30702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 118157952 RX 84880 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 116872593 RX 5708 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 35155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 331838674 RX 80305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 331045254 RX 5714 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1917 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2022 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 31546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 121459568 RX 86920 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 120137944 RX 5834 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 36121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 341153356 RX 82201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 340338202 RX 5843 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 32392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 124751316 RX 88984 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 123394438 RX 5963 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 37089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 350480243 RX 84121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 349642844 RX 5969 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 33257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 128024071 RX 91024 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 126630119 RX 6092 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 38056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 359773802 RX 86065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 358914709 RX 6098 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2009 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 34100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 131334197 RX 93064 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 129904332 RX 6218 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 39022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 369080867 RX 87961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 368200061 RX 6227 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1989 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 34945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 134574331 RX 95128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 133108901 RX 6347 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 39990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 378407562 RX 89881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 377504502 RX 6353 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 35806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 137832352 RX 97168 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 136329792 RX 6476 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 40957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 387701505 RX 91825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 386776771 RX 6482 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 36642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 141064343 RX 99208 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 139526991 RX 6602 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 41923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 397014714 RX 93721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 396068261 RX 6611 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 37496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 3920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 144349074 RX 101272 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 142776010 RX 6731 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 42891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 406348129 RX 95641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 405379415 RX 6737 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1925 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 38348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 147608008 RX 103312 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 145999319 RX 6860 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 43856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 415644697 RX 97585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 414654285 RX 6866 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 39198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 151005085 RX 105352 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 149361491 RX 6986 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 44824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 424955281 RX 99481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 423943148 RX 6995 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2536 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 40038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 154361062 RX 107416 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 152683153 RX 7115 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 45792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 3924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 434275832 RX 101401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 433241468 RX 7121 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2070 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 40910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 157798756 RX 109456 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 156083306 RX 7244 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 46757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 443594162 RX 103345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 442538067 RX 7250 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2126 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 41761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 161102929 RX 111496 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 159350134 RX 7370 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 47724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 452914025 RX 105241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 451836192 RX 7379 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 42598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 164385227 RX 113560 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 162597671 RX 7499 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 48692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 462221520 RX 107161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 461121476 RX 7505 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 43442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 167623458 RX 115600 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 165799271 RX 7628 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 49658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 471521673 RX 109105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 470399939 RX 7634 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1817 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 44289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 170918252 RX 117640 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 169058654 RX 7754 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 50625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 480848256 RX 111001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 479704774 RX 7763 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 45131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 174215955 RX 119704 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 172321096 RX 7883 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 51593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 490148839 RX 112921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 488983162 RX 7889 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 45980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 177509870 RX 121744 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 175579037 RX 8012 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 52559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 499449184 RX 114865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 498261807 RX 8018 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2089 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 46826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 180829416 RX 123784 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 178862162 RX 8138 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 53526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 508782103 RX 116761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 507572956 RX 8147 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 47675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 4944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 184132768 RX 125848 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 182128484 RX 8267 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 54493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 518073662 RX 118681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 516842344 RX 8273 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 48525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 187496344 RX 127888 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 185456570 RX 8396 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 55460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 527383223 RX 120625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 526130189 RX 8402 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 49376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 190794154 RX 129928 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 188718957 RX 8522 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 56427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 536715950 RX 122521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 535441147 RX 8531 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2057 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 50207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 194018752 RX 131992 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 191908711 RX 8651 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 57393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 546027351 RX 124441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 544730341 RX 8657 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2107 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 51063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 197375619 RX 134032 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 195228886 RX 8780 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 58360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 4965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 555334158 RX 126385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 554015434 RX 8786 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 51912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 200877591 RX 136072 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 198695809 RX 8906 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 59328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 564649989 RX 128281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 563309531 RX 8915 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2461 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 52775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 204264183 RX 138136 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 202047171 RX 9035 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 60294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 573962671 RX 130201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 572600002 RX 9041 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2177 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 53635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 207602454 RX 140176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 205348045 RX 9164 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 61261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 583288870 RX 132145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 581904445 RX 9170 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2139 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 54497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 210962792 RX 142216 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 208672671 RX 9290 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 62228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 592589341 RX 134041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 591183221 RX 9299 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2113 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 55359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 214314477 RX 144280 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 211988430 RX 9419 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 63195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 601889990 RX 135961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 600461682 RX 9425 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2075 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 56209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 217618156 RX 146320 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 215255268 RX 9548 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 64162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 611216381 RX 137905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 609766316 RX 9554 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 57054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 220881581 RX 148360 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 218483564 RX 9674 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 65129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 620516852 RX 139801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 619045083 RX 9683 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 57907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 5968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 224184391 RX 150424 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 221750337 RX 9803 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 66096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 629824029 RX 141721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 628330054 RX 9809 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 58774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 227491416 RX 152464 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 225021601 RX 9932 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 67063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 639157140 RX 143665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 637641397 RX 9938 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1940 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 59611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 230738274 RX 154504 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 228233580 RX 10058 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 68029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 648456012 RX 145561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 646918571 RX 10067 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 60470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 234376462 RX 156600 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 231835448 RX 10256 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 68997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 657758068 RX 147481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 656198436 RX 10193 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 61319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 237650516 RX 158664 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 235074123 RX 10385 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 69964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 5925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 667090987 RX 149425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 665509587 RX 10322 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1872 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 62166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 240924563 RX 160704 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 238310780 RX 10514 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 70929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 676409509 RX 151321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 674806383 RX 10451 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2110 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 63018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 244282824 RX 162744 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 241632943 RX 10640 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 71897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 685723532 RX 153241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 684098190 RX 10577 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 63876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 247586933 RX 164808 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 244901248 RX 10769 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 72864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 695022338 RX 155185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 693375296 RX 10706 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2016 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 64754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 250977351 RX 166848 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 248252560 RX 10898 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 73830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 704337020 RX 157081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 702668249 RX 10835 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2233 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2059 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 65614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 254306342 RX 168888 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 251544652 RX 11024 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 74797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 713663411 RX 159001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 711972883 RX 10961 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 66471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 257598354 RX 170952 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 254801156 RX 11153 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 75765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 722957466 RX 160977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 721244758 RX 11159 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 67324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 260944598 RX 172992 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 258110997 RX 11282 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 76731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 732264531 RX 162921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 730530119 RX 11288 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 68171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 6993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 264188473 RX 175032 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 261320032 RX 11408 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 77698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 741590730 RX 164817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 739834572 RX 11417 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1825 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2141 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 69034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 267543620 RX 177096 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 264640197 RX 11537 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 78666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 750885169 RX 166737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 749106832 RX 11543 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2186 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 69879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 270858877 RX 179136 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 267918871 RX 11666 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 79632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 760198378 RX 168681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 758398318 RX 11672 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 70728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 274194559 RX 181176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 271219835 RX 11792 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 80599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 769531297 RX 170577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 767709469 RX 11801 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2035 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 71569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 277446279 RX 183240 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 274435734 RX 11921 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 81565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 778828361 RX 172497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 776984356 RX 11927 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 72408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 280688836 RX 185280 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 277642296 RX 12050 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 82533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 6967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 788138945 RX 174441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 786273224 RX 12056 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 73250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 284006059 RX 187320 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 280923944 RX 12176 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 83500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 797459000 RX 176337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 795571538 RX 12185 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2079 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 74128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 287414012 RX 189384 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 284294482 RX 12305 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 84466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 806777826 RX 178257 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 804868134 RX 12311 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2194 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2055 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 74969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 290711151 RX 191424 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 287556889 RX 12434 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 85433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 816097689 RX 180201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 814166257 RX 12440 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2013 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 75834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 294052964 RX 193464 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 290861783 RX 12560 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 86400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 825404688 RX 182097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 823451537 RX 12569 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 76686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 297319590 RX 195528 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 294093559 RX 12689 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 87367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 834705337 RX 184017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 832729987 RX 12695 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2073 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 77546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 7933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 300718741 RX 197568 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 297456757 RX 12818 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 88334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 844031920 RX 185961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 842034827 RX 12824 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2164 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 78395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 304033387 RX 199608 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 300735416 RX 12944 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 89301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 853332007 RX 187857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 851313214 RX 12953 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 79237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 307308309 RX 201672 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 303975508 RX 13073 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 90268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 862632848 RX 189777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 860591862 RX 13079 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 80093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 310579363 RX 203712 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 307209707 RX 13202 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 91235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 871965767 RX 191721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 869903008 RX 13208 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1937 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2027 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 80949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 313878346 RX 205752 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 310473045 RX 13328 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 92201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 881256830 RX 193617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 879172394 RX 13337 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 81807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 317300971 RX 207816 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 313858974 RX 13457 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 93169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 890566887 RX 195537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 888460237 RX 13463 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2207 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 82653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 320576413 RX 209856 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 317099136 RX 13586 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 94136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 7927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 899899614 RX 197481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 897771195 RX 13592 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1951 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 83486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 323876592 RX 211896 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 320364527 RX 13712 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 95101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 909210519 RX 199377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 907060387 RX 13721 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 84341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 327189261 RX 213960 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 323642720 RX 13841 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 96069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 918517822 RX 201297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 916345486 RX 13847 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 85238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 332777839 RX 216000 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 329199290 RX 13970 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 97037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8167/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 927833653 RX 203241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 925639592 RX 13976 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 10467 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 86109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 337275688 RX 218040 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 333660200 RX 14096 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 98002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 937145839 RX 205137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 934930058 RX 14105 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3000 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2563 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 86976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 340869196 RX 220104 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 337217605 RX 14225 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 98970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 946472534 RX 207057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 944234505 RX 14231 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2677 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 87865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 8957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 344404417 RX 222144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 340715745 RX 14354 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 99937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 955773005 RX 209001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 953513273 RX 14360 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2312 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 88742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 347911161 RX 224184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 344187149 RX 14480 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 100903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 965073158 RX 210897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 962791726 RX 14489 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2387 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 89608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 351325162 RX 226248 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 347565117 RX 14609 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 101871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 974400045 RX 212817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 972096361 RX 14615 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2252 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2331 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 90503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 354813346 RX 228288 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 351015763 RX 14738 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 102838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 983700516 RX 214761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 981375134 RX 14744 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2589 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 91379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 358351117 RX 230328 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 354516767 RX 14864 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 103804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 993007197 RX 216657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 990660108 RX 14873 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2438 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 92267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 361883661 RX 232392 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 358013370 RX 14993 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 104772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1002340804 RX 218577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 999971466 RX 14999 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2285 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2187 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 93124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 365240169 RX 234432 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 361333595 RX 15122 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 105738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8887/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1011639676 RX 220521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1009248645 RX 15128 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2115 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 93976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 368619437 RX 236472 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 364677507 RX 15248 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 106705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 8967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1020941236 RX 222417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1018528495 RX 15257 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 94849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 372014408 RX 238536 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 368036274 RX 15377 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 107673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1030274651 RX 224337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1027839649 RX 15383 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2269 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 95702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 375512299 RX 240576 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 371498295 RX 15506 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 108638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1039593173 RX 226281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1037136439 RX 15512 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2468 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2501 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 96584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 379031129 RX 242616 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 374980524 RX 15632 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 109605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1048906700 RX 228177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1046428238 RX 15641 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 97436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 382400417 RX 244680 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 378315529 RX 15761 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 110573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1058206002 RX 230097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1055705349 RX 15767 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2135 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 98293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 9981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 385723898 RX 246720 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 381601628 RX 15890 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 111539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1067520684 RX 232041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1064998304 RX 15896 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2199 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 98932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 2421: ulsch_rounds 10069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 388282333 RX 249481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 384128064 RX 16894 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 112506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1076847075 RX 234025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1074302937 RX 16099 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1951 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 98945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 2421: ulsch_rounds 10082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 388286080 RX 250989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 384128064 RX 16894 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 113445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 1085855541 RX 236025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1083289801 RX 16376 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 99495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: ulsch_rounds 10157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 389888637 RX 253446 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 385724156 RX 17754 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 113892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1087528597 RX 239476 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1084934572 RX 18189 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 100473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 396420687 RX 255486 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 392240065 RX 17883 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 114732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1090833403 RX 241420 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1088205225 RX 18318 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2170 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 101451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 405609909 RX 257526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 401407778 RX 18009 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 115582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1094080761 RX 243316 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1091417570 RX 18447 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2073 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 102431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 414796088 RX 259590 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 410571476 RX 18138 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 116413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1097369784 RX 245236 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1094672407 RX 18573 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 103409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 423956636 RX 261630 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 419710573 RX 18267 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 117245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 9942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1100675878 RX 247180 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1097943551 RX 18702 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 104388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 433126016 RX 263670 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 428858484 RX 18393 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 118057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1103932071 RX 249076 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1101164312 RX 18831 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 105367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 442319700 RX 265734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 438030159 RX 18522 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 118881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1107170262 RX 250996 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1104368761 RX 18957 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1958 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 106345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 451492393 RX 267774 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 447180895 RX 18651 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 119705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1110429304 RX 252940 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1107593467 RX 19086 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2179 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 107324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 460652875 RX 269814 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 456319915 RX 18777 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 120532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1113706588 RX 254836 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1110836408 RX 19215 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2333 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 108303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 10925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 469833476 RX 271878 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 465478567 RX 18906 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 121374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1117165197 RX 256756 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1114259327 RX 19341 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2110 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 109282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 479016447 RX 273918 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 474639584 RX 19035 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 122201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1120401321 RX 258700 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1117460812 RX 19470 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1892 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 110260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 488201826 RX 275958 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 483803457 RX 19161 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 123023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1123636597 RX 260596 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1120662262 RX 19599 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 111239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 497375734 RX 278022 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 492955398 RX 19290 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 123841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1126890401 RX 262516 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1123882477 RX 19725 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2006 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 112217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 506548427 RX 280062 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 502106126 RX 19419 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 124662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1130103644 RX 264460 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1127060791 RX 19854 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1899 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 113196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 515744303 RX 282102 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 511280480 RX 19545 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 125500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1133374625 RX 266356 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1130296327 RX 19983 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1755 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 114175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 524911683 RX 284166 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 520425903 RX 19674 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 126311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1136551652 RX 268276 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1133439989 RX 20109 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 115154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 534087064 RX 286206 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 529579311 RX 19803 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 127140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1139772628 RX 270220 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1136626624 RX 20238 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 116132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 543286588 RX 288246 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 538757316 RX 19929 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 127965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 10982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1143000495 RX 272116 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1139820213 RX 20367 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1919 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 117111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 552447632 RX 290310 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 547896417 RX 20058 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 128794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1146231943 RX 274036 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1143017227 RX 20493 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 118091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 561609891 RX 292350 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 557036726 RX 20187 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 129634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1149537166 RX 275980 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1146287325 RX 20622 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 119069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 570796359 RX 294390 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 566201694 RX 20313 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 130462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1152777471 RX 277876 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1149493261 RX 20751 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2009 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2100 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 120046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 11949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 579973057 RX 296454 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 575356457 RX 20442 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 131298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1156116980 RX 279796 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1152798471 RX 20877 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1974 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 121027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 589150841 RX 298494 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 584512285 RX 20571 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 132123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1159378888 RX 281740 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1156026146 RX 21006 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 122005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 598324445 RX 300534 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 593664413 RX 20697 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 132973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1162853288 RX 283636 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1159465262 RX 21135 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 122983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 607497138 RX 302598 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 602815137 RX 20826 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 133806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1166149811 RX 285556 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1162727459 RX 21261 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1995 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 123963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 616693318 RX 304638 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 611989300 RX 20955 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 134643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1169402578 RX 287500 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1165945241 RX 21390 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2005 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 124941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 625866922 RX 306736 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 621141425 RX 21153 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 135466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1172702131 RX 289396 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1169210462 RX 21519 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2174 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 125919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 635039423 RX 308776 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 630291958 RX 21279 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 136312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1176016795 RX 291316 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1172489041 RX 21645 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 126898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 644225298 RX 310840 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 639455837 RX 21408 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 137135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1179271167 RX 293260 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1175709742 RX 21774 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1960 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 127876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 653392182 RX 312880 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 648601256 RX 21537 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 137969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 11942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1182571957 RX 295156 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1178976470 RX 21903 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2084 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 128856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 662563531 RX 314920 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 657750639 RX 21663 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 138803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1185812001 RX 297076 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1182180899 RX 22029 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2165 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 129835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 671763743 RX 316984 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 666928833 RX 21792 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 139651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1189285778 RX 299020 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1185619559 RX 22158 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2324 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 130812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 680921603 RX 319024 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 676065251 RX 21921 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 140482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1192862648 RX 300916 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1189163496 RX 22287 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1969 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 131793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 12974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 690093051 RX 321064 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 685214763 RX 22047 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 141311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1196110254 RX 302836 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1192376787 RX 22413 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 132772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 699273460 RX 323128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 694373222 RX 22176 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 142124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1199511589 RX 304780 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1195744306 RX 22542 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2193 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 133749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 708459994 RX 325168 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 703538267 RX 22305 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 142946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1202727156 RX 306676 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1198925013 RX 22671 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1908 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 134728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 717631532 RX 327208 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 712687837 RX 22431 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 143761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1205919450 RX 308596 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1202083480 RX 22797 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 135707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 726805440 RX 329272 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 721839780 RX 22560 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 144591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1209177266 RX 310540 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1205305678 RX 22926 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 136685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 735988326 RX 331312 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 731001177 RX 22689 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 145421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1212431784 RX 312436 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1208524937 RX 23055 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2075 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 137664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 745167289 RX 333352 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 740158159 RX 22815 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 146254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1215713247 RX 314356 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1211771848 RX 23181 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 138643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 754341389 RX 335416 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 749310291 RX 22944 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 147075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1218879853 RX 316300 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1214904170 RX 23310 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 139621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 763530611 RX 337456 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 758478003 RX 23073 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 147896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1222161748 RX 318196 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1218151582 RX 23439 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2054 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 140600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 772716294 RX 339496 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 767641694 RX 23199 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 148728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 12981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1225443807 RX 320116 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1221399009 RX 23565 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1953 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 141579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 781877338 RX 341560 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 776780796 RX 23328 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 149546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1228664406 RX 322060 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1224587161 RX 23694 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 142558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 791046718 RX 343600 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 785928700 RX 23457 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 150374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1231929333 RX 323956 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1227816809 RX 23823 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2001 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 143536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 13998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 800239906 RX 345640 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 795100373 RX 23583 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 151213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1235196449 RX 325946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1231048963 RX 24013 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2029 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 144515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 809413041 RX 347704 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 804251103 RX 23712 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 152039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1238419509 RX 327890 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1234238642 RX 24142 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1838 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3246 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 145494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 818573523 RX 349744 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 813390128 RX 23841 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 152882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1242139511 RX 329786 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1237923800 RX 24271 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2139 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 146472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 827753655 RX 351784 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 822548775 RX 23967 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 153717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1245513343 RX 331706 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1241263201 RX 24397 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 147452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 836937149 RX 353848 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 831709792 RX 24096 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 154546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1248703381 RX 333650 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1244418744 RX 24526 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1945 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 148430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 846122528 RX 355888 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 840873675 RX 24225 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 155374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1252043344 RX 335546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1247723914 RX 24655 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2126 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 149408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 855295940 RX 357928 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 850025616 RX 24351 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 156213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1255371372 RX 337466 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1251016782 RX 24781 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 150387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 864469129 RX 359992 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 859176344 RX 24480 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 157045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1258602399 RX 339410 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1254214332 RX 24910 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 151366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 873665005 RX 362032 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 868350698 RX 24609 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 157863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1261861899 RX 341306 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1257439013 RX 25039 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1949 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 152344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 882831889 RX 364072 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 877496126 RX 24735 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 158703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 13943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1265097345 RX 343226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1260639492 RX 25165 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 153324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 892007766 RX 366136 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 886649538 RX 24864 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 159545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1268399621 RX 345170 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1263906200 RX 25294 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2073 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 154302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 14938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 901207290 RX 368176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 895827534 RX 24993 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 160381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1271680274 RX 347066 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1267153632 RX 25423 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2001 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 155280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 910367838 RX 370216 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 904966631 RX 25119 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 161218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1274916489 RX 348986 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1270355107 RX 25549 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 156261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 919530539 RX 372280 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 914106939 RX 25248 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 162042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1278163457 RX 350930 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1273568368 RX 25678 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 157239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 928717007 RX 374320 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 923271905 RX 25377 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 162871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1281405898 RX 352826 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1276777228 RX 25807 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2023 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 158215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 937893236 RX 376360 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 932426667 RX 25503 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 163709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1284661854 RX 354746 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1279997979 RX 25933 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2049 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2636 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 159197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 947071543 RX 378424 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 941582497 RX 25632 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 164566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1288346632 RX 356690 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1283648094 RX 26062 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2404 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 160175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 956245147 RX 380464 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 950734623 RX 25761 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 165388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1291628258 RX 358586 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1286896032 RX 26191 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2093 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 161152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 965417344 RX 382504 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 959885350 RX 25887 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 166229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1294908020 RX 360506 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1290141957 RX 26317 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2004 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 162133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 974614020 RX 384568 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 969059513 RX 26016 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 167057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1298159362 RX 362450 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1293359238 RX 26446 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 163111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 983787624 RX 386608 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 978211643 RX 26145 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 167888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1301444591 RX 364346 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1296610125 RX 26575 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 164088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 992959629 RX 388648 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 987362168 RX 26271 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 168720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1304661670 RX 366266 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1299792339 RX 26701 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2092 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 165068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1002146000 RX 390712 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 996526052 RX 26400 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 169555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 14984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1307948330 RX 368210 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1303044122 RX 26830 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1896 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2111 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 166046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 15962/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1011312884 RX 392752 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1005671468 RX 26529 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 170393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1311233598 RX 370106 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1306294548 RX 26959 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1951 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 167025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1020483737 RX 394792 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1014820847 RX 26655 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 171217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1314500859 RX 372026 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1309527175 RX 27085 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 168004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1029683922 RX 396856 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1023999043 RX 26784 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 172063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1317970826 RX 373970 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1312961399 RX 27214 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2496 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 168982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1038842251 RX 398896 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1033135466 RX 26913 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 172897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1321210166 RX 375866 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1316167305 RX 27343 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1938 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 169962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1048013230 RX 400936 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1042284970 RX 27039 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 173718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1324392205 RX 377786 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1319315393 RX 27469 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 170941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1057193666 RX 403000 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1051443423 RX 27168 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 174550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1327647603 RX 379730 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1322536174 RX 27598 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2486 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 171919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16474/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1066380696 RX 405040 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1060608461 RX 27297 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 175384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1331071213 RX 381626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1325924356 RX 27727 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1970 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 172897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1075551738 RX 407080 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1069758040 RX 27423 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 176222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1334381232 RX 383546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1329199961 RX 27853 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2089 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 173876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1084725646 RX 409144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1078909974 RX 27552 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 177027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1337614551 RX 385490 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1332399969 RX 27982 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 174855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1093909028 RX 411184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1088071365 RX 27681 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 177855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1340883872 RX 387386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1335635495 RX 28111 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 175833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1103087495 RX 413224 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1097228344 RX 27807 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 178698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1344135280 RX 389306 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1338851796 RX 28237 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1984 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 176812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1112261595 RX 415288 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1106380472 RX 27936 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 179526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 15944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1347380804 RX 391250 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1342062127 RX 28366 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 177791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 16986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1121451313 RX 417328 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1115548193 RX 28065 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 180352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1350573420 RX 393146 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1345220664 RX 28495 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 178769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1130636500 RX 419368 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1124711884 RX 28191 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 181175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1353807903 RX 395066 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1348422124 RX 28621 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1920 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 179748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1139797517 RX 421432 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1133850986 RX 28320 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 182003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1357047855 RX 397010 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1351627549 RX 28750 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2212 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 180728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1148967366 RX 423472 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1142998892 RX 28449 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 182849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1360639884 RX 398906 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1355185225 RX 28879 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2568 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 181706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1158160554 RX 425512 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1152170560 RX 28575 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 183695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1363910583 RX 400826 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1358420831 RX 29005 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2050 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 182684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1167333247 RX 427576 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1161321288 RX 28704 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 184519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1367195893 RX 402770 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1361672213 RX 29134 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2033 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 183664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1176494225 RX 429616 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1170460313 RX 28833 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 185349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1370446458 RX 404666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1364888959 RX 29263 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2241 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 184642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1185674357 RX 431656 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1179618960 RX 28959 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 186184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1373816861 RX 406586 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1368224840 RX 29389 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2000 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 185621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1194857355 RX 433720 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1188779976 RX 29088 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 187026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1377108251 RX 408530 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1371480173 RX 29518 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2192 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 186600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1204043230 RX 435760 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1197943853 RX 29217 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 187861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1380364377 RX 410426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1374700949 RX 29647 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2018 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 187578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1213216642 RX 437800 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1207095796 RX 29343 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 188680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1383614674 RX 412346 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1377917254 RX 29773 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1961 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 188556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 17924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1222389335 RX 439864 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1216246521 RX 29472 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 189503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1386891684 RX 414290 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1381160235 RX 29902 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1974 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 189536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1231585707 RX 441904 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1225420878 RX 29601 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 190351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 16984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1390180922 RX 416186 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1384415047 RX 30031 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2059 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 190514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1240752591 RX 443944 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1234566306 RX 29727 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 191172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1393445742 RX 418106 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1387647153 RX 30157 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 191493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1249927945 RX 446008 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1243719713 RX 29856 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 192002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1396741756 RX 420050 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1390906947 RX 30286 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 192472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1259127938 RX 448048 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1252897712 RX 29985 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 192850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1399972092 RX 421946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1394100947 RX 30415 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 193450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1268288486 RX 450088 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1262036812 RX 30111 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 193688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1403203837 RX 423866 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1397297986 RX 30541 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1900 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2038 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 194430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1277450745 RX 452152 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1271177117 RX 30240 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 194527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1406488997 RX 425810 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1400548372 RX 30670 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 195409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1286637709 RX 454192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1280342086 RX 30369 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 195361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1409771761 RX 427706 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1403795819 RX 30799 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 196385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1295813938 RX 456232 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1289496837 RX 30495 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 196201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1412988873 RX 429626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1406978043 RX 30925 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2046 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2207 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 197366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1304991749 RX 458296 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1298652662 RX 30624 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 197039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1416351640 RX 431570 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1410305463 RX 31054 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2018 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 198345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1314165849 RX 460336 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1307804800 RX 30753 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 197886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1419634129 RX 433466 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1413552900 RX 31183 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 199322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1323338046 RX 462376 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1316955526 RX 30879 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 198705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1422822494 RX 435386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1416708453 RX 31309 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 200302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 18948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1332534226 RX 464440 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1326129688 RX 31008 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 199537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1426068670 RX 437330 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1419921323 RX 31438 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2072 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 201281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19034/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1341708326 RX 466480 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1335281821 RX 31137 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 200375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 17944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1429685804 RX 439226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1423502761 RX 31567 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1954 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 202258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1350880331 RX 468520 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1344432360 RX 31263 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 201215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1432950159 RX 441146 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1426730927 RX 31693 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 203237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1360066179 RX 470584 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1353596242 RX 31392 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 202053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1436178359 RX 443090 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1429924451 RX 31822 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 204216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1369233532 RX 472624 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1362741667 RX 31521 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 202885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1439419038 RX 444986 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1433129346 RX 31951 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1993 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 205195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1378404385 RX 474664 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1371891045 RX 31647 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 203732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1442720952 RX 446906 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1436396039 RX 32077 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 206174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1387604597 RX 476728 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1381069233 RX 31776 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 204554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1445979212 RX 448850 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1439620770 RX 32206 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2148 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 207152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1396762953 RX 478768 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1390205659 RX 31905 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 205382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1449295345 RX 450746 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1442902243 RX 32335 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2101 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2005 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 208132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1405933932 RX 480808 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1399355160 RX 32031 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 206206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1452566634 RX 452666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1446139727 RX 32461 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1960 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 209110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1415113872 RX 482872 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1408513612 RX 32160 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 207039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1455816624 RX 454610 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1449354560 RX 32590 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 210089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1424301398 RX 484912 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1417678648 RX 32289 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 207854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1459128848 RX 456506 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1452633074 RX 32719 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2185 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 211067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1433472440 RX 486952 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1426828225 RX 32415 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 208691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1462448627 RX 458426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1455919023 RX 32845 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2017 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 212045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 19972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1442645852 RX 489016 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1435980166 RX 32544 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 209523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1465725784 RX 460370 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1459162034 RX 32974 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 213025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1451829730 RX 491056 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1445141562 RX 32673 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 210389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1469404438 RX 462266 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1462805160 RX 33103 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 214003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1461008197 RX 493096 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1454298543 RX 32799 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 211212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 18983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 1472653988 RX 464186 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1466021425 RX 33229 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 214981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 1470181801 RX 495310 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1463450663 RX 33079 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 211576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE c22c: ulsch_rounds 19047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 1473999949 RX 466790 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1467347267 RX 34179 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 967 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 215709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 2421: ulsch_rounds 20317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 1476923680 RX 498027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1470172557 RX 33963 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 211589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: ulsch_rounds 19060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 1474002924 RX 468268 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1467347267 RX 34179 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 216353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1479453357 RX 501043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1472669199 RX 35101 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 212310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 19 +UE c22c: ulsch_rounds 19146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1476622645 RX 470785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1469958631 RX 35063 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 217205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1482769670 RX 503107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1475950807 RX 35230 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 213278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1484515719 RX 472753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1477832377 RX 35192 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2319 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2163 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 218074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1486169951 RX 505123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1479313464 RX 35356 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 214243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1493812287 RX 474649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1487107260 RX 35321 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2213 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 218947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1489554224 RX 507187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1482660841 RX 35485 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 215211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1503122871 RX 476569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1496396126 RX 35447 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2012 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 219815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1492922840 RX 509251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1485992837 RX 35614 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 216179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1512443422 RX 478513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1505694435 RX 35576 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2235 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 220700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1496346754 RX 511267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1489379687 RX 35740 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 217144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1521761752 RX 480409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1514991033 RX 35705 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2288 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2209 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 221592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 20928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1499741704 RX 513331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1492736917 RX 35869 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 218111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1531081615 RX 482329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1524289151 RX 35831 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2213 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 222452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1503113521 RX 515395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1496073329 RX 35998 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 219079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1540389110 RX 484273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1533574446 RX 35960 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 223321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1506439648 RX 517411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1499362397 RX 36124 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 220045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1549689263 RX 486169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1542852899 RX 36089 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2045 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 224187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1509789444 RX 519475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1502676614 RX 36253 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 221012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1559015846 RX 488089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1552157722 RX 36215 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2162 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 225055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1513129182 RX 521539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1505980477 RX 36382 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 221980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 19947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1568316429 RX 490033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1561436110 RX 36344 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2166 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 225941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1516563855 RX 523555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1509377756 RX 36508 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 222946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1577616774 RX 491929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1570714761 RX 36473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 226827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1520111863 RX 525619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1512889114 RX 36637 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 223913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1586949693 RX 493849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1580025916 RX 36599 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2717 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2258 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 227698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1523527023 RX 527683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1516268564 RX 36766 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 224880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1596241252 RX 495793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1589295305 RX 36728 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2229 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 228569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1526918503 RX 529699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1519622890 RX 36892 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 225847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1605550813 RX 497689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1598583146 RX 36857 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 229444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1530332810 RX 531763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1523000813 RX 37021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 226814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1614883540 RX 499609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1607894108 RX 36983 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2239 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 230324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1533712960 RX 533827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1526344229 RX 37150 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 227780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1624194941 RX 501553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1617183301 RX 37112 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2157 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 231201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1537392668 RX 535843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1529987605 RX 37276 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 228747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1633501748 RX 503449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1626468399 RX 37241 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2250 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 232070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 21952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1540769889 RX 537907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1533327552 RX 37405 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 229715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1642817579 RX 505369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1635762494 RX 37367 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2245 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 232975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1544412575 RX 539971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1536932361 RX 37534 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 230681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1652130261 RX 507313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1645052966 RX 37496 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3011 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 233831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1547822691 RX 541987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1540305878 RX 37660 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 231648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1661456460 RX 509209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1654357409 RX 37625 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 234693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1551146502 RX 544051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1543591997 RX 37789 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 232615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1670756931 RX 511129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1663636180 RX 37751 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1910 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 235563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1554476937 RX 546115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1546885501 RX 37918 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 233582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1680057580 RX 513073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1672914637 RX 37880 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 236443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1557802340 RX 548131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1550174594 RX 38044 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 234549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 20987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1689383971 RX 514969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1682219275 RX 38009 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1952 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 237307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1561136646 RX 550195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1553472534 RX 38173 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 235516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1698684442 RX 516889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1691498047 RX 38135 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2198 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 238186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1564546526 RX 552259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1556846081 RX 38302 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 236483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1707991619 RX 518833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1700783022 RX 38264 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2156 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 239047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1567904739 RX 554275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1560167788 RX 38428 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 237450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1717324730 RX 520729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1710094375 RX 38393 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2145 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2411 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 239943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1571412537 RX 556339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1563637214 RX 38557 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 238416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1726623602 RX 522649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1719371564 RX 38519 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 240807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1574771125 RX 558403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1566960859 RX 38686 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 239384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1735925658 RX 524593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1728651414 RX 38648 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2076 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 241660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1578082106 RX 560419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1570235062 RX 38812 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 240351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1745258577 RX 526489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1737962573 RX 38777 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2152 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 242522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 22976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1581446633 RX 562483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1573563688 RX 38941 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 241316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1754577099 RX 528409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1747259368 RX 38903 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2094 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3239 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 243409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1585242016 RX 564547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1577321639 RX 39070 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 242284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1763891122 RX 530353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1756551165 RX 39032 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2111 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 244258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1588662862 RX 566563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1580707052 RX 39196 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 243251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1773189928 RX 532249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1765828282 RX 39161 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2421 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 245127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1592067504 RX 568627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1584074626 RX 39325 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 244217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1782504610 RX 534169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1775121242 RX 39287 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2030 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 245995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1595434889 RX 570691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1587406642 RX 39454 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 245184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1791831001 RX 536113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1784425884 RX 39416 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2192 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2134 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 246873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1598823362 RX 572707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1590757939 RX 39580 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 246152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 21947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1801125056 RX 538009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1793697757 RX 39545 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2249 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 247735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1602198960 RX 574771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1594097345 RX 39709 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 247118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1810432121 RX 539929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1802983107 RX 39671 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2175 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 248615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1605621403 RX 576835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1597482788 RX 39838 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 248085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1819758320 RX 541873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1812287556 RX 39800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2065 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2223 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 249486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1608989460 RX 578851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1600814779 RX 39964 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 249053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1829052759 RX 543769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1821559816 RX 39929 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2207 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 250361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1612414297 RX 580915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1604203131 RX 40093 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 250019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1838365968 RX 545689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1830851297 RX 40055 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2228 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 251225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1615782137 RX 582979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1607535132 RX 40222 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 250986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1847698887 RX 547633 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1840162452 RX 40184 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 252107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 23915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1619173868 RX 584995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1610890449 RX 40348 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 251952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1856995951 RX 549529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1849437338 RX 40313 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2195 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2255 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 252983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1622596850 RX 587059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1614276348 RX 40477 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 252920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1866306535 RX 551449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1858726194 RX 40439 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2023 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 253838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1625899778 RX 589123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1617543141 RX 40606 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 253887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1875626590 RX 553393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1868024505 RX 40568 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 254703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1629290409 RX 591139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1620897337 RX 40732 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 254853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1884945416 RX 555289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1877321108 RX 40697 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2268 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2409 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 255573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1632774683 RX 593203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1624345014 RX 40861 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 255820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1894265279 RX 557209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1886619236 RX 40823 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2304 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 256441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1636240072 RX 595243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1627773365 RX 40990 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 256787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1903572278 RX 559153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1895904521 RX 40952 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2314 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 257340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1639673605 RX 597283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1631170639 RX 41116 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 257754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1912872927 RX 561049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1905182988 RX 41081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 258201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1643050502 RX 599347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1634510060 RX 41245 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 258721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 22986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1922199510 RX 562969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1914487807 RX 41207 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2144 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2241 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 259070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1646424293 RX 601387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1637846587 RX 41374 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 259688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1931499597 RX 564913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1923766191 RX 41336 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2448 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 259964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1649939318 RX 603427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1641323829 RX 41500 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 260655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1940800438 RX 566809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1933044841 RX 41465 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2199 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 260832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1653351633 RX 605491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1644698843 RX 41629 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 261622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1950133357 RX 568729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1942355992 RX 41591 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2177 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 261703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1656675409 RX 607531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1647986414 RX 41758 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 262588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1959424420 RX 570673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1951625381 RX 41720 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2028 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2283 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 262596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 24938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1660106840 RX 609571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1651380729 RX 41884 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 263556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1968734477 RX 572569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1960913225 RX 41849 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2161 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 263456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1663486819 RX 611635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1654724701 RX 42013 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 264523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1978067204 RX 574489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1970224182 RX 41975 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2257 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 264345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1666904910 RX 613675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1658105638 RX 42142 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 265488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1987378109 RX 576433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1979513378 RX 42104 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2201 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2067 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 265212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1670261488 RX 615715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1661425803 RX 42268 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 266456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 1996685412 RX 578329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1988798476 RX 42233 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2239 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 266099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1673715760 RX 617779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1664842218 RX 42397 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 267424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2006001243 RX 580249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 1998092570 RX 42359 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2411 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 266961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1677286551 RX 619819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1668377368 RX 42526 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 268389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2015313429 RX 582193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2007383035 RX 42488 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2567 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 267837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1680700258 RX 621859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1671755361 RX 42652 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 269357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2024640124 RX 584089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2016687482 RX 42617 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2231 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2042 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 268693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1684049212 RX 623923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1675068171 RX 42781 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 270324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 23946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2033940595 RX 586009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2025966246 RX 42743 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 269578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1687435317 RX 625963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1678416504 RX 42910 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 271290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2043240748 RX 587953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2035244698 RX 42872 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2314 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 270444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1690850755 RX 628003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1681797426 RX 43036 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 272258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2052567635 RX 589849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2044549346 RX 43001 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2231 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 271344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1694586575 RX 630139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1685494117 RX 43229 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 273225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2061868106 RX 591769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2053828117 RX 43127 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2561 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 272220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1698013644 RX 632203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1688883981 RX 43358 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 274191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2071174787 RX 593713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2063113091 RX 43256 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 273079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 25965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1701342847 RX 634219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1692177420 RX 43484 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 275159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2080508394 RX 595609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2072424442 RX 43385 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2151 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 273952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1704691961 RX 636283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1695489689 RX 43613 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 276125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2089807266 RX 597529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2081701621 RX 43511 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2060 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2163 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 274821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1708421303 RX 638347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1699182442 RX 43742 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 277092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2099108826 RX 599473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2090981485 RX 43640 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3147 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 275687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1711751531 RX 640363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1702477453 RX 43868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 278060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2108442241 RX 601369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2100292634 RX 43769 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 276543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1715056286 RX 642427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1705746744 RX 43997 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 279025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2117760763 RX 603289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2109589423 RX 43895 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2120 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2231 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 277418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1718470651 RX 644491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1709124697 RX 44126 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 279992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2127074290 RX 605233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2118881221 RX 44024 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2494 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 278310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1722143648 RX 646507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1712760553 RX 44252 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 280960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2136373592 RX 607129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2128158326 RX 44153 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2569 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 279191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1725547275 RX 648571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1716127161 RX 44381 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 281926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2145688274 RX 609049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2137451285 RX 44279 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2242 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 280067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1728976245 RX 650635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1719519964 RX 44510 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 282893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 24987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2155014665 RX 610993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2146755925 RX 44408 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2310 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 280935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1732413405 RX 652651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1722921669 RX 44636 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 283861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2164308720 RX 612889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2156027802 RX 44537 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 281811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1735979562 RX 654715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1726449379 RX 44765 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 284827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2173615785 RX 614809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2165313145 RX 44663 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2215 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 282681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1739381206 RX 656779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1729815441 RX 44894 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 285794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2182941984 RX 616753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2174617590 RX 44792 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2274 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 283558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 26989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1742768674 RX 658795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1733166728 RX 45020 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 286762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2192236423 RX 618649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2183889852 RX 44921 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2129 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2143 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 284422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1746148762 RX 660859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1736509128 RX 45149 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 287728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2201549632 RX 620569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2193181332 RX 45047 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2256 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 285286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1749552360 RX 662923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1739876662 RX 45278 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 288695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2210882551 RX 622513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2202492488 RX 45176 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 286145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1752904436 RX 664939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1743193372 RX 45404 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 289661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2220179615 RX 624409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2211767373 RX 45305 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2169 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 286999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1756235705 RX 667003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1746487312 RX 45533 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 290629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2229490199 RX 626329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2221056237 RX 45431 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 287873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1759591489 RX 669067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1749805975 RX 45662 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 291596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2238810254 RX 628273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2230354557 RX 45560 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2179 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 288739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1763028151 RX 671083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1753207695 RX 45788 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 292562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2248129080 RX 630169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2239651164 RX 45689 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2652 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 289604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1766558844 RX 673147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1756701299 RX 45917 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 293529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2257448943 RX 632089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2248949279 RX 45815 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2184 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2259 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 290485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1769987723 RX 675211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1760093611 RX 46046 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 294496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 25947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2266755942 RX 634033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2258234560 RX 45944 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2643 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 291363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1773616890 RX 677227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1763686990 RX 46172 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 295463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2276056591 RX 635929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2267513012 RX 46073 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2456 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 292247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1777017636 RX 679291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1767050163 RX 46301 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 296430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2285383174 RX 637849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2276817847 RX 46199 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2010 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2302 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 293106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 27928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1780427177 RX 681355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1770423680 RX 46430 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 297397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2294683261 RX 639793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2286096233 RX 46328 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2212 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 293970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1783837156 RX 683371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1773797252 RX 46556 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 298364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2303984102 RX 641689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2295374893 RX 46457 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2141 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 294864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1787261283 RX 685435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1777184142 RX 46685 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 299331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2313317021 RX 643609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2304686049 RX 46583 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2381 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 295740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1790679534 RX 687499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1780565054 RX 46814 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 300297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2322608084 RX 645553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2313955429 RX 46712 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2267 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2154 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 296619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1794092618 RX 689515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1783940018 RX 46940 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 301265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2331918141 RX 647449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2323243270 RX 46841 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2167 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 297503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1797480066 RX 691579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1787291360 RX 47069 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 302232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2341250868 RX 649369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2332554228 RX 46967 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 298384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1800896190 RX 693643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1790668812 RX 47198 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 303197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2350561773 RX 651313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2341843420 RX 47096 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 299270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1804683137 RX 695659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1794418852 RX 47324 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 304165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2359869076 RX 653209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2351128515 RX 47225 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2859 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2466 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 300144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1808167305 RX 697723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1797866975 RX 47453 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 305133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2369184907 RX 655129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2360422607 RX 47351 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2342 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 301040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1811664967 RX 699787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1801327985 RX 47582 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 306098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2378497093 RX 657073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2369713077 RX 47480 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 301921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1815214593 RX 701803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1804840805 RX 47708 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 307065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 26987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2387823292 RX 658969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2379017512 RX 47609 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2139 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2156 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 302783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1818574817 RX 703867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1808165431 RX 47837 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 308033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2397124259 RX 660889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2388296279 RX 47735 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2107 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 303660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 28952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1821986478 RX 705931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1811538963 RX 47966 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 308999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2406424412 RX 662867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2397574727 RX 47933 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2520 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 304528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1825485024 RX 707947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1815001475 RX 48092 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 309966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2415750803 RX 664811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2406879364 RX 48062 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2272 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 305412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1828927173 RX 710011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1818406174 RX 48221 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 310934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2425051770 RX 666707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2416158132 RX 48191 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2307 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2177 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 306295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1832342236 RX 712075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1821784212 RX 48350 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 311900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2434358451 RX 668627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2425443103 RX 48317 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3153 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 307189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1836103456 RX 714091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1825507616 RX 48476 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 312867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2443691562 RX 670571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2434754433 RX 48446 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2254 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 308062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1839491380 RX 716155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1828858933 RX 48605 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 313834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2452990930 RX 672467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2444031615 RX 48575 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2094 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2048 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 308929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1842828821 RX 718219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1832159812 RX 48734 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 314801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2462292490 RX 674387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2453311470 RX 48701 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 309792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1846189390 RX 720235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1835484423 RX 48860 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 315768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2471625409 RX 676331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2462622618 RX 48830 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2290 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 310684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1849648280 RX 722299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1838904973 RX 48989 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 316734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2480944427 RX 678227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2471919414 RX 48959 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2457 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 311569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1853144238 RX 724363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1842363495 RX 49118 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 317701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2490257954 RX 680147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2481211216 RX 49085 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2214 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 312425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1856495708 RX 726379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1845680140 RX 49244 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 318668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 27949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2499556760 RX 682091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2490488334 RX 49214 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2246 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 313293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1859873634 RX 728443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1849021499 RX 49373 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 319635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2508871938 RX 683987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2499781282 RX 49343 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2216 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 314159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 29976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 1863251209 RX 730507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1852362427 RX 49502 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 320602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2518198329 RX 685907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2509085920 RX 49469 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 314674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 2421: ulsch_rounds 30052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 1865206885 RX 733241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1854291434 RX 50471 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 321569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2527491888 RX 687913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2518357791 RX 49672 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1332 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 314687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 2421: ulsch_rounds 30065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 1865210608 RX 734749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1854291434 RX 50471 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 322391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 2535379974 RX 690622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2526224862 RX 50573 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 315358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 2421: ulsch_rounds 30151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1867591639 RX 737393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1856664220 RX 51339 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 322945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2537407809 RX 693562 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2528222194 RX 51760 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 316336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1875264657 RX 739457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1864318789 RX 51468 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 323821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2541160358 RX 695506 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2531938023 RX 51889 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2589 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 317315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1884450340 RX 741473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1873482480 RX 51594 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 324650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2544449754 RX 697402 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2535192865 RX 52018 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2019 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 318294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1893611384 RX 743537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1882621579 RX 51723 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 325487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2547683603 RX 699322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2538392379 RX 52144 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 319273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1902780764 RX 745601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1891769489 RX 51852 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 326315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2550934123 RX 701266 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2541607716 RX 52273 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1955 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 320251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1911973952 RX 747617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1900941162 RX 51978 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 327162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2554247243 RX 703162 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2544885799 RX 52402 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2159 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 321230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1921147087 RX 749681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1910091895 RX 52107 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 327995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2557516802 RX 705082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2548121345 RX 52528 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2265 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 322209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1930307569 RX 751745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1919230919 RX 52236 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 328829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 28930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2560889703 RX 707026 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2551460621 RX 52657 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2089 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 323187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1939487701 RX 753761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1928389570 RX 52362 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 329647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2564145057 RX 708922 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2554681377 RX 52786 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 324167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 30919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1948671195 RX 755825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1937550576 RX 52491 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 330469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2567368342 RX 710842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2557871512 RX 52912 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1896 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 325145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1957856574 RX 757889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1946714462 RX 52620 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 331305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2570557684 RX 712786 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2561026544 RX 53041 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2127 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 326123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1967029986 RX 759905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1955866404 RX 52746 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 332151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2573916983 RX 714682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2564351020 RX 53170 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 327102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1976203175 RX 761969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1965017136 RX 52875 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 333004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2577567589 RX 716602 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2567966554 RX 53296 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3046 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2970 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 328081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1985399051 RX 764033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1974191487 RX 53004 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 333861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2581226032 RX 718546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2571590474 RX 53425 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2091 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 329059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 1994565935 RX 766049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1983336906 RX 53130 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 334694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2584536777 RX 720442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2574867531 RX 53554 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 330039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2003741812 RX 768113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 1992490318 RX 53259 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 335537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2587901472 RX 722362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2578196478 RX 53680 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 331017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2012941336 RX 770177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2001668316 RX 53388 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 336375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2591198266 RX 724306 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2581458299 RX 53809 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2133 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2097 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 331995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2022101884 RX 772193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2010807412 RX 53514 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 337204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2594534290 RX 726202 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2584759589 RX 53938 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2125 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 332976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2031264585 RX 774257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2019947721 RX 53643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 338026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2597852969 RX 728122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2588045518 RX 54064 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2207 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 333954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2040451053 RX 776321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2029112686 RX 53772 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 338891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2601420843 RX 730066 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2591577504 RX 54193 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2621 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2416 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 334930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2049627282 RX 778337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2038267442 RX 53898 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 339737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 29970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2604884599 RX 731962 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2595005795 RX 54322 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 335912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 31943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2058805589 RX 780401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2047423276 RX 54027 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 340574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2608162194 RX 733882 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2598248300 RX 54448 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 336890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2067979193 RX 782465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2056575404 RX 54156 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 341407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2611428428 RX 735826 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2601480907 RX 54577 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1986 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 337867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2077151390 RX 784481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2065726136 RX 54282 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 342231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2614693315 RX 737722 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2604712438 RX 54706 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2005 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2042 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 338848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2086348066 RX 786545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2074900302 RX 54411 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 343075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2618236190 RX 739642 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2608220236 RX 54832 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 339826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2095521670 RX 788609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2084052432 RX 54540 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 343930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2621663939 RX 741586 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2611613380 RX 54961 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2176 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 340803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2104693675 RX 790625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2093202966 RX 54666 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 344761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2624937136 RX 743482 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2614853372 RX 55090 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 341783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2113880046 RX 792689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2102366848 RX 54795 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 345596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2628212486 RX 745402 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2618093439 RX 55216 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1988 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2208 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 342761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2123046930 RX 794753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2111512273 RX 54924 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 346443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2631533296 RX 747346 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2621379388 RX 55345 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2059 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 343740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2132217783 RX 796769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2120661649 RX 55050 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 347276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2634848974 RX 749242 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2624660896 RX 55474 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2024 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 344719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2141417968 RX 798833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2129839840 RX 55179 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 348122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2638173610 RX 751162 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2627949819 RX 55600 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2200 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 345697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2150576297 RX 800897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2138976267 RX 55308 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 348974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2641728795 RX 753106 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2631469984 RX 55729 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2001 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 346677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2159747276 RX 802913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2148125771 RX 55434 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 349809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 30930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2644981210 RX 755002 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2634687731 RX 55858 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2201 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 347656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 32967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2168927712 RX 804977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2157284222 RX 55563 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 350626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2648311355 RX 756922 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2637984154 RX 55984 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 348634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2178114742 RX 807041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2166449261 RX 55692 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 351453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2651539659 RX 758866 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2641178214 RX 56113 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1959 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 349612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2187285784 RX 809057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2175598840 RX 55818 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 352282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2654789195 RX 760762 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2644394484 RX 56242 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 350591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2196459692 RX 811121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2184750780 RX 55947 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 353109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2658038070 RX 762682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2647607800 RX 56368 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 351570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2205643074 RX 813185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2193912172 RX 56076 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 353928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2661288978 RX 764626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2650824045 RX 56497 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1995 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 352548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2214821541 RX 815201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2203069152 RX 56202 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 354757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2664546992 RX 766522 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2654047740 RX 56626 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2022 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 353527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2223995641 RX 817265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2212221285 RX 56331 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 355589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2667786788 RX 768442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2657253145 RX 56752 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 354506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2233185359 RX 819329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2221389007 RX 56460 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 356436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2671107831 RX 770386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2660539104 RX 56881 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2077 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 355484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2242370546 RX 821345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2230552690 RX 56586 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 357280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2674397876 RX 772282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2663792920 RX 57010 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2035 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 356463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2251531563 RX 823409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2239691799 RX 56715 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 358125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2677693248 RX 774202 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2667053194 RX 57136 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2058 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 357443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2260701412 RX 825473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2248839713 RX 56844 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 358945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2680970278 RX 776146 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2670296716 RX 57265 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 358421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2269894600 RX 827489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2258011391 RX 56970 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 359771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2684244944 RX 778042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2673536758 RX 57394 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 359399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 33991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2279067293 RX 829553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2267162116 RX 57099 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 360625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 31969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2687914639 RX 779962 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2677171082 RX 57520 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3012 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 360379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2288228271 RX 831617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2276301143 RX 57228 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 361450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2691191923 RX 781906 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2680415109 RX 57649 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 361357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2297408403 RX 833633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2285459784 RX 57354 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 362283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2694430539 RX 783802 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2683620064 RX 57778 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2038 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 362336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2306591401 RX 835697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2294620795 RX 57483 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 363104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2697640274 RX 785722 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2686794883 RX 57904 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1838 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2027 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 363315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2315777276 RX 837761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2303784682 RX 57612 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 363937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2700896658 RX 787666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2690015639 RX 58033 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2050 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 364293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2324950688 RX 839777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2312936619 RX 57738 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 364789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2704209886 RX 789562 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2693292676 RX 58162 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2097 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 365271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2334123381 RX 841841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2322087355 RX 57867 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 365620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2707545764 RX 791482 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2696594937 RX 58288 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2089 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 366251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2343319753 RX 843905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2331261707 RX 57996 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 366457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2710834161 RX 793426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2699849363 RX 58417 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2057 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2336 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 367229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2352486637 RX 845921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2340407130 RX 58122 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 367302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2714215127 RX 795322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2703196119 RX 58546 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2136 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 368208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2361661991 RX 847985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2349560540 RX 58251 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 368151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2717505474 RX 797242 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2706451487 RX 58672 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 369187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2370861984 RX 850049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2358738544 RX 58380 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 368990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2721051890 RX 799186 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2709963811 RX 58801 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 370165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 34930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2380022532 RX 852065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2367877650 RX 58506 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 369807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2724356352 RX 801082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2713233949 RX 58930 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2164 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 371145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2389184791 RX 854129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2377017955 RX 58635 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 370645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 32929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2727670457 RX 803002 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2716512488 RX 59056 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 372124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2398371755 RX 856193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2386182923 RX 58764 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 371478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2730944712 RX 804946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2719752480 RX 59185 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 373100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2407547984 RX 858209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2395337681 RX 58890 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 372322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2734341277 RX 806842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2723114026 RX 59314 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2366 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3012 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 374081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2416725795 RX 860273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2404493520 RX 59019 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 373170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2737988425 RX 808762 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2726726040 RX 59440 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1974 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 375060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2425899895 RX 862337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2413645649 RX 59148 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 374004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2741253886 RX 810706 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2729958176 RX 59569 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 376037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2435072092 RX 864353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2422796381 RX 59274 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 374828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2744531432 RX 812602 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2733201678 RX 59698 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2093 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 377017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2444268272 RX 866417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2431970550 RX 59403 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 375661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2747782993 RX 814522 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2736418939 RX 59824 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1963 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 377996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2453442372 RX 868481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2441122679 RX 59532 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 376498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2751088923 RX 816466 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2739688621 RX 59953 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2147 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 378973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2462614377 RX 870497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2450273221 RX 59658 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 377355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2754449644 RX 818362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2743013613 RX 60082 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2083 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 379952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2471800225 RX 872561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2459437098 RX 59787 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 378186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2757732675 RX 820282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2746261080 RX 60208 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2014 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2617 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 380931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2480967578 RX 874625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2468582528 RX 59916 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 379041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2761240094 RX 822226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2749733816 RX 60337 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2150 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 381910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 35954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2490138431 RX 876641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2477731904 RX 60042 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 379884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2764560165 RX 824122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2753019750 RX 60466 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 382889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2499338643 RX 878705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2486910099 RX 60171 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 380732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2767839202 RX 826042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2756263757 RX 60592 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2070 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 383867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2508496999 RX 880769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2496046529 RX 60300 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 381563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 33970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2771070496 RX 827986 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2759460836 RX 60721 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2010 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 384847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2517667978 RX 882785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2505196031 RX 60426 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 382394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2774371890 RX 829882 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2762728015 RX 60850 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2097 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 385825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2526847918 RX 884849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2514354484 RX 60555 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 383232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2777772265 RX 831802 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2766093992 RX 60976 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2240 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 386804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2536035444 RX 886913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2523519523 RX 60684 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 384063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2781013625 RX 833746 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2769299868 RX 61105 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1978 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1988 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 387782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2545206486 RX 888929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2532669093 RX 60810 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 384896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2784285774 RX 835642 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2772538458 RX 61234 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2141 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 388760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2554379898 RX 890993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2541821035 RX 60939 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 385740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2787606248 RX 837562 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2775824447 RX 61360 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1955 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 389740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2563563776 RX 893057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2550982427 RX 61068 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 386575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2790934959 RX 839506 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2779117851 RX 61489 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2218 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 390718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2572742243 RX 895073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2560139407 RX 61194 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 387425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2794282772 RX 841402 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2782430461 RX 61618 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2187 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2188 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 391696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2581915847 RX 897137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2569291540 RX 61323 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 388272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2797625887 RX 843322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2785738625 RX 61744 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2092 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 392676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2591106007 RX 899201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2578459259 RX 61452 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 389100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2800923231 RX 845266 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2789002369 RX 61873 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2029 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 393654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 36978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2600291194 RX 901217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2587622955 RX 61578 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 389916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2804165698 RX 847162 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2792210763 RX 62002 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1940 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2068 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 394632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2609451742 RX 903281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2596762057 RX 61707 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 390766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2807487510 RX 849082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2795496732 RX 62128 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2151 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 395613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2618622114 RX 905345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2605909968 RX 61836 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 391603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 34930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2810823740 RX 851026 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2798797972 RX 62257 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2209 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 396591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2627815302 RX 907361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2615081639 RX 61962 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 392453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2814118237 RX 852922 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2802057295 RX 62386 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 397568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2636987499 RX 909425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2624232370 RX 62091 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 393275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2817349346 RX 854842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2805254299 RX 62512 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1947 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2104 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 398549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2646148973 RX 911489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2633371398 RX 62220 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 394115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2820742280 RX 856786 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2808612841 RX 62641 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2498 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 399527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2655329105 RX 913505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2642530039 RX 62346 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 394958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2824157240 RX 858682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2811993668 RX 62770 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 400505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2664511607 RX 915569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2651691050 RX 62475 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 395804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2827448242 RX 860602 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2815249997 RX 62896 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 401485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2673697978 RX 917633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2660854943 RX 62604 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 396637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2830733781 RX 862546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2818500398 RX 63025 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2029 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2073 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 402463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2682871390 RX 919649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2670006877 RX 62730 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 397470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2834000298 RX 864442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2821732549 RX 63154 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 403440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2692043587 RX 921713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2679157611 RX 62859 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 398312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2837362911 RX 866362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2825060585 RX 63280 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 404421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 37917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2701240401 RX 923777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2688331966 RX 62988 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 399154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2840871674 RX 868306 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2828534808 RX 63409 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2144 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 405399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2710407285 RX 925793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2697477391 RX 63114 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 400000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2844165370 RX 870202 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2831793615 RX 63538 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 406377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2719582170 RX 927857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2706630793 RX 63243 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 400816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2847453649 RX 872146 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2835049058 RX 63664 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3012 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 407357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2728782686 RX 929921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2715808794 RX 63372 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 401675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2851108772 RX 874042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2838668542 RX 63793 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 408335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2737943234 RX 931937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2724947901 RX 63498 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 402518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 35969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2854375466 RX 875962 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2841900618 RX 63919 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1940 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2181 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 409314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2747104997 RX 934001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2734088204 RX 63627 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 403377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2857746536 RX 877906 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2845236024 RX 64048 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 410293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2756291961 RX 936065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2743253175 RX 63756 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 404228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2861323766 RX 879802 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2848777007 RX 64177 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 411270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2765468686 RX 938081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2752407938 RX 63882 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 405069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2864704001 RX 881722 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2852122261 RX 64303 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2357 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 412250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2774646001 RX 940145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2761563758 RX 64011 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 405915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2868078180 RX 883666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2855461592 RX 64432 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 413229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2783820101 RX 942209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2770715883 RX 64140 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 406745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2871391161 RX 885562 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2858739630 RX 64561 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 414207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2792992794 RX 944225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2779866616 RX 64266 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 407591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2874711072 RX 887482 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2862025619 RX 64687 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 415186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2802188478 RX 946289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2789040779 RX 64395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 408440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2878084694 RX 889426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2865363924 RX 64816 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2548 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 416165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 38941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2811362551 RX 948353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2798192908 RX 64524 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 409276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2881536660 RX 891322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2868781350 RX 64945 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 417143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2820535025 RX 950369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2807343444 RX 64650 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 410105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2884764343 RX 893242 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2871974429 RX 65071 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 418121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2829720404 RX 952433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2816507323 RX 64779 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 410946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2888096150 RX 895186 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2875272194 RX 65200 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2206 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 419100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2838887784 RX 954497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2825652750 RX 64908 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 411781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2891384489 RX 897082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2878527016 RX 65329 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1978 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 420080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2848059133 RX 956513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2834802129 RX 65034 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 412608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 36929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2894662765 RX 899002 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2881771454 RX 65455 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2032 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 421058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2857258849 RX 958577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2843980324 RX 65163 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 413452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2898269137 RX 900946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2885344535 RX 65584 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 422036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2866417205 RX 960641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2853116752 RX 65292 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 414287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2901550938 RX 902842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2888591957 RX 65713 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1988 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2086 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 423017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2875588680 RX 962657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2862266253 RX 65418 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 415130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2904824337 RX 904762 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2891830958 RX 65839 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 423995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2884768620 RX 964721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2871424706 RX 65547 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 415989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2908211550 RX 906706 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2895182170 RX 65968 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2360 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 424973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2893955650 RX 966785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2880589738 RX 65676 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 416825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2911578266 RX 908602 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2898514136 RX 66097 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 425952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2903127188 RX 968801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2889739313 RX 65802 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 417660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2914907655 RX 910522 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2901808967 RX 66223 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2003 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 426930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2912300600 RX 970865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2898891250 RX 65931 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 418509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2918198081 RX 912466 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2905065316 RX 66352 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1930 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 427909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 39965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2921483955 RX 972929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2908052644 RX 66060 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 419339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2921481255 RX 914362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2908314180 RX 66481 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2202 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -62 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 428888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2930662891 RX 975031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2917209624 RX 66263 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 419859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE c22c: ulsch_rounds 37644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 2923479509 RX 917064 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2910284707 RX 67453 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 429789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 2939098410 RX 977075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2925624392 RX 66534 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 419871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: ulsch_rounds 37656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 2923482868 RX 918426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2910284707 RX 67453 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 430270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2940865110 RX 980748 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2927362642 RX 68374 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 420433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: ulsch_rounds 37734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2925264163 RX 921001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2912059640 RX 68316 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 431126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2944162610 RX 982812 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2930625004 RX 68503 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 421399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2932165009 RX 922969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2918943635 RX 68445 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2093 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 431998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2947629882 RX 984828 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2934056329 RX 68629 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 422366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2941497928 RX 924865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2928254783 RX 68574 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 432860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2951016717 RX 986892 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2937407130 RX 68758 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 423332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 37974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2950794992 RX 926785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2937529671 RX 68700 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1959 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 433729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2954370692 RX 988956 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2940724832 RX 68887 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 424300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2960105576 RX 928729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2946818538 RX 68829 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2006 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 434599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2957723671 RX 990972 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2944040566 RX 69013 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 425267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2969425631 RX 930625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2956116856 RX 68958 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2239 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 435463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2961080110 RX 993036 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2947360771 RX 69142 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 426233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2978744457 RX 932545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2965413460 RX 69084 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2183 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2584 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 436337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2964659705 RX 995100 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2950903346 RX 69271 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 427200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2988064320 RX 934489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2974711590 RX 69213 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 437173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 40920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2967968785 RX 997116 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2954177584 RX 69397 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 428167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 2997371319 RX 936385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2983996876 RX 69342 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 438044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2971296298 RX 999180 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2957468089 RX 69526 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 429134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3006671968 RX 938305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 2993275333 RX 69468 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2091 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 438903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2974611801 RX 1001244 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2960746788 RX 69655 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 430101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3015998551 RX 940249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3002580159 RX 69597 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2006 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 439761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2977897352 RX 1003260 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2963997314 RX 69781 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 431068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3025298638 RX 942145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3011858545 RX 69726 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 440615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2981187910 RX 1005324 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2967252206 RX 69910 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 432035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3034599479 RX 944065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3021137186 RX 69852 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2054 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 441488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2984554247 RX 1007388 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2970581288 RX 70039 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 433002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3043932398 RX 946009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3030448350 RX 69981 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 442359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2988197608 RX 1009404 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2974189061 RX 70165 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 433968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3053223461 RX 947905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3039717734 RX 70110 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2932 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1996 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 443236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2991503403 RX 1011468 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2977458928 RX 70294 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 434936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 38934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3062533518 RX 949825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3049005588 RX 70236 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1985 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 444101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2994799230 RX 1013532 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2980718376 RX 70423 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 435903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3071866245 RX 951769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3058316547 RX 70365 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 444965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 2998194035 RX 1015548 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2984077063 RX 70549 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 436868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3081177150 RX 953665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3067605731 RX 70494 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2079 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2019 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 445822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3001481754 RX 1017612 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2987328560 RX 70678 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 437836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3090484453 RX 955585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3076890824 RX 70620 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 446675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3004759248 RX 1019676 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2990569188 RX 70807 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 438804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3099800284 RX 957529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3086184920 RX 70749 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2375 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 447544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 41944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3008211577 RX 1021692 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2993985713 RX 70933 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 439769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3109112470 RX 959425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3095475389 RX 70878 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2076 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 448438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3011817729 RX 1023756 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 2997554899 RX 71062 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 440737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3118439165 RX 961345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3104779836 RX 71004 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2750 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2145 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 449309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3015172809 RX 1025820 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3000872075 RX 71191 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 441704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3127739636 RX 963289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3114058608 RX 71133 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 450171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3018444300 RX 1027836 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3004107716 RX 71317 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 442670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3137039789 RX 965185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3123337051 RX 71262 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 451019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3021779476 RX 1029900 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3007408580 RX 71446 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 443638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3146366676 RX 967105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3132641689 RX 71388 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2080 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2034 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 451881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3025136490 RX 1031964 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3010728710 RX 71575 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 444605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3155667147 RX 969049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3141920452 RX 71517 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3107 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 452773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3028856356 RX 1033980 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3014410593 RX 71701 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 445571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3164973828 RX 970945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3151205420 RX 71646 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 453633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3032216082 RX 1036044 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3017735199 RX 71830 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 446539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3174307435 RX 972865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3160516769 RX 71772 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 454491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3035526475 RX 1038108 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3021008996 RX 71959 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 447505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 39975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3183606307 RX 974809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3169793942 RX 71901 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2036 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1990 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 455352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3038827532 RX 1040124 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3024274813 RX 72085 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 448472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3192907867 RX 976705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3179073797 RX 72030 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2276 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 456228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3042269321 RX 1042188 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3027680984 RX 72214 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 449440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3202241282 RX 978625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3188384947 RX 72156 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2111 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 457088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3045558856 RX 1044252 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3030931410 RX 72343 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 450405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3211559804 RX 980569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3197681735 RX 72285 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1963 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 457943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 42968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3048876057 RX 1046268 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3034213048 RX 72469 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 451372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3220873331 RX 982465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3206973533 RX 72414 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2165 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 458797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3052239951 RX 1048332 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3037541599 RX 72598 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 452340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3230172633 RX 984385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3216250634 RX 72540 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 459660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3055540877 RX 1050396 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3040805929 RX 72727 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 453306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3239487315 RX 986329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3225543602 RX 72669 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2059 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 460532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3058901478 RX 1052412 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3044130520 RX 72853 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 454273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3248813706 RX 988225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3234848244 RX 72798 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2108 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 461404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3062257803 RX 1054476 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3047449173 RX 72982 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 455241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3258107761 RX 990145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3244120119 RX 72924 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 462280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3065545888 RX 1056540 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3050699684 RX 73111 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 456207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3267414826 RX 992089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3253405460 RX 73053 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 463153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3068884626 RX 1058556 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3054002020 RX 73237 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 457174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3276741025 RX 993985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3262709911 RX 73182 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2215 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 464014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3072252715 RX 1060620 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3057334051 RX 73366 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 458142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3286035464 RX 995905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3271982179 RX 73308 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2061 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 464879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3075571934 RX 1062684 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3060615689 RX 73495 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 459108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 40935/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3295348673 RX 997849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3281273656 RX 73437 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2228 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 465742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3078935666 RX 1064700 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3063943274 RX 73621 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 460075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3304681592 RX 999745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3290584813 RX 73566 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2216 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 466626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3082366773 RX 1066764 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3067337083 RX 73750 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 461041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3313978656 RX 1001665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3299859693 RX 73692 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2118 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2265 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 467515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3085793116 RX 1068828 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3070725931 RX 73879 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 462009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3323289240 RX 1003609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3309148558 RX 73821 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2176 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 468390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 43992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3089166496 RX 1070844 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3074062388 RX 74005 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 462976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3332609295 RX 1005505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3318446879 RX 73950 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2469 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 469246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3092669361 RX 1072908 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3077529281 RX 74134 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 463942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3341928121 RX 1007425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3327743483 RX 74076 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2259 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 470109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3096060582 RX 1074972 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3080883562 RX 74263 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 464909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3351247984 RX 1009369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3337041601 RX 74205 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2054 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 470965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3099337249 RX 1076988 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3084123659 RX 74389 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 465876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3360554983 RX 1011265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3346326882 RX 74334 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 471833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3102669219 RX 1079052 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3087420132 RX 74518 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 466843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3369855632 RX 1013185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3355605339 RX 74460 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2022 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 472717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3106373615 RX 1081116 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3091087195 RX 74647 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 467810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3379182215 RX 1015129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3364910175 RX 74589 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3057 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 473587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3109734983 RX 1083132 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3094411811 RX 74773 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 468777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3388482302 RX 1017025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3374188559 RX 74718 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2119 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 474461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3113136754 RX 1085196 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3097776431 RX 74902 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 469744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3397783143 RX 1018945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3383467209 RX 74844 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2217 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 475342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3116521209 RX 1087260 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3101124799 RX 75031 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 470711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3407116062 RX 1020889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3392778362 RX 74973 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2235 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 476217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3119947828 RX 1089276 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3104514147 RX 75157 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 471677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 41975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3416407125 RX 1022785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3402047746 RX 75102 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2289 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2006 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 477087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3123295458 RX 1091340 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3107825926 RX 75286 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 472645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3425717182 RX 1024705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3411335591 RX 75228 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2160 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 477965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 44931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3126665944 RX 1093404 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3111159494 RX 75415 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 473612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3435049909 RX 1026649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3420646550 RX 75357 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2222 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 478864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3130403118 RX 1095420 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3114858715 RX 75541 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 474577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3444360814 RX 1028545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3429935748 RX 75486 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3026 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 479734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3133737762 RX 1097484 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3118156675 RX 75670 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 475545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3453668117 RX 1030465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3439220840 RX 75612 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2096 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2197 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 480604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3137148028 RX 1099548 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3121530678 RX 75799 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 476513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3462983948 RX 1032409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3448514944 RX 75741 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2151 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 481465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3140470667 RX 1101564 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3124816742 RX 75925 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 477478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3472296134 RX 1034305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3457805401 RX 75870 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2013 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 482333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3143789679 RX 1103628 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3128098435 RX 76054 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 478445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3481622333 RX 1036225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3467109846 RX 75996 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1975 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2119 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 483192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3147138425 RX 1105692 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3131411245 RX 76183 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 479413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3490923300 RX 1038169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3476388617 RX 76125 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2188 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 484094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3150571363 RX 1107708 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3134805560 RX 76309 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 480379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3500223453 RX 1040065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3485667070 RX 76254 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2173 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 484970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3153945681 RX 1109772 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3138142022 RX 76438 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 481346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3509549844 RX 1041985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3494971710 RX 76380 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2229 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 485843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3157317391 RX 1111836 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3141476962 RX 76567 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 482314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3518850811 RX 1043929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3504250486 RX 76509 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2147 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2013 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 486717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3160832603 RX 1113852 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3144954194 RX 76693 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 483280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 42935/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3528157492 RX 1045825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3513535459 RX 76638 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2659 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 487588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3164200037 RX 1115916 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3148286270 RX 76822 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 484247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3537490603 RX 1047745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3522846809 RX 76764 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2104 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 488453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 45955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3167582816 RX 1117980 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3151633131 RX 76951 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 485214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3546789971 RX 1049689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3532123984 RX 76893 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2158 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3241 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 489338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3171367915 RX 1119996 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3155380212 RX 77077 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 486181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3556091531 RX 1051585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3541403839 RX 77022 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 490208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3174700878 RX 1122060 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3158676705 RX 77206 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 487148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3565424450 RX 1053505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3550714988 RX 77148 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2219 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 491082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3178054479 RX 1124124 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3161993495 RX 77335 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 488114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3574743468 RX 1055449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3560011780 RX 77277 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1961 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 491953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3181496860 RX 1126140 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3165398645 RX 77461 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 489081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3584056995 RX 1057345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3569303574 RX 77406 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2725 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2458 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 492839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3185111533 RX 1128204 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3168976683 RX 77590 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 490048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3593355801 RX 1059265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3578580687 RX 77532 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 493686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3188425724 RX 1130268 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3172255342 RX 77719 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 491015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3602670979 RX 1061209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3587873649 RX 77661 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2183 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 494567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3191811350 RX 1132284 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3175602208 RX 77845 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 491982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3611997370 RX 1063105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3597178291 RX 77790 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2118 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 495443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3195168737 RX 1134348 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3178922443 RX 77974 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 492949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3621290929 RX 1065025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3606450165 RX 77916 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2092 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2218 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 496286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3198532278 RX 1136412 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3182250058 RX 78103 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 493916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3630598490 RX 1066969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3615735522 RX 78045 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2273 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 497174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3201944349 RX 1138428 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3185625097 RX 78229 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 494883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3639924689 RX 1068865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3625039967 RX 78174 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 498026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3205268851 RX 1140492 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3188914190 RX 78358 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 495850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 43974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3649218632 RX 1070785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3634312229 RX 78300 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2140 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2058 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 498910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 46979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3208796161 RX 1142556 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3192403328 RX 78487 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 496817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3658532337 RX 1072729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3643603713 RX 78429 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3146 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 499781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3212373050 RX 1144572 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3195944446 RX 78613 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 497784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3667865256 RX 1074625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3652914865 RX 78558 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2056 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 500634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3215683072 RX 1146636 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3199218674 RX 78742 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 498749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3677161824 RX 1076545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3662189741 RX 78684 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 501496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3219049727 RX 1148700 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3202549223 RX 78871 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 499718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3686472904 RX 1078489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3671478596 RX 78813 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2217 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2638 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 502370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3222621438 RX 1150716 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3206084308 RX 78997 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 500685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3695792959 RX 1080385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3680776920 RX 78942 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2369 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 503224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3226034130 RX 1152780 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3209462296 RX 79126 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 501650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3705111289 RX 1082305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3690073522 RX 79068 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 504111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3229738076 RX 1154844 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3213129344 RX 79255 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 502618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3714431648 RX 1084249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3699371643 RX 79197 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2227 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 504968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3233028728 RX 1156860 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3216383855 RX 79381 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 503585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3723738647 RX 1086145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3708656923 RX 79326 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 505815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3236328053 RX 1158924 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3219646733 RX 79510 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 504551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3733038800 RX 1088065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3717935376 RX 79452 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 506679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3239722083 RX 1160988 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3223005445 RX 79639 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 505519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3742365879 RX 1090009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3727240208 RX 79581 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2130 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 507553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3243093914 RX 1163004 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3226340460 RX 79765 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 506486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3751665966 RX 1091905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3736518594 RX 79710 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2222 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2250 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 508428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 47917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3246512268 RX 1165068 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3229722879 RX 79894 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 507452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 44934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3760966311 RX 1093825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3745797242 RX 79836 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2210 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 509299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3249946155 RX 1167132 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3233120093 RX 80023 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 508420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3770299726 RX 1095769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3755108403 RX 79965 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2177 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 510180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3253314928 RX 1169148 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3236451648 RX 80149 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 509386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3779590789 RX 1097665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3764377794 RX 80094 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2199 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 511012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3256581865 RX 1171212 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3239684876 RX 80278 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 510353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3788900350 RX 1099585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3773665635 RX 80220 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1881 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2042 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 511870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3259924828 RX 1173276 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3242993200 RX 80407 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 511321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3798233573 RX 1101529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3782976606 RX 80349 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2259 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 512738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3263354002 RX 1175292 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3246386028 RX 80533 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 512286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3807544478 RX 1103425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3792265787 RX 80478 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2217 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 513607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3266813089 RX 1177356 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3249809933 RX 80662 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 513253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3816851285 RX 1105345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3801550875 RX 80604 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2391 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2348 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 514485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3270279939 RX 1179420 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3253241273 RX 80791 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 514222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3826167612 RX 1107289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3810844967 RX 80733 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 515331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3273565892 RX 1181436 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3256490337 RX 80917 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 515187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3835479798 RX 1109185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3820135439 RX 80862 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2307 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 516209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3277028833 RX 1183500 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3259917196 RX 81046 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 516154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3844805997 RX 1111105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3829439889 RX 80988 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2101 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 517074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3280427819 RX 1185564 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3263280289 RX 81175 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 517122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3854106964 RX 1113049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3838718670 RX 81117 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2257 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2238 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 517932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3283864665 RX 1187580 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3266680532 RX 81301 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 518088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3863407117 RX 1114945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3847997130 RX 81246 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2351 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 518809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 48941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3287302441 RX 1189644 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3270082227 RX 81430 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 519055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3872733508 RX 1116865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3857301761 RX 81372 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2185 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 519690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3290670873 RX 1191708 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3273414218 RX 81559 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 520023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 45975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3882034475 RX 1118809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3866580530 RX 81501 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2138 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 520548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3293996047 RX 1193724 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3276703301 RX 81685 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 520989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3891341156 RX 1120705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3875865502 RX 81630 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2127 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 521403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3297367738 RX 1195788 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3280039813 RX 81814 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 521956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3900674267 RX 1122625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3885176846 RX 81756 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 522270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3300703289 RX 1197852 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3283340236 RX 81943 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 522923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3909973635 RX 1124569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3894454026 RX 81885 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2008 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 523152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3304306809 RX 1199868 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3286906979 RX 82069 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 523890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3919275195 RX 1126465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3903733880 RX 82014 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2798 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 524017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3307559102 RX 1201932 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3290123384 RX 82198 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 524857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3928608114 RX 1128385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3913045030 RX 82140 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2161 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 524908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3311077987 RX 1203996 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3293605197 RX 82327 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 525823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3937927132 RX 1130329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3922341816 RX 82269 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2602 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 525773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3314827945 RX 1206012 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3297320745 RX 82453 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 526790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3947240659 RX 1132225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3931633606 RX 82398 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3162 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 526647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3318208268 RX 1208076 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3300664617 RX 82582 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 527757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3956539465 RX 1134145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3940910717 RX 82524 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2109 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2243 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 527511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3321591681 RX 1210140 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3304011909 RX 82711 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 528724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3965854643 RX 1136089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3950203670 RX 82653 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2607 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 528402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 49880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 3325185826 RX 1212156 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3307569388 RX 82837 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 529691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 3975181034 RX 1137985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3959508305 RX 82782 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2124 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 528991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 2421: ulsch_rounds 49964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 3327397458 RX 1214969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3309753307 RX 83830 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 530658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 3984474593 RX 1139987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3968780177 RX 82985 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 529004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 2421: ulsch_rounds 49976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 3327401199 RX 1216331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3309753307 RX 83830 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 531590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 46943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 3993432263 RX 1142083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3977716413 RX 83262 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 529466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: ulsch_rounds 50046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3328684756 RX 1218831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3311031370 RX 84681 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 532004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 3994938100 RX 1145590 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3979196194 RX 85043 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 530445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 2421: ulsch_rounds 50132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3334910720 RX 1220895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3317241572 RX 84810 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 532833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 3998161992 RX 1147486 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3982385808 RX 85172 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2213 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 531423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3344095907 RX 1222911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3326405260 RX 84936 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 533690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4001464036 RX 1149406 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3985652456 RX 85298 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2127 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 532402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3353256924 RX 1224975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3335544357 RX 85065 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 534527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4004758706 RX 1151350 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3988911719 RX 85427 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2049 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 533382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3362426773 RX 1227039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3344692265 RX 85194 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 535356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4007984285 RX 1153246 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3992104748 RX 85556 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2153 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 534360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3371619961 RX 1229055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3353863934 RX 85320 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 536205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4011297755 RX 1155166 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3995383257 RX 85682 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 535338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3380792654 RX 1231119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3363014672 RX 85449 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 537049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4014995513 RX 1157062 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 3999045308 RX 85811 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3174 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2118 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 536318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3389953632 RX 1233183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3372153712 RX 85578 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 537895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4018333157 RX 1158982 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4002348055 RX 85937 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2251 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 537296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3399133764 RX 1235199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3381312351 RX 85704 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 538742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4021667898 RX 1160926 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4005647357 RX 86066 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 538275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3408316762 RX 1237263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3390473365 RX 85833 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 539589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4024996133 RX 1162822 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4008940656 RX 86195 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2194 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 539254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3417502637 RX 1239327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3399637243 RX 85962 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 540433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4028304106 RX 1164742 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4012214699 RX 86321 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2018 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 540232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 50985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3426676049 RX 1241343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3408789186 RX 86088 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 541273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4031594405 RX 1166686 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4015469571 RX 86450 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2160 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 541210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3435848742 RX 1243407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3417939916 RX 86217 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 542125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 47985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4034924119 RX 1168582 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4018762960 RX 86579 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 542190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3445045114 RX 1245471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3427114269 RX 86346 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 542951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4038179157 RX 1170502 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4021983666 RX 86705 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2160 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 543168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3454211998 RX 1247487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3436259697 RX 86472 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 543804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4041552900 RX 1172446 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4025322912 RX 86834 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2229 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 544147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3463387352 RX 1249551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3445413101 RX 86601 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 544642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4044767753 RX 1174342 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4028503609 RX 86963 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2198 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 545126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3472587345 RX 1251645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3454591099 RX 86799 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 545474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4048063288 RX 1176262 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4031764354 RX 87089 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 546104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3481747893 RX 1253709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3463730196 RX 86928 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 546316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4051282623 RX 1178206 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4034949542 RX 87218 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2002 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 547084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3490910152 RX 1255725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3472870511 RX 87054 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 547130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4054574874 RX 1180102 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4038208780 RX 87347 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 548063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3500097116 RX 1257789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3482035476 RX 87183 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 548004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4058322049 RX 1182022 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4041920203 RX 87473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2504 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 549039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3509273345 RX 1259853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3491190233 RX 87312 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 548864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4061735359 RX 1183966 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4045298066 RX 87602 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2113 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 550020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3518451156 RX 1261869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3500346060 RX 87438 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 549710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4065072073 RX 1185862 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4048599831 RX 87731 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2121 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 550999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 51925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3527625256 RX 1263933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3509498190 RX 87567 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 550536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4068344801 RX 1187782 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4051838822 RX 87857 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2514 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 551976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3536797453 RX 1265997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3518648914 RX 87696 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 551393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4071854172 RX 1189726 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4055313020 RX 87986 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 552956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3545993633 RX 1268013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3527823067 RX 87822 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 552212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 48945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4075088253 RX 1191622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4058513994 RX 88115 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1996 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 553935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3555167733 RX 1270077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3536975197 RX 87951 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 553056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4078347375 RX 1193542 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4061738180 RX 88241 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1933 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 554912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3564339738 RX 1272141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3546125732 RX 88080 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 553892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4081614005 RX 1195486 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4064970266 RX 88370 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 555891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3573525586 RX 1274157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3555289612 RX 88206 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 554737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4084968821 RX 1197382 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4068290747 RX 88499 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2246 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 556870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3582692939 RX 1276221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3564435038 RX 88335 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 555572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4088228186 RX 1199302 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4071515904 RX 88625 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2204 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 557849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3591863792 RX 1278285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3573584423 RX 88464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 556414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4091805910 RX 1201246 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4075058344 RX 88754 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 558828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3601064004 RX 1280301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3582762617 RX 88590 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 557268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4095184555 RX 1203142 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4078401595 RX 88883 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2024 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 559806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3610222360 RX 1282365 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3591899036 RX 88719 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 558111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4098503721 RX 1205062 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4081686538 RX 89009 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2177 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 560786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3619393339 RX 1284429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3601048545 RX 88848 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 558944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4101821137 RX 1207006 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4084969463 RX 89138 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2158 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2075 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 561764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3628573279 RX 1286445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3610206992 RX 88974 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 559796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4105146075 RX 1208902 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4088258391 RX 89267 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2359 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 562743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 52949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3637760805 RX 1288509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3619372030 RX 89103 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 560656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4108582417 RX 1210822 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4091660011 RX 89393 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2338 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 563721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3646931847 RX 1290573 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3628521601 RX 89232 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 561516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4112137823 RX 1212766 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4095180141 RX 89522 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2561 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 564699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3656105259 RX 1292589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3637673532 RX 89358 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 562360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4115469688 RX 1214662 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4098476464 RX 89651 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2290 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 565679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3665289137 RX 1294653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3646834933 RX 89487 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 563210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 49984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4118870998 RX 1216582 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4101842466 RX 89777 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2091 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 566657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3674467604 RX 1296717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3655991914 RX 89616 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 564059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4122184754 RX 1218526 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4105120504 RX 89906 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2115 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 567635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3683641208 RX 1298733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3665144045 RX 89742 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 564897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4125455928 RX 1220422 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4108356521 RX 90035 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1986 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2075 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 568615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3692831368 RX 1300797 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3674311760 RX 89871 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 565744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4128764716 RX 1222342 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4111630594 RX 90161 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 569593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3702016555 RX 1302861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3683475448 RX 90000 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 566592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4132100744 RX 1224286 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4114932344 RX 90290 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 570571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3711177103 RX 1304877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3692614540 RX 90126 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 567424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4135412122 RX 1226182 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4118209897 RX 90419 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3221 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2092 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 571552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3720347475 RX 1306941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3701762448 RX 90255 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 568309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4139084458 RX 1228102 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4121845698 RX 90545 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 572530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3729540663 RX 1309005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3710934117 RX 90384 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 569158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4142340794 RX 1230046 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4125065953 RX 90674 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 573507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3738712860 RX 1311021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3720084849 RX 90510 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 569999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4145711167 RX 1231942 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4128402295 RX 90803 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2461 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 574488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 53973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3747874334 RX 1313085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3729223890 RX 90639 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 570844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4149017941 RX 1233862 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4131675352 RX 90929 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2039 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 575466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3757054466 RX 1315149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3738382531 RX 90768 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 571714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4152561538 RX 1235806 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4135183706 RX 91058 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 576444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3766236968 RX 1317165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3747543538 RX 90894 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 572572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4155901142 RX 1237702 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4138488906 RX 91187 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2219 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 577424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3775423339 RX 1319229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3756707422 RX 91023 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 573433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 50944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4159255785 RX 1239622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4141808981 RX 91313 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2208 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 578402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3784596751 RX 1321293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3765859363 RX 91152 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 574265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4162587274 RX 1241566 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4145106746 RX 91442 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2091 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2146 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 579379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3793768948 RX 1323309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3775010094 RX 91278 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 575122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4165927359 RX 1243462 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4148411996 RX 91571 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2023 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 580360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3802965762 RX 1325373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3784184450 RX 91407 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 575973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4169209074 RX 1245382 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4151658912 RX 91697 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 581338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3812132646 RX 1327437 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3793329871 RX 91536 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 576822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4172522158 RX 1247326 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4154937466 RX 91826 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2133 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 582316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3821307531 RX 1329453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3802483276 RX 91662 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 577650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4175819640 RX 1249222 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4158200204 RX 91955 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2015 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 583296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3830508047 RX 1331517 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3811661275 RX 91791 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 578495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4179115856 RX 1251142 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4161461915 RX 92081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2253 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 584274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3839668595 RX 1333581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3820800373 RX 91920 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 579341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4182481733 RX 1253086 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4164790872 RX 92210 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 585253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3848830358 RX 1335597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3829940680 RX 92046 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 580188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4185835070 RX 1254982 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4168109956 RX 92339 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2243 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2243 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 586232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 54997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3858017322 RX 1337661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3839105654 RX 92175 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 581037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4189386293 RX 1256902 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4171627117 RX 92465 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 587209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3867194047 RX 1339725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3848260407 RX 92304 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 581883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4192773336 RX 1258846 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4174979726 RX 92594 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2166 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 588189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3876371362 RX 1341741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3857416230 RX 92430 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 582705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4196080058 RX 1260742 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4178252292 RX 92723 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2053 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2208 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 589168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3885545462 RX 1343805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3866568365 RX 92559 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 583546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4199465974 RX 1262662 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4181603496 RX 92849 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2101 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 590146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3894718155 RX 1345869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3875719101 RX 92688 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 584388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 51985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4202766037 RX 1264606 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4184868715 RX 92978 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 591125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3903913839 RX 1347885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3884893254 RX 92814 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 585214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4205987595 RX 1266502 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4188054829 RX 93107 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2113 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 592104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3913087912 RX 1349949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3894045387 RX 92943 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 586055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4209350537 RX 1268422 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4191382860 RX 93233 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2124 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2016 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 593082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3922260386 RX 1352013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3903195930 RX 93072 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 586893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4212632438 RX 1270366 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4194630232 RX 93362 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3076 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 594060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3931445765 RX 1354029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3912359809 RX 93198 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 587755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4216264283 RX 1272262 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4198227025 RX 93491 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 595039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3940613145 RX 1356093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3921505230 RX 93327 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 588604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4219557307 RX 1274182 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4201485327 RX 93617 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2056 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 596019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3949784494 RX 1358157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3930654613 RX 93456 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 589431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4222826216 RX 1276126 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4204720883 RX 93746 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 596997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 55936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3958984210 RX 1360173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3939832801 RX 93582 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 590265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4226116437 RX 1278022 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4207976706 RX 93875 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 597975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3968142566 RX 1362237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3948969219 RX 93711 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 591110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4229536517 RX 1279942 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4211361934 RX 94001 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2667 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 598956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3977314041 RX 1364301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3958118726 RX 93840 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 591944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4232837265 RX 1281886 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4214629068 RX 94130 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1965 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2322 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 599934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3986493981 RX 1366317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3967277183 RX 93966 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 592775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4236183264 RX 1283782 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4217941658 RX 94259 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 600912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 3995681011 RX 1368381 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3976442222 RX 94095 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 593627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4239439865 RX 1285702 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4221162419 RX 94385 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 601891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4004852549 RX 1370445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3985591796 RX 94224 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 594464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 52945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4242760130 RX 1287646 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4224448363 RX 94514 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 602869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4014025961 RX 1372461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 3994743732 RX 94350 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 595300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4246029674 RX 1289542 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4227683849 RX 94643 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2086 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2050 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 603848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4023209316 RX 1374525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4003905133 RX 94479 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 596147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4249322409 RX 1291462 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4230941655 RX 94769 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2259 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 604827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4032388252 RX 1376589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4013062119 RX 94608 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 596979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4252700915 RX 1293406 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4234285417 RX 94898 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2165 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 605805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4041561856 RX 1378605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4022214247 RX 94734 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 597830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4256339973 RX 1295302 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4237889600 RX 95027 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2937 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 606784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4050751574 RX 1380669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4031381960 RX 94863 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 598656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4259599009 RX 1297222 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4241113836 RX 95153 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 607763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4059937257 RX 1382733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4040545648 RX 94992 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 599494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4262796101 RX 1299166 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4244277825 RX 95282 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 608741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 56960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4069097805 RX 1384749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4049684745 RX 95118 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 600343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4266060204 RX 1301062 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4247507979 RX 95411 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1972 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 609721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4078267681 RX 1386813 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4058832653 RX 95247 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 601211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4269749126 RX 1302982 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4251160142 RX 95537 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3145 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 610700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4087461365 RX 1388877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4068004322 RX 95376 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 602069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4273050222 RX 1304926 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4254426294 RX 95666 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 611677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4096633562 RX 1390893 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4077155049 RX 95502 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 602921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4276358604 RX 1306822 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4257700362 RX 95795 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 612657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4105794540 RX 1392957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4086294083 RX 95631 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 603768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4279690849 RX 1308742 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4260997166 RX 95921 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2219 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 613636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4114975168 RX 1395021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4095452731 RX 95760 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 604603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4282923749 RX 1310686 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4264195171 RX 96050 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 614614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4124157670 RX 1397037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4104613740 RX 95886 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 605441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 53985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4286208364 RX 1312582 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4267446043 RX 96179 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2068 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 615593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4133343518 RX 1399101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4113777622 RX 96015 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 606273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4289524194 RX 1314502 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4270728552 RX 96305 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1960 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 616572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4142517399 RX 1401165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4122929574 RX 96144 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 607109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4292706357 RX 1316446 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4273875649 RX 96434 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1853 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 617549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4151689596 RX 1403181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4132080307 RX 96270 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 607966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4296360716 RX 1318342 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4277495148 RX 96563 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2220 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 618529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4160885968 RX 1405245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4141254659 RX 96399 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 608816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4299754778 RX 1320262 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4280853720 RX 96689 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1948 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 619508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4170053348 RX 1407309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4150400087 RX 96528 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 609636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4302905998 RX 1322242 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4283970734 RX 96882 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 620486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 57984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4179228233 RX 1409325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4159553500 RX 96654 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 610464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4306167429 RX 1324186 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4287198865 RX 97011 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2058 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 621465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4188428253 RX 1411389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4168731500 RX 96783 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 611299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4309375521 RX 1326082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4290373093 RX 97140 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2033 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 622444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4197589297 RX 1413453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4177870598 RX 96912 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 612142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4312660803 RX 1328002 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4293623985 RX 97266 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1976 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 623423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4206751060 RX 1415469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4187010907 RX 97038 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 612971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4315916379 RX 1329946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4296844716 RX 97395 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1959 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 624401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4215937528 RX 1417533 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4196175877 RX 97167 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 613798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4319126616 RX 1331842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4300019480 RX 97524 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 625379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4225114749 RX 1419597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4205330632 RX 97296 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 614623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4322445706 RX 1333762 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4303305404 RX 97650 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2301 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 626359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4234292064 RX 1421613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4214486450 RX 97422 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 615461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 54947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4325773531 RX 1335706 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4306598748 RX 97779 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 627337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4243465668 RX 1423677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4223638579 RX 97551 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 616313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4329051770 RX 1337602 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4309841739 RX 97908 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2003 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2276 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 628316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4252638803 RX 1425741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4232789309 RX 97680 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 617153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4332406246 RX 1339522 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4313161769 RX 98034 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 629295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4261834487 RX 1427757 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4241963469 RX 97806 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 618005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4336043071 RX 1341466 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4316763008 RX 98163 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1882 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 630273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4271008091 RX 1429821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4251115597 RX 97935 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 618828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4339322446 RX 1343362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4320007957 RX 98292 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2224 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2029 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 631252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 58923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4280181088 RX 1431885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4260266140 RX 98064 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 619671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4342619788 RX 1345282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4323269678 RX 98418 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 632230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4289366467 RX 1433901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4269430026 RX 98190 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 620497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4345871430 RX 1347226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4326486008 RX 98547 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2130 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 633208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4298533351 RX 1435965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4278575450 RX 98319 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 621355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4349230263 RX 1349122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4329809483 RX 98676 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 634189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4307705196 RX 1438029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4287724833 RX 98448 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 622203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4352708481 RX 1351042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4333252594 RX 98802 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2022 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 635167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4316904912 RX 1440045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4296903021 RX 98574 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 623059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4355934378 RX 1352986 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4336442208 RX 98931 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2013 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 636144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4326062772 RX 1442109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4306039446 RX 98703 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 623920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4359522203 RX 1354882 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4339992954 RX 99060 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 637126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4335234743 RX 1444173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4315188953 RX 98832 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 624769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4362801922 RX 1356802 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4343236426 RX 99186 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1969 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 638104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4344414683 RX 1446189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4324347403 RX 98958 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 625611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4366230742 RX 1358746 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4346630601 RX 99315 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2431 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 639081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4353601217 RX 1448253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4333512438 RX 99087 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 626440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 55987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4369436303 RX 1360642 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4349800929 RX 99444 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 640061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4362773197 RX 1450317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4342662013 RX 99216 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 627283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4372732985 RX 1362562 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4353063161 RX 99570 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 641039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4371946609 RX 1452333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4351813947 RX 99342 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 628107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4375995604 RX 1364506 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4356291282 RX 99699 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1999 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 642017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4381129495 RX 1454397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4360975343 RX 99471 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 628935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 4379227206 RX 1366402 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4359489267 RX 99828 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2054 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 642997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 59950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 4390308954 RX 1456539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4370132329 RX 99674 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 629536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE c22c: ulsch_rounds 56307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 4381556097 RX 1369051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4361789321 RX 100811 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 237 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 643975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 2421: MAC: TX 4399482558 RX 1458777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4379284446 RX 99954 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 629549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: ulsch_rounds 56320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 4381559893 RX 1370559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4361789321 RX 100811 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 644427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4401334388 RX 1462315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4381109224 RX 101779 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 630021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: ulsch_rounds 56385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4383001314 RX 1372969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4363224972 RX 101645 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 645269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4404471176 RX 1464379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4384209988 RX 101908 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 630987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4389589672 RX 1374865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4369797109 RX 101771 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 646130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4407842395 RX 1466395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4387544928 RX 102034 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 631954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4398922591 RX 1376809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4379108266 RX 101900 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2211 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 646995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4411218830 RX 1468459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4390885395 RX 102163 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 632920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4408219655 RX 1378705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4388383149 RX 102029 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 647843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4414471005 RX 1470523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4394102271 RX 102292 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 633888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4417530239 RX 1380625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4397672013 RX 102155 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1929 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 648690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4417749492 RX 1472539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4397345392 RX 102418 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 634855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4426850294 RX 1382569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4406970341 RX 102284 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2209 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 649552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4421143964 RX 1474603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4400704144 RX 102547 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 635821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4436169120 RX 1384465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4416266933 RX 102413 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2172 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 650403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4424666959 RX 1476667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4404190363 RX 102676 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 636788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 56944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4445488983 RX 1386385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4425565048 RX 102539 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2445 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2193 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 651260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4428064768 RX 1478683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4407552014 RX 102802 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 637755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4454795982 RX 1388329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4434850332 RX 102668 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2242 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 652139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4431458016 RX 1480747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4410907817 RX 102931 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 638722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4464096631 RX 1390225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4444128789 RX 102797 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 653008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 60991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4434759139 RX 1482811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4414171706 RX 103060 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 639689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4473423214 RX 1392145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4453433622 RX 102923 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1973 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 653870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4438079454 RX 1484827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4417456303 RX 103186 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 640656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4482723301 RX 1394089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4462712013 RX 103052 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2023 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 654719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4441412569 RX 1486891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4420754268 RX 103315 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 641623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4492024142 RX 1395985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4471990666 RX 103181 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 655582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4445061741 RX 1488955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4424367934 RX 103444 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 642590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4501357061 RX 1397905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4481301820 RX 103307 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 656447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4448407720 RX 1490971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4427677745 RX 103570 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 643556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4510648124 RX 1399849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4490571202 RX 103436 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1976 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2217 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 657328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4451800389 RX 1493035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4431033453 RX 103699 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 644524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4519958181 RX 1401745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4499859044 RX 103565 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2195 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 658198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4455238309 RX 1495099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4434435183 RX 103828 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 645491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4529290908 RX 1403665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4509170010 RX 103691 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2256 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 659073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4458681072 RX 1497115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4437840828 RX 103954 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 646456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4538601813 RX 1405609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4518459203 RX 103820 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2315 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 659956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4462105489 RX 1499179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4441228159 RX 104083 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 647424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4547909116 RX 1407505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4527744302 RX 103949 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2279 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 660823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4465446369 RX 1501243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4444533484 RX 104212 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 648392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4557224947 RX 1409425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4537038397 RX 104075 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2224 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 661694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4468906836 RX 1503259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4447957444 RX 104338 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 649357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 57985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4566537133 RX 1411369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4546328864 RX 104204 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2172 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 662557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 61929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4472223710 RX 1505323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4451237640 RX 104467 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 650324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4575863332 RX 1413265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4555633311 RX 104333 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 663421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4475520881 RX 1507387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4454498510 RX 104596 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 651292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4585164299 RX 1415185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4564912084 RX 104459 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1926 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2130 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 664304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4478897526 RX 1509403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4457837901 RX 104722 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 652258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4594464452 RX 1417129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4574190536 RX 104588 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2230 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 665193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4482675553 RX 1511467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4461579119 RX 104851 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 653225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4603790843 RX 1419025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4583495175 RX 104717 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 666073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4486381614 RX 1513531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4465247644 RX 104980 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 654193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4613091810 RX 1420945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4592773951 RX 104843 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2312 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 666941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4489707718 RX 1515547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4468536677 RX 105106 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 655159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4622398491 RX 1422889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4602058917 RX 104972 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 667801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4493084220 RX 1517611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4471876088 RX 105235 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 656126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4631731602 RX 1424785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4611370260 RX 105101 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2125 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 668641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4496333284 RX 1519675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4475089494 RX 105364 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 657093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4641030970 RX 1426705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4620647441 RX 105227 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 669519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4499733759 RX 1521691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4478452597 RX 105490 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 658060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4650332530 RX 1428649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4629927303 RX 105356 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2241 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2133 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 670387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4503128717 RX 1523755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4481811304 RX 105619 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 659027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4659665449 RX 1430545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4639238458 RX 105485 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2349 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 671266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4506577727 RX 1525819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4485222892 RX 105748 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 659993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4668984467 RX 1432465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4648535256 RX 105611 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2147 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 672136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4510080908 RX 1527835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4488688814 RX 105874 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 660960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 58945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4678297994 RX 1434409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4657827046 RX 105740 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2477 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2216 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 672994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 62953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4513464398 RX 1529899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4492035655 RX 106003 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 661927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4687596800 RX 1436305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4667104152 RX 105869 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 673861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4516731867 RX 1531963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4495266925 RX 106132 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 662894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4696911978 RX 1438225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4676397112 RX 105995 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 674726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4520126701 RX 1533979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4498624180 RX 106258 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 663861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4706238369 RX 1440169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4685701743 RX 106124 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2224 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 675591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4523439726 RX 1536043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4501901322 RX 106387 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 664828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4715531928 RX 1442065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4694973622 RX 106253 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2015 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2112 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 676467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4526805688 RX 1538107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4505230474 RX 106516 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 665793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4724817214 RX 1443985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4704236750 RX 106379 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2296 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 677282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4530082577 RX 1540123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4508473465 RX 106642 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 666698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4733398089 RX 1445929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4712796590 RX 106508 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2223 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 678063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4533304831 RX 1542187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4511660215 RX 106771 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 667601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4741994679 RX 1447825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4721373075 RX 106637 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2282 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2232 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 678860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4536534095 RX 1544251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4514855837 RX 106900 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 668505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4750492578 RX 1449745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4729851088 RX 106763 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2261 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 679638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4539766874 RX 1546267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4518055384 RX 107026 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 669410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4759002364 RX 1451689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4738340452 RX 106892 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2184 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 680416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4542975786 RX 1548331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4521230754 RX 107155 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 670313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4767504103 RX 1453585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4746822293 RX 107021 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2356 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 681209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4546288860 RX 1550395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4524510925 RX 107284 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 671217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4776048787 RX 1455505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4755346992 RX 107147 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2416 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2286 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 681973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4549504189 RX 1552411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4527693254 RX 107410 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 672121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4784551549 RX 1457449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4763829859 RX 107276 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 682742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 63977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4552696282 RX 1554475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4530852772 RX 107539 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 673028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 59985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4793055991 RX 1459345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4772312923 RX 107405 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2286 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 683297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4556150936 RX 1556491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4534286030 RX 107665 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 674313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4805247156 RX 1461265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4784474609 RX 107531 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 41 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 683682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4559745155 RX 1558459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4537866804 RX 107788 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 675819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4819312840 RX 1463209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4798506869 RX 107660 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 47 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1539 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 684069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4563413263 RX 1560451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4541525901 RX 107914 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 677327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4833406909 RX 1465105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4812566471 RX 107789 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 684462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4567139615 RX 1562443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4545240094 RX 108037 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 678834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4847480227 RX 1467025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4826606834 RX 107915 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 684851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4570820479 RX 1564459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4548911354 RX 108163 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 680341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4861639498 RX 1468969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4840732984 RX 108044 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 318 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 685238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4574550191 RX 1566451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4552631863 RX 108289 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 681846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4875678766 RX 1470865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4854739372 RX 108173 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 96 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 685625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4578148126 RX 1568419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4556218811 RX 108412 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 683351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4889838100 RX 1472785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4868865585 RX 108299 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 71 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 686012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4581700611 RX 1570411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4559755489 RX 108535 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 684863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4903941099 RX 1474729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4882933103 RX 108428 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 686401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4585219235 RX 1572403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4563260100 RX 108661 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 686370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4918101843 RX 1476625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4897060723 RX 108557 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 686795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4588801137 RX 1574371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4566826531 RX 108784 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 687878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4932304443 RX 1478545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4911230107 RX 108683 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 18 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 687181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4592371419 RX 1576363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4570383240 RX 108907 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 689381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4946380188 RX 1480489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4925272914 RX 108812 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 64 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 84 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 687569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 64971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4595915346 RX 1578331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4573914287 RX 109030 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 690884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 60945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4960518720 RX 1482385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4939378374 RX 108941 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 197 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 687956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4599564803 RX 1580299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4577553576 RX 109153 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 692392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4974649320 RX 1484305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4953475902 RX 109067 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 86 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 688343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4603090332 RX 1582315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4581066170 RX 109279 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 693900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 4988810752 RX 1486249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4967603709 RX 109196 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 688734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4606651220 RX 1584331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4584611257 RX 109405 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 695406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5002967335 RX 1488145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4981727184 RX 109325 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 689124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4610193491 RX 1586299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4588137958 RX 109528 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 696912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5017123021 RX 1490065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 4995849743 RX 109451 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 213 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 689511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4613853781 RX 1588267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4591786446 RX 109651 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 698417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5031221041 RX 1492009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5009914766 RX 109580 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 138 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 689898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4617424736 RX 1590283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4595345836 RX 109777 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 699921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5045389462 RX 1493905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5024050047 RX 109709 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 44 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 16 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 690285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4621012926 RX 1592275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4598922256 RX 109903 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 701429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5059558812 RX 1495825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5038185271 RX 109835 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 81 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 690671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4624529292 RX 1594219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4602424015 RX 110023 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 702938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5073710595 RX 1497769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5052303943 RX 109964 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 110 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 691067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4628167732 RX 1596235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4606046580 RX 110149 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 704441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5087782566 RX 1499665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5066342975 RX 110093 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 77 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 691453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4631685986 RX 1598227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4609549876 RX 110275 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 705949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5101931469 RX 1501585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5080458770 RX 110219 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 80 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 82 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 691841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4635245772 RX 1600171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4613094492 RX 110395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 707454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5115939570 RX 1503529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5094434053 RX 110348 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 692229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 65965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4638762199 RX 1602187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4616599682 RX 110521 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 708958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5130156249 RX 1505425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5108617499 RX 110477 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 692616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4642434070 RX 1604203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4620262950 RX 110647 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 710467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 61984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5144327568 RX 1507345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5122754195 RX 110603 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 32 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 693009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4646115445 RX 1606219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4623932749 RX 110773 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 711973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5158484535 RX 1509289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5136878040 RX 110732 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 138 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 693399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4649820725 RX 1608235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4627627396 RX 110899 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 713485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5172675426 RX 1511185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5151035729 RX 110861 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 65 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 693787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4653487765 RX 1610251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4631283858 RX 111025 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 714992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5186808777 RX 1513105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5165136003 RX 110987 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 69 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 694173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4657052301 RX 1612219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4634836340 RX 111148 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 716501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5200973424 RX 1515049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5179267520 RX 111116 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 81 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 694561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4660559613 RX 1614235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4638330697 RX 111274 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 718006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5215155480 RX 1516945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5193416407 RX 111245 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 694948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4664139206 RX 1616203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4641899409 RX 111397 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 719512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5229321646 RX 1518865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5207548947 RX 111371 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 7 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 695343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4667670162 RX 1618195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4645414301 RX 111523 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 721017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5243440723 RX 1520809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5221634978 RX 111500 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 695730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4671263822 RX 1620187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4648994350 RX 111646 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 722524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5257539961 RX 1522705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5235701211 RX 111629 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 204 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 696118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4674881223 RX 1622179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4652600233 RX 111772 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 724032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5271683809 RX 1524625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5249811965 RX 111755 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 62 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 696505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4678434737 RX 1624171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4656141275 RX 111895 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 725538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5285853448 RX 1526569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5263948462 RX 111884 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 697074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 66965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4682218611 RX 1626187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4659906943 RX 112021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 726798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5297829732 RX 1528465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5275895786 RX 112013 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2201 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 697860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4685463793 RX 1628251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4663118957 RX 112150 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 727702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 62944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5306397233 RX 1530385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5284442273 RX 112139 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3318 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2170 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 698653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4689062541 RX 1630267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4666685299 RX 112276 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 728609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5314889530 RX 1532329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5292913706 RX 112268 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2143 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 699426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4692260935 RX 1632331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4669851475 RX 112405 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 729514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5323446136 RX 1534225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5301448830 RX 112397 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2381 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 700216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4695506195 RX 1634395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4673061377 RX 112534 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 730417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5331975268 RX 1536145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5309958011 RX 112523 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2172 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 701004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4698695445 RX 1636411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4676217486 RX 112660 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 731321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5340457357 RX 1538089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5318420235 RX 112652 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2268 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2095 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 701769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4701879687 RX 1638475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4679368568 RX 112789 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 732226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5348957560 RX 1539985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5326900544 RX 112781 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2173 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 702565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4705090063 RX 1640539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4682546521 RX 112918 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 733129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5357512085 RX 1541905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5335434575 RX 112907 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2367 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 703337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4708368508 RX 1642555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4685789567 RX 113044 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 734071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5366379620 RX 1543849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5344281364 RX 113036 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1563 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 703738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4711959608 RX 1644571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4689364524 RX 113170 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 735587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5380659737 RX 1545745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5358528095 RX 113165 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 97 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 704126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4715438654 RX 1646491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4692828312 RX 113290 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 737092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5394785150 RX 1547665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5372620456 RX 113291 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 704513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4718971803 RX 1648411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4696346373 RX 113410 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 738600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5408875493 RX 1549609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5386677809 RX 113420 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 704900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 67975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4722497620 RX 1650427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4699858295 RX 113536 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 740106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5423024651 RX 1551505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5400793867 RX 113549 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 705287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4726024038 RX 1652467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4703371719 RX 113665 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 741610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5437166768 RX 1553425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5414902909 RX 113675 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 705676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4729677883 RX 1654435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4707014466 RX 113788 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 743115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 63985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5451310292 RX 1555369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5429013345 RX 113804 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 248 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 706069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4733278540 RX 1656427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4710600172 RX 113911 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 744627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5465470208 RX 1557265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5443140124 RX 113933 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 706457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4736792502 RX 1658443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4714100110 RX 114037 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 746131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5479643876 RX 1559185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5457280646 RX 114059 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 706843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4740268070 RX 1660411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4717559888 RX 114160 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 747635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5493679367 RX 1561129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5471283269 RX 114188 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 707230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4743777988 RX 1662427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4721056055 RX 114286 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 749143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5507819550 RX 1563025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5485389873 RX 114317 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 707617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4747317481 RX 1664443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4724583710 RX 114412 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 750650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5521992932 RX 1564945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5499529116 RX 114443 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 708010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4750836595 RX 1666435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4728086317 RX 114538 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 752155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5536139210 RX 1566889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5513642303 RX 114572 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 708398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4754388463 RX 1668475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4731624579 RX 114664 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 753661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5550296177 RX 1568785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5527766146 RX 114701 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 708786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4757959467 RX 1670491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4735180929 RX 114790 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 755173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5564442653 RX 1570705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5541879511 RX 114827 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 709173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4761498787 RX 1672459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4738706213 RX 114913 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 756679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5578611203 RX 1572649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5556014908 RX 114956 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 709559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 68976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4765046850 RX 1674427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4742239803 RX 115036 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 758192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5592697690 RX 1574545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5570065954 RX 115085 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 709950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4768531191 RX 1676443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4745710629 RX 115162 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 759696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5606947201 RX 1576465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5584282172 RX 115211 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 442 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 710344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4772213062 RX 1678435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4749380430 RX 115288 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 761205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 64945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5621148715 RX 1578409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5598450476 RX 115340 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 164 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 710730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4775909830 RX 1680427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4753068557 RX 115411 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 762711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5635262287 RX 1580305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5612531011 RX 115469 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 711118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4779590198 RX 1682395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4756739815 RX 115534 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 764216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5649367924 RX 1582225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5626603636 RX 115595 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 498 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 78 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 711505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4783256822 RX 1684411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4760397854 RX 115660 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 765720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5663495896 RX 1584169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5640698559 RX 115724 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 711882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 4786724104 RX 1686604 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4763854334 RX 115982 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 767225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 5677681150 RX 1586065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5654850630 RX 115853 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 6 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 711900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: ulsch_rounds 69505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 4786730514 RX 1688773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4763854906 RX 116672 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 768472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE c22c: ulsch_rounds 65357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 5689254817 RX 1588987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5666392397 RX 117021 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 712200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 2421: ulsch_rounds 69571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4788166110 RX 1690723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4765285221 RX 117518 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 769118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5691382553 RX 1591664 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5668485821 RX 117979 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 712587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4791683185 RX 1692742 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4768793513 RX 117726 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 769946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5694170891 RX 1593560 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5671238225 RX 118108 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3951 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4069 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 712974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4795350001 RX 1694734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4772451745 RX 117849 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 770788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5697065312 RX 1595480 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5674098419 RX 118234 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4168 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 713361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4798981423 RX 1696750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4776074651 RX 117975 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 771626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5699994631 RX 1597424 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5676992169 RX 118363 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4395 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 713749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4802642926 RX 1698766 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4779727581 RX 118101 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 772468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5702965585 RX 1599320 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5679928446 RX 118492 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4150 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 714144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 69987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4806376606 RX 1700734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4783448108 RX 118224 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 773309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5705877063 RX 1601240 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5682803926 RX 118618 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4059 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 714531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4810009309 RX 1702750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4787072291 RX 118350 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 774140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 65930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5708721680 RX 1603184 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5685614093 RX 118747 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4164 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 714919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4813663373 RX 1704718 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4790717299 RX 118473 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 774977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5711593842 RX 1605080 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5688449594 RX 118876 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 715305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4817359949 RX 1706734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4794405233 RX 118599 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 775842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5714521053 RX 1607000 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5691341381 RX 119002 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4341 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 715692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4821052877 RX 1708750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4798089520 RX 118725 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 776760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5717715231 RX 1608944 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5694496523 RX 119131 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4068 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 716082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4824764493 RX 1710718 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4801790493 RX 118848 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 777582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5720620782 RX 1610840 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5697368018 RX 119260 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 716474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4828408396 RX 1712734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4805423881 RX 118974 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 778412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5723546332 RX 1612760 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5700258298 RX 119386 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4274 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 716861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4832144636 RX 1714726 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4809150904 RX 119100 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 779255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5726453719 RX 1614704 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5703128806 RX 119515 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4022 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4124 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 717248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4835778620 RX 1716742 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4812776367 RX 119226 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 780119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5729378796 RX 1616600 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5706019111 RX 119644 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3949 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 717635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4839437435 RX 1718782 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4816426612 RX 119352 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 780928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5732206852 RX 1618520 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5708813482 RX 119770 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 718531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4848022963 RX 1720822 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4824989672 RX 119481 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 781722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5735412174 RX 1620464 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5711986839 RX 119899 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2367 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 719442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4856590333 RX 1722862 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4833534053 RX 119607 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 782489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5738650391 RX 1622360 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5715192825 RX 120028 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2169 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2654 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 720352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 70994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4865084131 RX 1724926 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4842007942 RX 119736 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 783249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5742005802 RX 1624280 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5718516885 RX 120154 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2125 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 721259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4873634125 RX 1726966 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4850537935 RX 119865 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 784028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5745183811 RX 1626224 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5721661103 RX 120283 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2144 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 722168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4882216648 RX 1729006 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4859098907 RX 119991 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 784778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 66970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5748316508 RX 1628120 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5724763329 RX 120412 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3079 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 723076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4890766768 RX 1731070 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4867629024 RX 120120 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 785543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5751871928 RX 1630040 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5728288160 RX 120538 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 723989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4899276727 RX 1733110 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4876116092 RX 120249 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 786313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5755069160 RX 1631984 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5731454117 RX 120667 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2375 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 724897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4907815250 RX 1735150 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4884634140 RX 120375 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 787073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5758427086 RX 1633880 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5734781642 RX 120796 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2555 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 726211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4920184583 RX 1737214 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4896974540 RX 120504 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 787608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5761835273 RX 1635752 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5738168251 RX 120916 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 274 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 727712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4934167526 RX 1739254 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4910924730 RX 120633 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 787993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5765368445 RX 1637600 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5741686279 RX 121039 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 729212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4948209396 RX 1741294 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4924933242 RX 120759 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 788383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5768891343 RX 1639496 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5745193857 RX 121165 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 730709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4962268944 RX 1743358 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4938959895 RX 120888 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 788770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5772364047 RX 1641368 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5748651172 RX 121285 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 732204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4976253993 RX 1745398 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4952912206 RX 121017 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 789158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5775858637 RX 1643216 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5752128219 RX 121405 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 733704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 71932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 4990280328 RX 1747438 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4966905705 RX 121143 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 789544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5779414613 RX 1645112 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5755669910 RX 121531 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 342 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 735202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5004349284 RX 1749502 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4980941749 RX 121272 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 789929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5783055741 RX 1647032 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5759301003 RX 121657 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 736696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5018312061 RX 1751542 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 4994871835 RX 121401 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 790315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5786545364 RX 1648928 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5762774658 RX 121780 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 738193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5032249543 RX 1753582 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5008776179 RX 121527 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 790705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5790213267 RX 1650824 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5766428801 RX 121906 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 739694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5046292711 RX 1755646 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5022786466 RX 121656 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 791091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 67994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5793916179 RX 1652720 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5770123059 RX 122032 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 741190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5060289730 RX 1757686 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5036750726 RX 121785 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 791478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5797369393 RX 1654616 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5773561031 RX 122158 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 742688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5074280158 RX 1759726 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5050708391 RX 121911 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 791861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5800859857 RX 1656464 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5777035393 RX 122281 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 42 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 744191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5088311680 RX 1761790 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5064707057 RX 122040 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 792246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5804450247 RX 1658360 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5780611783 RX 122404 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 745690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5102388941 RX 1763830 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5078750892 RX 122169 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 792634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5807974712 RX 1660232 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5784121352 RX 122527 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 156 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 747188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5116397672 RX 1765870 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5092726824 RX 122295 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 793022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5811503138 RX 1662128 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5787633954 RX 122650 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 748691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5130455114 RX 1767934 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5106751351 RX 122424 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 793408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5815232354 RX 1664048 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5791354457 RX 122776 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 165 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 750198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5144561072 RX 1769974 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5120824289 RX 122553 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 793794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5818955684 RX 1665896 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5795068826 RX 122899 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 42 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 751704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 72956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5158698756 RX 1772014 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5134928400 RX 122679 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 794180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5822443456 RX 1667768 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5798542854 RX 123022 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 753211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5172770793 RX 1774078 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5148967487 RX 122808 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 794565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5825947947 RX 1669616 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5802031595 RX 123145 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 754719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5186903167 RX 1776118 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5163066294 RX 122937 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 794954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5829503501 RX 1671536 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5805570172 RX 123268 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 756222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5201052001 RX 1778158 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5177182022 RX 123063 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 795340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5833041194 RX 1673432 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5809094666 RX 123391 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 757724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5215123585 RX 1780222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5191220676 RX 123192 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 795729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 68933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5836559515 RX 1675256 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5812595757 RX 123514 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 759227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5229179554 RX 1782262 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5205243752 RX 123321 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 796115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5840109863 RX 1677152 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5816131036 RX 123637 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 760727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5243296897 RX 1784302 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5219328080 RX 123447 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 796501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5843599354 RX 1679072 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5819606709 RX 123763 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 167 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 762227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5257321567 RX 1786366 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5233319920 RX 123576 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 796886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5847254364 RX 1680992 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5823251574 RX 123886 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 763726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5271288044 RX 1788406 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5247253189 RX 123705 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 797275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5850818902 RX 1682864 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5826798436 RX 124009 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 16 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 765231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5285372816 RX 1790446 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5261304989 RX 123831 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 797662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5854321704 RX 1684784 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5830285826 RX 124135 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 766728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5299465388 RX 1792510 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5275364604 RX 123960 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 798052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5857747116 RX 1686656 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5833696588 RX 124258 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 768226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5313462536 RX 1794550 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5289328979 RX 124089 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 798437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5861242574 RX 1688504 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5837174792 RX 124384 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 769725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 73980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5327484326 RX 1796590 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5303317946 RX 124215 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 798823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5864800123 RX 1690400 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5840717368 RX 124507 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 771223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5341546562 RX 1798654 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5317347279 RX 124344 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 799209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5868339079 RX 1692296 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5844243149 RX 124633 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 772723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5355554676 RX 1800694 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5331322137 RX 124473 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 799597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5871880083 RX 1694144 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5847768726 RX 124756 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 774220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5369503632 RX 1802734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5345238420 RX 124599 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 799984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5875395908 RX 1696064 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5851269162 RX 124882 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 775718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5383554093 RX 1804798 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5359256005 RX 124728 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 800372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5878931995 RX 1697936 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5854790540 RX 125005 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 777214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5397577032 RX 1806838 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5373246124 RX 124857 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 800758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 69956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5882464393 RX 1699808 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5858310009 RX 125128 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 107 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 73 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 778712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5411554596 RX 1808878 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5387190956 RX 124983 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 801143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5885959804 RX 1701704 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5861791369 RX 125251 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 230 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 780213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5425555096 RX 1810942 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5401158208 RX 125112 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 801532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5889640951 RX 1703600 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5865459460 RX 125377 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 781713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5439633079 RX 1812982 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5415203244 RX 125241 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 801921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5893118776 RX 1705520 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5868921355 RX 125503 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 783211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5453628754 RX 1815022 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5429166155 RX 125367 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 802306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5896645217 RX 1707368 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5872431508 RX 125626 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 784709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5467594543 RX 1817086 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5443099237 RX 125496 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 802692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5900162919 RX 1709240 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5875932621 RX 125749 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 786211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 74920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5481706960 RX 1819126 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5457178637 RX 125625 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 803078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5903655346 RX 1711112 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5879410705 RX 125872 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 787715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5495774707 RX 1821166 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5471213455 RX 125751 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 803464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5907179533 RX 1712984 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5882920019 RX 125995 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 789223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5509879688 RX 1823230 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5485284925 RX 125880 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 803852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5910698819 RX 1714856 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5886421565 RX 126121 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 790732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5524006640 RX 1825270 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5499378811 RX 126009 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 804239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5914347400 RX 1716752 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5890057746 RX 126244 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 792234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5538178001 RX 1827310 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5513517036 RX 126135 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 804628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5917979992 RX 1718648 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5893680343 RX 126367 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 793737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5552247026 RX 1829374 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5527553128 RX 126264 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 805013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5921568611 RX 1720592 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5897256324 RX 126493 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 795242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5566317461 RX 1831414 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5541590623 RX 126393 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 805399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5925163129 RX 1722488 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5900836130 RX 126616 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 46 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 74 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 796742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5580408884 RX 1833454 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5555649078 RX 126519 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 805785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 70978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5928694141 RX 1724336 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5904354918 RX 126739 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 196 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 798245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5594495301 RX 1835518 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5569702042 RX 126648 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 806175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5932315231 RX 1726232 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5907964014 RX 126862 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 241 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 799748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5608518822 RX 1837558 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5583692715 RX 126777 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 806560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5935965098 RX 1728152 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5911602978 RX 126988 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 801249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5622587910 RX 1839598 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5597728881 RX 126903 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 806949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5939466832 RX 1730048 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5915086514 RX 127114 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 802746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5636641122 RX 1841662 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5611749201 RX 127032 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 807335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5942959266 RX 1731944 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5918561687 RX 127237 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 804246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 75944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5650672320 RX 1843702 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5625747561 RX 127161 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 807720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5946424240 RX 1733840 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5922008980 RX 127360 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 805748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5664696181 RX 1845742 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5639738114 RX 127287 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 808107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5949921283 RX 1735712 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5925487981 RX 127483 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 807244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5678770255 RX 1847806 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5653779263 RX 127416 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 808497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5953392739 RX 1737656 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5928942506 RX 127612 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 191 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 808740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5692739689 RX 1849846 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5667715988 RX 127545 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 808882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5957076332 RX 1739528 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5932616707 RX 127738 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 126 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 810238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5706705286 RX 1851886 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5681648875 RX 127671 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 809271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5960716531 RX 1741424 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5936241455 RX 127861 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 61 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 811739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5720754598 RX 1853950 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5695665308 RX 127800 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 809657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5964250029 RX 1743320 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5939761383 RX 127984 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 569 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 813229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5734773499 RX 1855990 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5709651418 RX 127929 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 810043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5967900909 RX 1745240 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5943403709 RX 128110 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 55 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 96 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 814728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5748751367 RX 1858030 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5723596055 RX 128055 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 810430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 71928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5971468203 RX 1747112 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5946953814 RX 128233 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 816227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5762733989 RX 1860094 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5737545929 RX 128184 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 810818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5975079962 RX 1749032 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5950552679 RX 128356 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 288 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 817726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5776801475 RX 1862134 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5751580494 RX 128313 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 811205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5978578338 RX 1750952 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5954035343 RX 128482 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 819220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5790755162 RX 1864174 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5765501506 RX 128439 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 811590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5981971996 RX 1752776 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5957411472 RX 128602 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 820721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5804732858 RX 1866238 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5779446463 RX 128568 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 811976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5985586240 RX 1754624 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5961012471 RX 128722 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 480 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 822221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 76968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5818758617 RX 1868278 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5793439384 RX 128697 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 812362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5989289536 RX 1756520 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5964707114 RX 128845 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 15 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 823721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5832846183 RX 1870318 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5807493496 RX 128823 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 812752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5992899608 RX 1758392 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5968305811 RX 128968 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 23 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 825224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5846876232 RX 1872382 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5821490689 RX 128952 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 813138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 5996645898 RX 1760288 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5972042866 RX 129091 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 10 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 826733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5861022768 RX 1874422 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5835604118 RX 129081 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 813526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6000206778 RX 1762208 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5975588963 RX 129217 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 35 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 828238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5875192404 RX 1876462 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5849740610 RX 129207 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 813912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6003751052 RX 1764032 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5979119553 RX 129337 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 83 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 829744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5889325560 RX 1878526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5863840699 RX 129336 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 814297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6007296908 RX 1765928 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5982651388 RX 129463 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 54 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 831248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5903366106 RX 1880566 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5877848368 RX 129465 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 814683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6010758199 RX 1767776 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5986095544 RX 129583 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 832751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5917472464 RX 1882606 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5891921242 RX 129591 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 815072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6014349464 RX 1769696 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5989672595 RX 129709 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 834251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5931524335 RX 1884670 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5905940227 RX 129720 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 815458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 72946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6017857805 RX 1771544 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5993167553 RX 129832 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 835757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5945585683 RX 1886710 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5919968645 RX 129849 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 815847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6021460410 RX 1773464 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 5996756240 RX 129955 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 837260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5959701877 RX 1888750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5934051813 RX 129975 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 816233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6024949161 RX 1775336 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6000230383 RX 130078 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 838754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5973749518 RX 1890814 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5948066590 RX 130104 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 816616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6028349251 RX 1777184 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6003615281 RX 130201 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 840256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 77992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 5987784989 RX 1892854 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5962068702 RX 130233 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 817001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6031860581 RX 1779056 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6007110072 RX 130324 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 841758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6001818686 RX 1894894 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5976069549 RX 130359 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 817390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6035412127 RX 1780928 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6010644060 RX 130447 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 843255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6015857369 RX 1896958 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 5990075393 RX 130488 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 817778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6038970364 RX 1782800 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6014187521 RX 130570 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 844752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6029858357 RX 1898998 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6004043593 RX 130617 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 818165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6042446311 RX 1784600 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6017646535 RX 130690 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 846249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6043805840 RX 1901038 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6017958409 RX 130743 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 818550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6046010743 RX 1786520 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6021196138 RX 130813 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 357 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 847749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6057883823 RX 1903102 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6032003451 RX 130872 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 818936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6049694455 RX 1788392 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6024871234 RX 130936 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 44 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 849243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6071882487 RX 1905142 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6045968863 RX 131001 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 819323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6053239445 RX 1790216 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6028401454 RX 131056 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 127 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 850739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6085884753 RX 1907182 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6059938352 RX 131127 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 819710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6056777735 RX 1792064 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6031924014 RX 131179 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 852240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6099895089 RX 1909246 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6073915875 RX 131256 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 820097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6060315374 RX 1793912 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6035445647 RX 131302 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 201 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 853737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6113961165 RX 1911286 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6087949047 RX 131385 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 820483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 73957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6063919999 RX 1795832 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6039039795 RX 131428 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 21 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 130 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 855233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6127909926 RX 1913326 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6101865135 RX 131511 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 820868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6067443039 RX 1797704 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6042545844 RX 131554 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 856731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 78930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6141849411 RX 1915390 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6115771969 RX 131640 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 821254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6070913873 RX 1799600 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6045999861 RX 131677 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 858234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6155909716 RX 1917430 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6129798876 RX 131769 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 821645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 6074556828 RX 1801496 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6049629927 RX 131800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 518 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 859729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 6169909486 RX 1919630 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6143765873 RX 132046 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 821767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE c22c: ulsch_rounds 74245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6075557877 RX 1804006 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6050621225 RX 132725 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 860336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6173928368 RX 1923241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6147756532 RX 133875 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 821904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: ulsch_rounds 74290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 6076069349 RX 1806090 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6051128475 RX 133460 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 861164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6176782779 RX 1925281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6150577253 RX 134001 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 822290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 6079003426 RX 1807752 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6054055436 RX 133638 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3940 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 862032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6179885643 RX 1927345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6153643936 RX 134130 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 822676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6082654498 RX 1809771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6057697948 RX 133846 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 862875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6182833314 RX 1929385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6156557988 RX 134259 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 823061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6086381026 RX 1811691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6061415768 RX 133972 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4181 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5261 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 863787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6186217869 RX 1931425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6159904859 RX 134385 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 823451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6090138530 RX 1813611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6065162534 RX 134095 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4176 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 864621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6189089088 RX 1933489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6162741291 RX 134514 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 823837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6093815714 RX 1815555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6068831105 RX 134221 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 865438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6191932952 RX 1935529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6165549045 RX 134643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 824226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6097500914 RX 1817427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6072506204 RX 134344 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4086 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 866264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6194757148 RX 1937569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6168338624 RX 134769 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 824611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6101221106 RX 1819323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6076217706 RX 134470 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3923 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4061 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 867109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6197651394 RX 1939633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6171197445 RX 134898 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 825025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 74920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6105164621 RX 1821243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6080151990 RX 134593 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2473 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 867893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 79972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6200856089 RX 1941673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6174369271 RX 135027 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 825931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6113734217 RX 1823163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6088700069 RX 134722 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2234 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 868677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6204072285 RX 1943713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6177552086 RX 135153 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 826835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6122263091 RX 1825083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6097208986 RX 134848 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2207 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 869462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6207621293 RX 1945777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6181067915 RX 135282 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 827740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6130770014 RX 1827027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6105695988 RX 134977 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3096 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2142 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 870231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6210807548 RX 1947817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6184223568 RX 135411 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 828644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6139298169 RX 1828923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6114203700 RX 135106 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2245 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 871017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6213972117 RX 1949857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6187355093 RX 135537 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 829549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6147867831 RX 1830843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6122751853 RX 135232 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 871794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6217178217 RX 1951921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6190529021 RX 135666 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 830454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6156360225 RX 1832787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6131224372 RX 135361 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2232 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 872586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6220629900 RX 1953961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6193945551 RX 135795 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 831358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6164851596 RX 1834683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6139695850 RX 135490 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2249 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 873388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6223889260 RX 1956001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6197170442 RX 135921 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 832262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6173378470 RX 1836603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6148202278 RX 135616 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2536 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 874207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6226817878 RX 1958065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6200065153 RX 136050 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 832809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6178591380 RX 1838547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6153402017 RX 135742 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 875012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6229680067 RX 1960105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6202894656 RX 136179 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 833199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6182205268 RX 1840419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6157005449 RX 135865 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4156 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 875842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6232519293 RX 1962145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6205699506 RX 136305 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 833584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6185931988 RX 1842339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6160723464 RX 135988 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 876636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6235358680 RX 1964209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6208505357 RX 136434 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 833970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6189654868 RX 1844259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6164437649 RX 136114 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4093 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 877484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 80996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6238265375 RX 1966249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6211377457 RX 136563 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 834356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 75959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6193344724 RX 1846179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6168118875 RX 136237 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4028 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 878304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6241154558 RX 1968289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6214232720 RX 136689 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 834744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6197053156 RX 1848051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6171817162 RX 136360 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4430 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 879164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6244156838 RX 1970353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6217200164 RX 136818 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 835131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6200789588 RX 1849947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6175544373 RX 136483 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 880007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6247075208 RX 1972393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6220083149 RX 136947 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 835521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6204462036 RX 1851843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6179206246 RX 136609 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4085 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 880806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6249869442 RX 1974433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6222842978 RX 137073 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 835907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6208152084 RX 1853763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6182887666 RX 136735 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3918 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 881642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6252733547 RX 1976497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6225672511 RX 137202 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 836292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6211891860 RX 1855683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6186618710 RX 136858 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3970 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 882451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6255599923 RX 1978537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6228505038 RX 137331 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 836679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6215628292 RX 1857627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6190345925 RX 136984 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 883262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6258533202 RX 1980577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6231404260 RX 137457 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 837069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6219300740 RX 1859547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6194007801 RX 137107 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4287 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 884101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6261366187 RX 1982641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6234201179 RX 137586 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 837454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6223033988 RX 1861467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6197732336 RX 137230 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4062 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 884933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6264251327 RX 1984657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6237051490 RX 137712 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 837843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6226784468 RX 1863363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6201472582 RX 137353 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3959 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 885750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6267093609 RX 1986721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6239860240 RX 137841 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 838229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6230461652 RX 1865259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6205141157 RX 137479 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5061 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 886633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 81934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6270362731 RX 1988785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6243092421 RX 137970 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 838615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6234184340 RX 1867179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6208855146 RX 137602 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4064 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 887461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6273230147 RX 1990801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6245925444 RX 138096 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 839003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6237938468 RX 1869051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6212599038 RX 137725 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 888281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6276072311 RX 1992865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6248732261 RX 138225 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 839392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 76991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6241675892 RX 1870947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6216326255 RX 137848 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3967 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 889121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6278940468 RX 1994929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6251564793 RX 138354 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 839778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6245326772 RX 1872843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6219968580 RX 137971 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3974 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 889952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6281773237 RX 1996945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6254363209 RX 138480 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 840163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6249053492 RX 1874763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6223686593 RX 138097 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3981 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 890791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6284623014 RX 1999009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6257176435 RX 138609 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 840549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6252782708 RX 1876659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6227407098 RX 138220 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 891615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6287455163 RX 2001073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6259975337 RX 138738 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 840935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6256492532 RX 1878555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6231108250 RX 138343 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4093 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 892459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6290415061 RX 2003089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6262899693 RX 138864 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 841324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6260177732 RX 1880451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6234783349 RX 138466 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4239 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4058 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 893302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6293301003 RX 2005153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6265751481 RX 138993 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 841710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6263911284 RX 1882395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6238507693 RX 138592 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 894129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6296187995 RX 2007217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6268604230 RX 139122 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 842099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6267589572 RX 1884267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6242175893 RX 138715 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 894973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6299110500 RX 2009233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6271490610 RX 139248 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 842485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6271260228 RX 1886187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6245837953 RX 138838 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4060 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 895820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6302006028 RX 2011297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6274350894 RX 139377 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 842870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6274986948 RX 1888059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6249555968 RX 138961 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4064 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 896670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 82958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6304867184 RX 2013361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6277176497 RX 139506 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 843256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6278735556 RX 1890003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6253295825 RX 139084 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 897472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6307707592 RX 2015377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6279981787 RX 139632 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 843646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6282369028 RX 1891899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6256918807 RX 139210 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 898323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6310571092 RX 2017441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6282810344 RX 139761 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 844031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 77945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6286069636 RX 1893819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6260610769 RX 139333 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4022 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4209 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 899196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6313514041 RX 2019505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6285717016 RX 139890 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 844420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6289807060 RX 1895739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6264337988 RX 139456 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4168 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 900026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6316407719 RX 2021521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6288576194 RX 140016 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 844806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6293503636 RX 1897683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6268025915 RX 139582 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 900872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6319342849 RX 2023585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6291474910 RX 140145 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 845192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6297167572 RX 1899555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6271681271 RX 139705 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 901729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6322203260 RX 2025649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6294300062 RX 140274 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 845578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6300927428 RX 1901475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6275431862 RX 139828 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4042 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 902561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6325049431 RX 2027665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6297110364 RX 140400 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 845968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6304639044 RX 1903323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6279132830 RX 139951 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 903389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6327920366 RX 2029729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6299946341 RX 140529 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 846355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6308316724 RX 1905219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6282801407 RX 140074 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4465 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 904254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6330968388 RX 2031793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6302959667 RX 140658 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 846742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6312044436 RX 1907115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6286519424 RX 140197 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4126 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 905064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6333825058 RX 2033809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6305781790 RX 140784 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 847128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6315799956 RX 1909011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6290266183 RX 140320 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3966 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 905882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6336687401 RX 2035873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6308609861 RX 140913 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 847514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6319463892 RX 1910955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6293921538 RX 140446 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 906740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 83982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6339867516 RX 2037937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6311753493 RX 141042 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 847903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6323168676 RX 1912827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6297616177 RX 140569 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 907552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6342604645 RX 2039953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6314457046 RX 141168 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 848290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6326935556 RX 1914747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6301373286 RX 140692 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3754 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 908378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6345440341 RX 2042017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6317258436 RX 141297 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 848677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6330671988 RX 1916619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6305100498 RX 140815 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4161 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 909226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6348420018 RX 2044081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6320202118 RX 141426 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 849063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 78975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6334349172 RX 1918539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6308769079 RX 140941 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4292 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 910057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6351404223 RX 2046097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6323150216 RX 141552 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 849558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6339208224 RX 1920435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6313616818 RX 141064 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 910848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6354544318 RX 2048161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6326255471 RX 141681 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 850461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6347756926 RX 1922331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6322145036 RX 141193 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2120 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2118 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 911626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6357699400 RX 2050225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6329376522 RX 141810 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 851365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6356259880 RX 1924251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6330628096 RX 141319 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2161 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 912395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6360882523 RX 2052241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6332528185 RX 141936 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 852268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6364822741 RX 1926195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6339170936 RX 141448 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 913192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6364066387 RX 2054305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6335676398 RX 142065 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 853172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6373326976 RX 1928091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6347655274 RX 141577 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2231 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2299 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 913971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6367300006 RX 2056369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6338877903 RX 142194 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 854079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6381838138 RX 1930011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6356145033 RX 141703 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2262 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 914748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6370510880 RX 2058385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6342057228 RX 142320 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 854988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6390357155 RX 1931955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6364642134 RX 141832 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2253 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 915543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 84920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6373773356 RX 2060449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6345284072 RX 142449 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 855890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6398905745 RX 1933851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6373170728 RX 141961 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2358 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 916334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6377038051 RX 2062513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6348516353 RX 142578 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 856794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6407415035 RX 1935771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6381660112 RX 142087 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2431 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 916834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6380797110 RX 2064481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6352255778 RX 142701 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 858180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6420406454 RX 1937715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6394621129 RX 142216 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 917227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6384341450 RX 2066449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6355784101 RX 142824 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 859687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6434560670 RX 1939611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6408742231 RX 142345 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 917615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6387908488 RX 2068441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6359338143 RX 142950 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 861197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 79932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6448771208 RX 1941531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6422919524 RX 142471 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 74 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 918000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6391465163 RX 2070433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6362881858 RX 143073 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 862700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6462840425 RX 1943475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6436955810 RX 142600 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 21 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 918387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6394972575 RX 2072377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6366375149 RX 143196 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 864206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6476953470 RX 1945371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6451035339 RX 142729 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 918773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6398424274 RX 2074369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6369810605 RX 143319 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 865710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6490982049 RX 1947291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6465031064 RX 142855 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 919169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6401965938 RX 2076385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6373336069 RX 143445 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 867218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6505182348 RX 1949235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6479198153 RX 142984 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 919557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6405481380 RX 2078353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6376838128 RX 143568 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 868724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6519345459 RX 1951131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6493328134 RX 143113 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 919945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6408947036 RX 2080297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6380288956 RX 143691 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 870230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6533501145 RX 1953051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6507450696 RX 143239 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 920330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6412541517 RX 2082289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6383870772 RX 143814 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 871735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6547599165 RX 1954995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6521515726 RX 143368 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 920717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6416152380 RX 2084257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6387471606 RX 143937 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 873239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6561767586 RX 1956891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6535651008 RX 143497 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 921105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 85996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6419826220 RX 2086273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6391136347 RX 144063 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 874746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6575946441 RX 1958811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6549796698 RX 143623 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 921500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6423226965 RX 2088265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6394516560 RX 144189 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 876255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6590098224 RX 1960755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6563915367 RX 143752 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 921887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6426780163 RX 2090233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6398056580 RX 144312 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 877758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6604170195 RX 1962651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6577954408 RX 143881 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 922273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6430256622 RX 2092225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6401519838 RX 144435 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 879266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6618319098 RX 1964571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6592070203 RX 144007 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 922660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6433724188 RX 2094193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6404969618 RX 144558 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 880771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 80973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6632327199 RX 1966515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6606045488 RX 144136 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 923048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6437247310 RX 2096161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6408482254 RX 144681 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 882278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6646545366 RX 1968411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6620228943 RX 144265 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 923440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6440814898 RX 2098129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6412034102 RX 144804 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 883785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6660725694 RX 1970331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6634376100 RX 144391 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 180 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 923830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6444494785 RX 2100121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6415703894 RX 144930 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 885291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6674882661 RX 1972275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6648499948 RX 144520 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 924217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6448198577 RX 2102137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6419398535 RX 145056 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 886803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6689073552 RX 1974171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6662657623 RX 144649 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 42 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 924604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6451796443 RX 2104153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6422983668 RX 145182 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 888310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6703206903 RX 1976091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6676757899 RX 144775 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 36 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 924990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6455274934 RX 2106193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6426447075 RX 145308 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 889822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6717363037 RX 1978035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6690878933 RX 144904 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 552 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 925378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6458920969 RX 2108209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6430083751 RX 145434 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 891327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6731535092 RX 1979931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6705017348 RX 145033 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 204 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 925774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 86992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6462571384 RX 2110177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6433721178 RX 145557 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 892832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6745700762 RX 1981851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6719149873 RX 145159 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 926162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6466199116 RX 2112169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6437338352 RX 145683 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 894337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6759819839 RX 1983795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6733235908 RX 145288 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 926548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6469759295 RX 2114161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6440883749 RX 145806 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 895844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6773919077 RX 1985691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6747302129 RX 145417 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 31 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 926935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6473280279 RX 2116177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6444392362 RX 145932 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 897352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6788062925 RX 1987611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6761412881 RX 145543 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 927322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6476849768 RX 2118193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6447950991 RX 146058 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 898858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 81933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6802232564 RX 1989555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6775549366 RX 145672 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 927713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6480386089 RX 2120113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6451471039 RX 146178 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 900360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6816371990 RX 1991451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6789655717 RX 145801 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 928105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6483917201 RX 2122129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6454982958 RX 146304 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 901872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6830491265 RX 1993371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6803741928 RX 145927 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 928490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6487474919 RX 2124097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6458529349 RX 146427 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 903377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6844675238 RX 1995315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6817892727 RX 146056 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 369 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 928875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6491122695 RX 2126065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6462167178 RX 146550 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 904879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6858715463 RX 1997211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6831900082 RX 146185 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 929262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6494655434 RX 2128081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6465687709 RX 146676 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 906384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6872860460 RX 1999131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6846011989 RX 146311 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 929649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6498240648 RX 2130121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6469262516 RX 146805 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 907891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6887043651 RX 2001075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6860161511 RX 146440 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 150 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 930043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6501746383 RX 2132017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6472749784 RX 146922 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 909397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6901181034 RX 2002971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6874265819 RX 146569 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 930437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 87985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6505363924 RX 2133985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6476354681 RX 147045 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 910894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6915189639 RX 2004891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6888241635 RX 146695 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 931251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6508782841 RX 2136049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6479739989 RX 147174 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 911800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6923765585 RX 2006835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6896796547 RX 146824 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2163 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 932031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6511982928 RX 2138113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6482907002 RX 147303 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 912703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6932305197 RX 2008731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6905315704 RX 146953 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2221 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2247 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 932797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6515179282 RX 2140129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6486070486 RX 147429 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 913608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6940799064 RX 2010651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6913789700 RX 147079 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2112 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 933576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6518402200 RX 2142193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6489260205 RX 147558 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 914514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6949323875 RX 2012595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6922293580 RX 147208 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2430 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 934368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6521951727 RX 2144257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6492777521 RX 147687 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 915422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 82973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6957854014 RX 2014491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6930801290 RX 147337 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2967 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 935137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6525089564 RX 2146273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6495881314 RX 147813 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 916326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6966397225 RX 2016411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6939324525 RX 147463 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2042 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2113 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 935915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6528250138 RX 2148337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6499010281 RX 147942 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 917230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6974894932 RX 2018355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6947802350 RX 147592 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2189 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 936685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6531459455 RX 2150401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6502188164 RX 148071 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 918134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6983404414 RX 2020251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6956291909 RX 147721 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2228 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 937223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6534899086 RX 2152369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6505604175 RX 148194 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 919435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 6995587432 RX 2022171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6968446404 RX 147847 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 241 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 63 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 937610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6538452122 RX 2154313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6509144769 RX 148317 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 920942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 7009740367 RX 2024115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6982566228 RX 147976 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 937999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6541987932 RX 2156353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6512664904 RX 148443 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 922452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 7023897400 RX 2026011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 6996690121 RX 148105 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 938394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 88998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6545524593 RX 2158321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6516185650 RX 148566 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 923958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 7038126175 RX 2027931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7010885635 RX 148231 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 158 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 938781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6549150027 RX 2160289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6519801692 RX 148689 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 925468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 7052343241 RX 2029875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7025069453 RX 148360 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 939169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6552730541 RX 2162257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6523367798 RX 148812 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 926974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 7066420207 RX 2031771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7039113467 RX 148489 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 45 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 939556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6556272192 RX 2164225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6526897089 RX 148935 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 928479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 7080573205 RX 2033691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7053233352 RX 148615 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 622 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 939943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 6559743729 RX 2166241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6530354169 RX 149061 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 929989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 7094757439 RX 2035635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7067384415 RX 148744 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 52 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 940025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 2421: ulsch_rounds 89373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6560415326 RX 2168681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6531018881 RX 149974 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 931498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 83941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 7108884391 RX 2037765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7081478299 RX 149098 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 940242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 19 +UE 2421: ulsch_rounds 89433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6561302268 RX 2170843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6531901517 RX 150812 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 932048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7111129169 RX 2041263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7083691804 RX 150855 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 940629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 6564534672 RX 2172667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6535125721 RX 150926 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 932866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7113995163 RX 2043207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7086524361 RX 150984 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3974 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 941016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6568253520 RX 2174761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6538835868 RX 151142 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 933687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7116852004 RX 2045103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7089346008 RX 151113 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4136 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 941403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6571894224 RX 2176777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6542468035 RX 151268 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 934498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7119680286 RX 2047023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7092140459 RX 151239 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4058 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 941791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6575566399 RX 2178793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6546131116 RX 151394 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 935345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7122593510 RX 2048967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7095017436 RX 151368 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 942188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6579307791 RX 2180761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6549858351 RX 151517 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 936184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7125447264 RX 2050863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7097836600 RX 151497 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4017 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 942576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 89930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6582986494 RX 2182777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6553527947 RX 151643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 937016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7128311283 RX 2052783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7100666113 RX 151623 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3996 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 942964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6586673198 RX 2184793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6557205533 RX 151769 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 937827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7131087418 RX 2054727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7103406761 RX 151752 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 943350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6590369966 RX 2186761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6560893656 RX 151892 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 938664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7133955599 RX 2056623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7106239248 RX 151881 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4439 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 943737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6594082478 RX 2188777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6564597486 RX 152018 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 939518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7136957724 RX 2058543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7109203157 RX 152007 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3939 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4410 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 944132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6597783518 RX 2190793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6568285432 RX 152144 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 940391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7140144340 RX 2060487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7112354825 RX 152136 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 944524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6601453533 RX 2192761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6571944880 RX 152267 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 941236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7143112831 RX 2062383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7115288118 RX 152265 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 944911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6605209357 RX 2194729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6575691442 RX 152390 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 942124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 84997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7146397661 RX 2064303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7118535635 RX 152391 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 945298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6608856397 RX 2196745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6579329933 RX 152516 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 942932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7149223617 RX 2066247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7121329104 RX 152520 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4216 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4083 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 945684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6612540109 RX 2198713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6583005023 RX 152639 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 943777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7152202619 RX 2068143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7124273337 RX 152649 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 946071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6616192204 RX 2200729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6586648565 RX 152765 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 944601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7155010648 RX 2070063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7127045067 RX 152775 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 946467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6619848571 RX 2202745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6590291923 RX 152891 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 945434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7157840021 RX 2072007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7129839037 RX 152904 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4212 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 946855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6623521130 RX 2204737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6593955390 RX 153017 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 946276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7160758922 RX 2073903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7132721892 RX 153033 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4002 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 947243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 90929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6627227226 RX 2206729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6597652325 RX 153140 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 947119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7163633590 RX 2075823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7135562805 RX 153159 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4112 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 947630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6630892569 RX 2208745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6601309080 RX 153266 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 947942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7166463862 RX 2077767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7138357266 RX 153288 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 948017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6634546137 RX 2210761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6604954095 RX 153392 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 948777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7169390690 RX 2079663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7141247551 RX 153417 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4208 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4061 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 948406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6638250921 RX 2212777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6608648737 RX 153518 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 949624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7172279547 RX 2081583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7144100856 RX 153543 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 948800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6641966521 RX 2214793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6612352197 RX 153644 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 950457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7175127641 RX 2083527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7146914077 RX 153672 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4086 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 949188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6645619304 RX 2216809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6615995931 RX 153770 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 951304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7178042446 RX 2085423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7149792541 RX 153801 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4253 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 949574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6649303016 RX 2218777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6619671019 RX 153893 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 952124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 85957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7180845593 RX 2087343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7152559745 RX 153927 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3794 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4203 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 949961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6652995560 RX 2220745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6623354924 RX 154016 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 952976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7183776583 RX 2089287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7155454511 RX 154056 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4073 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 950347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6656638631 RX 2222761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6626989460 RX 154142 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 953828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7186669801 RX 2091183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7158310745 RX 154185 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4057 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 950745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6660273351 RX 2224777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6630610724 RX 154268 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 954655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7189533859 RX 2093103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7161139772 RX 154311 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4079 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 951134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6663990999 RX 2226793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6634318210 RX 154394 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 955454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7192270691 RX 2095047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7163842339 RX 154440 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 951522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6667684423 RX 2228809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6638002503 RX 154520 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 956282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7195023529 RX 2096943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7166559250 RX 154569 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 951909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 91931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6671357575 RX 2230777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6641667054 RX 154643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 957170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7198125664 RX 2098863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7169623004 RX 154695 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 952295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6675067399 RX 2232745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6645368204 RX 154766 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 957981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7200941445 RX 2100807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7172405138 RX 154824 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3949 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3982 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 952709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6678954237 RX 2234761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6649244950 RX 154892 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 958806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7203778505 RX 2102703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7175207965 RX 154953 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2343 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 953618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6687596220 RX 2236825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6657863882 RX 155021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 959583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7206929550 RX 2104623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7178325031 RX 155079 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2023 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 954532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6696115922 RX 2238889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6666361167 RX 155150 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 960338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7210135773 RX 2106543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7181499925 RX 155208 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2280 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2302 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 955439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6704620412 RX 2240905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6674845745 RX 155276 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 961096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7213352602 RX 2108463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7184686650 RX 155334 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2129 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 956350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6713203030 RX 2242969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6683405834 RX 155405 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 961837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7216494241 RX 2110407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7187798849 RX 155463 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2153 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 957260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6721738332 RX 2245033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6691920174 RX 155534 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 962606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 86998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7219753908 RX 2112303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7191027606 RX 155592 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2332 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 958168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6730282821 RX 2247049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6700444665 RX 155660 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 963362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7223015041 RX 2114223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7194255381 RX 155718 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2235 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2140 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 959078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6738817774 RX 2249113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6708957670 RX 155789 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 964109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7226161252 RX 2116167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7197371481 RX 155847 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2575 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 959989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6747395864 RX 2251177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6717513721 RX 155918 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 964882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7229725665 RX 2118063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7200903692 RX 155976 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2677 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 961288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6759554272 RX 2253193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6729642673 RX 156044 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 965418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87314/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7233148571 RX 2119911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7204304484 RX 156096 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 962786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 92950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6773591677 RX 2255257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6743647224 RX 156173 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 965804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7236728748 RX 2121783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7207873978 RX 156219 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 964292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6787666081 RX 2257321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6757688670 RX 156302 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 966189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7240468524 RX 2123703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7211605025 RX 156345 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 18 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 965798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6801797210 RX 2259337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6771786271 RX 156428 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 966578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7244034995 RX 2125575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7215156388 RX 156468 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 967306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6815979137 RX 2261401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6785935028 RX 156557 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 966964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7247536793 RX 2127423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7218644303 RX 156591 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 968810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6830078243 RX 2263465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6800001139 RX 156686 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 967352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7251086933 RX 2129319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7222178145 RX 156711 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 970314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6844144709 RX 2265481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6814034665 RX 156812 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 967738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7254619277 RX 2131191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7225695984 RX 156837 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 971812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6858247586 RX 2267545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6828104556 RX 156941 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 968124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7258157298 RX 2133111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7229222257 RX 156960 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 973313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6872302145 RX 2269609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6842126218 RX 157070 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 968509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 87944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7261660684 RX 2135007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7232711188 RX 157086 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 974814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6886308981 RX 2271625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6856099795 RX 157196 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 968898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7265309405 RX 2136903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7236347135 RX 157206 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 356 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 976318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6900422424 RX 2273689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6870180221 RX 157325 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 969285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7268958838 RX 2138823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7239985091 RX 157332 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1083 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 977812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6914496369 RX 2275753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6884221252 RX 157454 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 969674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7272598150 RX 2140671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7243614396 RX 157455 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 979310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6928493325 RX 2277769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6898185433 RX 157580 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 970059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7276337926 RX 2142615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7247345445 RX 157581 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 619 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 104 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 980810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 93974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6942525996 RX 2279833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6912185264 RX 157709 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 970445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7280061787 RX 2144511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7251059808 RX 157704 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 13 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 982307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6956584263 RX 2281897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6926210638 RX 157838 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 970831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7283607247 RX 2146383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7254592825 RX 157827 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 17 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 983803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6970543696 RX 2283913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6940136893 RX 157964 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 971220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7287061976 RX 2148279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7258028960 RX 157953 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 985304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6984521392 RX 2285977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6954081841 RX 158093 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 971607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7290699989 RX 2150175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7261653774 RX 158073 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 986802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 6998637133 RX 2288041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6968164575 RX 158222 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 971997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7294333461 RX 2152047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7265276758 RX 158199 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 72 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 988299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7012664041 RX 2290057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6982158648 RX 158348 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 972383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7297969117 RX 2153919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7268902177 RX 158322 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 989795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7026640003 RX 2292121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 6996101884 RX 158477 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 972768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7301488890 RX 2155767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7272405119 RX 158442 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 991297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7040725027 RX 2294185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7010153947 RX 158606 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 973154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7304996508 RX 2157639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7275896945 RX 158562 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 992790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7054739306 RX 2296201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7024134948 RX 158732 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 973544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 88965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7308513706 RX 2159535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7279397917 RX 158685 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 291 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 994289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7068714119 RX 2298265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7038077033 RX 158861 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 973929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7312152076 RX 2161431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7283024059 RX 158808 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 39 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 995785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7082652386 RX 2300329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7051982661 RX 158990 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 974318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7315816435 RX 2163375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7286674900 RX 158937 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 470 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 12 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 997284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7096720256 RX 2302345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7066017610 RX 159116 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 974704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7319377769 RX 2165247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7290224408 RX 159060 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 79 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 998780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 94998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7110697691 RX 2304409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7079962326 RX 159245 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 975089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7322901509 RX 2167095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7293732811 RX 159183 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 58 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1000279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7124669031 RX 2306473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7093900449 RX 159374 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 975477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7326389911 RX 2168919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7297200626 RX 159303 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1001782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7138733193 RX 2308489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7107931687 RX 159500 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 975866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7329930683 RX 2170863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7300725429 RX 159429 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1003277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7152784995 RX 2310553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7121950616 RX 159629 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 976252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7333422088 RX 2172711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7304202924 RX 159552 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1004777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7166788608 RX 2312617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7135921444 RX 159758 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 976637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7336883930 RX 2174607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7307647409 RX 159678 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1006281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7180856547 RX 2314633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7149956448 RX 159884 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 977023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7340453073 RX 2176479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7311202671 RX 159801 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1007787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7194965064 RX 2316697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7164031944 RX 160013 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 977408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7343987301 RX 2178399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7314722861 RX 159927 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1009293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7209070108 RX 2318761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7178103481 RX 160142 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 977797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7347494939 RX 2180223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7318215049 RX 160047 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1010801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7223146114 RX 2320777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7192146528 RX 160268 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 978183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7351024228 RX 2182119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7321727597 RX 160173 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 476 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1012308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7237336744 RX 2322841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7206303971 RX 160397 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 978572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 89984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7354675776 RX 2183991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7325368757 RX 160296 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 50 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1013736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7250781571 RX 2324905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7219717352 RX 160526 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 979008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7358313376 RX 2185839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7328993526 RX 160416 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1583 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1014648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 95937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7259360665 RX 2326921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7228273490 RX 160652 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 979781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7361536126 RX 2187783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7332183205 RX 160545 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2210 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1015556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7267906963 RX 2328985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7236798324 RX 160781 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 980545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7364952819 RX 2189679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7335568583 RX 160674 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2692 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2228 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1016465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7276444331 RX 2331049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7245315221 RX 160910 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 981299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7368174185 RX 2191599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7338759804 RX 160800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1017379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7284958067 RX 2333065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7253806066 RX 161036 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 982040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7371306421 RX 2193543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7341860603 RX 160929 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2292 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1018286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7293535262 RX 2335129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7262363198 RX 161165 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 982810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7374897507 RX 2195439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7345416586 RX 161058 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3107 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2062 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1019196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7302116295 RX 2337193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7270922187 RX 161294 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 983575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7378061128 RX 2197359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7348547991 RX 161184 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2253 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1020109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7310669984 RX 2339209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7279453398 RX 161420 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 984339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7381269377 RX 2199303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7351726330 RX 161313 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2507 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1021018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7319181432 RX 2341273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7287944426 RX 161549 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 985107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7384570003 RX 2201199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7354996107 RX 161442 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1022413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7332282209 RX 2343337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7301013558 RX 161678 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 985585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7387983745 RX 2203119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7358386014 RX 161565 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1023912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7346343551 RX 2345353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7315041986 RX 161804 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 985974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7391473824 RX 2205015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7361860266 RX 161691 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1025408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7360311896 RX 2347417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7328977632 RX 161933 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 986359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 90940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7395096322 RX 2206911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7365471357 RX 161817 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 486 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 135 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1026907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7374281462 RX 2349481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7342914475 RX 162062 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 986745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7398792640 RX 2208831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7369156636 RX 161940 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 22 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1028411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 96961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7388408153 RX 2351497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7357008111 RX 162188 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 987131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7402287007 RX 2210703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7372636198 RX 162063 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 364 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1029914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7402472123 RX 2353561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7371039159 RX 162317 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 987517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7405956600 RX 2212599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7376295145 RX 162186 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 60 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1031418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7416535116 RX 2355625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7385068731 RX 162446 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 987905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7409494637 RX 2214447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7379818674 RX 162309 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1032931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7430710392 RX 2357641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7399210829 RX 162572 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 988292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7413162160 RX 2216319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7383474152 RX 162435 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1034434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7444904730 RX 2359705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7413371972 RX 162701 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 988681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7416782080 RX 2218167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7387084099 RX 162558 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1035935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7458965817 RX 2361769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7427400152 RX 162830 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 989066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7420392859 RX 2220111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7390684058 RX 162681 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1037438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7473028506 RX 2363785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7441429927 RX 162956 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 989452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7423947647 RX 2222007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7394224278 RX 162807 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1038938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7487126073 RX 2365849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7455494511 RX 163085 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 989838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7427472432 RX 2223879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7397735184 RX 162927 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1040438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7501167943 RX 2367913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7469503018 RX 163214 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 990227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7430966506 RX 2225775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7401213056 RX 163053 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1041940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7515180967 RX 2369929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7483483237 RX 163340 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 990613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7434535569 RX 2227647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7404766340 RX 163176 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1043441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7529256775 RX 2371993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7497526107 RX 163469 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 991002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7438137970 RX 2229567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7408355690 RX 163302 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 398 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1044939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7543326820 RX 2374057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7511563234 RX 163598 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 991388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 91958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7441770783 RX 2231367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7411977354 RX 163422 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 606 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1046439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 97985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7557358018 RX 2376073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7525561584 RX 163724 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 991773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7445463106 RX 2233239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7415659438 RX 163545 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1047941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7571382098 RX 2378137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7539552338 RX 163853 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 992159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7448979849 RX 2235111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7419159749 RX 163671 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1049438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7585453421 RX 2380201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7553590741 RX 163982 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 992550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7452530580 RX 2236983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7422696276 RX 163794 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 40 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1050935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7599433352 RX 2382217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7567537940 RX 164108 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 992934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7456006359 RX 2238855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7426155122 RX 163914 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1052434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7613409638 RX 2384281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7581481503 RX 164237 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 993323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7459527666 RX 2240655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7429659542 RX 164034 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1053935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7627465862 RX 2386345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7595504822 RX 164366 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 993709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7463010259 RX 2242503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7433126073 RX 164157 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1055427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7641499037 RX 2388361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7609505162 RX 164492 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 994095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7466479018 RX 2244375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7436579741 RX 164280 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1056926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7655476905 RX 2390425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7623449804 RX 164621 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 994483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7469998466 RX 2246295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7440081560 RX 164406 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1058426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7669483272 RX 2392489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7637423384 RX 164750 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 994871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7473631132 RX 2248215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7443700825 RX 164532 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 431 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1059924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7683540645 RX 2394505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7651447867 RX 164876 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 995257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7477252908 RX 2250087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7447312033 RX 164652 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 70 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 58 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1061419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7697491773 RX 2396569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7665366323 RX 165005 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 995642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7480800313 RX 2251959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7450844635 RX 164775 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 39 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1062921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 98924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7711479774 RX 2398633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7679321563 RX 165134 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 996028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7484426176 RX 2253711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7454456688 RX 164892 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 205 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1064422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7725522750 RX 2400649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7693331660 RX 165260 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 996414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 92967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7487869986 RX 2255559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7457885944 RX 165015 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1065923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7739614642 RX 2402713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7707390100 RX 165389 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 996804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7491356504 RX 2257383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7461354984 RX 165135 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1067427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7753654996 RX 2404777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7721397580 RX 165518 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 997190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 7494876934 RX 2259279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7464861092 RX 165258 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1068937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 7767824893 RX 2406879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7735534309 RX 165721 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 997358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE c22c: ulsch_rounds 93181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 7496288064 RX 2261825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7466260331 RX 166202 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1069718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7774192133 RX 2410587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7741870137 RX 167625 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 997437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: ulsch_rounds 93221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7496505030 RX 2264027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7466473554 RX 166925 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1070537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7777006373 RX 2412627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7744649743 RX 167751 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 997822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE c22c: ulsch_rounds 93283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7498951600 RX 2265545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7468914002 RX 167081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4057 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1071381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7779897778 RX 2414691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7747506027 RX 167880 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 998208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7502718100 RX 2267492 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7472671712 RX 167289 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4166 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1072242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7782826655 RX 2416731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7750400307 RX 168009 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 998597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7506377188 RX 2269412 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7476320757 RX 167415 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4065 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1073094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7785752307 RX 2418771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7753291128 RX 168135 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 999013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7510354753 RX 2271308 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7480289020 RX 167538 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2264 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1073889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7788979575 RX 2420835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7756484827 RX 168264 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 999917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7518943887 RX 2273228 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7488857107 RX 167664 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2196 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1074653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7792169322 RX 2422875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7759643449 RX 168393 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1000820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7527452154 RX 2275172 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7497345471 RX 167793 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2240 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1075444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 99966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7795702727 RX 2424915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7763142100 RX 168519 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1001724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7536016230 RX 2277068 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7505889522 RX 167922 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3055 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1076211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7798880384 RX 2426979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7766288370 RX 168648 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1002627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7544523216 RX 2278988 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7514376602 RX 168048 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2431 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1076981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7802186636 RX 2429019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7769562633 RX 168777 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1003533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 93923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7553029916 RX 2280932 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7522862399 RX 168177 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2269 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1077748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7805383552 RX 2431059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7772726197 RX 168903 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1004436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7561566857 RX 2282828 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7531379367 RX 168306 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2235 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1078510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7808531914 RX 2433123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7775843303 RX 169032 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1005340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7570082675 RX 2284748 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7539875257 RX 168432 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2056 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2131 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1079282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7811692269 RX 2435163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7778970773 RX 169161 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1006244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7578613022 RX 2286692 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7548385644 RX 168561 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1080083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7814708920 RX 2437203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7781954494 RX 169287 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1006828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7584135767 RX 2288588 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7553895466 RX 168684 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3965 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1080880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7817504715 RX 2439267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7784717297 RX 169416 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1007217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7587788327 RX 2290508 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7557537992 RX 168810 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1081700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7820315232 RX 2441307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7787491976 RX 169545 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1007603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7591458983 RX 2292428 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7561200056 RX 168936 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3920 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1082548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7823223194 RX 2443347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7790364527 RX 169671 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1007988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7595198759 RX 2294348 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7564931106 RX 169059 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4079 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1083392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7826086253 RX 2445411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7793192653 RX 169800 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1008374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7598908583 RX 2296220 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7568632263 RX 169182 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1084219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7828936102 RX 2447451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7796007321 RX 169929 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1008764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7602548391 RX 2298164 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7572261571 RX 169308 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4082 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4161 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1085066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 100990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7831872208 RX 2449491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7798908050 RX 170055 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1009149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7606262055 RX 2300060 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7575966560 RX 169431 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4051 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1085885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7834733248 RX 2451555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7801734113 RX 170184 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1009538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7609992951 RX 2301980 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7579687257 RX 169557 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4015 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1086720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7837592146 RX 2453595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7804557768 RX 170313 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1009924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7613676471 RX 2303852 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7583362160 RX 169680 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4057 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1087539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7840466250 RX 2455635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7807396634 RX 170439 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1010310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 94957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7617360183 RX 2305724 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7587037251 RX 169806 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1088363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7843305242 RX 2457699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7810201969 RX 170568 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1010695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7621106487 RX 2307668 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7590774812 RX 169929 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4443 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1089220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7846322156 RX 2459739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7813184669 RX 170697 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1011085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7624792183 RX 2309588 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7594449910 RX 170055 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1090043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7849192611 RX 2461779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7816021602 RX 170823 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1011471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7628475511 RX 2311460 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7598124624 RX 170175 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4163 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1090924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7852445240 RX 2463843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7819237977 RX 170952 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1011859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7632196999 RX 2313404 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7601835940 RX 170301 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1091780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7855348227 RX 2465883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7822106052 RX 171081 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1012245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7635945991 RX 2315300 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7605576183 RX 170424 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1092580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7858182407 RX 2467923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7824907402 RX 171207 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1012631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7639583815 RX 2317244 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7609205483 RX 170550 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1093404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7861087133 RX 2469939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7827778476 RX 171333 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1013017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7643297783 RX 2319140 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7612910282 RX 170673 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4224 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4066 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1094252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 101928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7864021636 RX 2472003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7830677197 RX 171462 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1013407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7647055287 RX 2321012 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7616657045 RX 170796 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4030 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1095078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7866844692 RX 2474067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7833464253 RX 171591 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1013795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7650759575 RX 2322908 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7620351685 RX 170919 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4217 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1095905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7869751065 RX 2476083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7836336764 RX 171717 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1014181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7654443095 RX 2324828 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7624026581 RX 171042 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4066 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1096714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7872613649 RX 2478147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7839164810 RX 171846 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1014566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7658189399 RX 2326748 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7627764141 RX 171168 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3838 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1097535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7875438265 RX 2480211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7841954359 RX 171975 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1014952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7661918807 RX 2328668 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7631484835 RX 171291 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1098377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7878306308 RX 2482227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7844787867 RX 172101 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1015342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 95991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7665584919 RX 2330564 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7635140395 RX 171414 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4169 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1099215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7881227079 RX 2484291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7847674222 RX 172230 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1015728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7669324999 RX 2332460 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7638871249 RX 171537 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4049 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3959 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1100037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7884060424 RX 2486355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7850472668 RX 172359 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1016115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7673100407 RX 2334356 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7642637360 RX 171660 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4222 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1100872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7887006121 RX 2488371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7853383766 RX 172485 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1016501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7676797175 RX 2336228 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7646325480 RX 171783 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4216 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1101687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7889874268 RX 2490435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7856219272 RX 172614 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1016887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7680480695 RX 2338196 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7650000382 RX 171909 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1102538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7892754201 RX 2492499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7859063700 RX 172743 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1017272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7684207415 RX 2340092 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7653718402 RX 172032 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4017 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1103379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7895629438 RX 2494515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7861903687 RX 172869 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1017663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7687919527 RX 2342012 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7657419375 RX 172158 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4112 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1104206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 102952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7898510260 RX 2496579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7864749487 RX 172998 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1018049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7691616295 RX 2343908 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7661107497 RX 172281 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1105040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7901356078 RX 2498643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7867559734 RX 173127 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1018436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7695317895 RX 2345876 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7664799456 RX 172407 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4089 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1105885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7904253224 RX 2500659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7870421951 RX 173253 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1018822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7699073223 RX 2347772 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7668546019 RX 172530 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4029 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1106719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7907140478 RX 2502723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7873273744 RX 173382 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1019208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7702710855 RX 2349668 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7672175122 RX 172656 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4174 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1107557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7910077867 RX 2504787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7876175890 RX 173511 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1019594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7706420679 RX 2351588 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7675876274 RX 172782 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4238 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1108396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7912976228 RX 2506803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7879039549 RX 173637 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1019982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 96946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7710155415 RX 2353484 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7679600809 RX 172905 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4100 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1109216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7915747949 RX 2508867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7881776712 RX 173766 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1020370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7713865847 RX 2355404 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7683301575 RX 173031 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3963 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1110051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7918574788 RX 2510931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7884568194 RX 173895 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1020758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7717504855 RX 2357300 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7686931073 RX 173154 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3973 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1110885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7921449685 RX 2512947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7887408176 RX 174021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1021143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7721211991 RX 2359172 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7690629541 RX 173277 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4081 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1111733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7924343987 RX 2515011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7890267424 RX 174150 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1021529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7724941399 RX 2361092 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7694350233 RX 173403 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4001 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1112538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7927119351 RX 2517075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7893008973 RX 174279 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1021917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7728625911 RX 2362988 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7698025142 RX 173529 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1113377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7930045440 RX 2519091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7895899734 RX 174405 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1022304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7732336039 RX 2364932 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7701726105 RX 173652 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4458 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1114217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 103976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7933027132 RX 2521155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7898847351 RX 174534 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1022692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7736096887 RX 2366828 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7705476697 RX 173775 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3949 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1115031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7935894879 RX 2523219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7901679848 RX 174663 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1023078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7739760823 RX 2368748 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7709132056 RX 173901 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4024 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1115868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7938781934 RX 2525235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7904532097 RX 174789 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1023464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7743451063 RX 2370644 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7712813660 RX 174027 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1116701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7942314731 RX 2527299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7908028705 RX 174918 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1024319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7751620586 RX 2372564 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7720963608 RX 174153 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2245 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1117483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7945615328 RX 2529363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7911295463 RX 175047 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1025223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7760129684 RX 2374508 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7729452794 RX 174282 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2390 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2183 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1118250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7948781924 RX 2531379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7914431830 RX 175173 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1026126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7768666625 RX 2376404 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7737969768 RX 174411 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2237 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1119011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7951978493 RX 2533443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7917594918 RX 175302 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1027030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 97981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7777182443 RX 2378324 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7746465668 RX 174537 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2181 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1119778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7955198177 RX 2535507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7920781648 RX 175431 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1027938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7785701718 RX 2380268 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7754963025 RX 174666 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2202 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2068 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1120533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7958338010 RX 2537523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7923889807 RX 175557 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1028846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7794213711 RX 2382164 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7763453613 RX 174795 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2170 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1121317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7961533396 RX 2539587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7927049951 RX 175686 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1029748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7802762301 RX 2384084 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7771982214 RX 174921 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2019 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1122086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7964652553 RX 2541723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7930135472 RX 175879 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1030652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7811291367 RX 2386028 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7780491331 RX 175050 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2055 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1122699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7967936982 RX 2543739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7933393782 RX 176005 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1031813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7822175883 RX 2387924 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7791350368 RX 175179 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1123087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 104998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7971468828 RX 2545707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7936909654 RX 176128 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1033320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7836315762 RX 2389844 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7805457160 RX 175305 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1123479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7975000708 RX 2547675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7940424175 RX 176251 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1034827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7850476698 RX 2391788 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7819584962 RX 175434 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 150 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1123865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7978628290 RX 2549691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7944040430 RX 176377 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1036334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7864620351 RX 2393684 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7833695520 RX 175563 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1124253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7982129838 RX 2551683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7947526778 RX 176503 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1037841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7878720870 RX 2395604 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7847763032 RX 175689 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1124640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7985615109 RX 2553699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7950998243 RX 176629 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1039346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7892846283 RX 2397548 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7861855396 RX 175818 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1125026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7989170792 RX 2555667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7954538589 RX 176752 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1040860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7906923683 RX 2399444 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7875897370 RX 175947 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1125421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7992708151 RX 2557707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7958061989 RX 176878 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1042365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 98941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7921157579 RX 2401364 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7890097987 RX 176073 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1125811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7996222065 RX 2559723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7961559692 RX 177004 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1043871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7935334130 RX 2403308 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7904241383 RX 176202 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1126198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 7999765514 RX 2561691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7965087406 RX 177127 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1045380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7949467418 RX 2405204 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7918341590 RX 176331 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1126585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8003373468 RX 2563707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7968684271 RX 177253 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1046888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7963637378 RX 2407124 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7932478396 RX 176457 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1126972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8007025947 RX 2565723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7972328195 RX 177379 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1048391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7977788582 RX 2409068 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7946596503 RX 176586 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1127359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8010666651 RX 2567691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7975960364 RX 177502 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1049895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 7991967305 RX 2410964 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7960742069 RX 176715 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1127755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 105998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8014290007 RX 2569683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7979566778 RX 177628 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1051401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8006023406 RX 2412884 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7974765246 RX 176841 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1128142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8017820912 RX 2571675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7983085650 RX 177751 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1052908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8020163285 RX 2414828 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 7988872041 RX 176970 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 233 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 78 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1128529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8021440654 RX 2573643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7986694282 RX 177874 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1054413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8034267641 RX 2416724 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8002943387 RX 177099 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1128915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8024970974 RX 2575659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7990211185 RX 178000 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1055919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8048318687 RX 2418644 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8016961531 RX 177225 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 504 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1129302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8028596060 RX 2577627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7993827767 RX 178123 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1057424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8062514805 RX 2420588 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8031123963 RX 177354 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1129693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8032269915 RX 2579667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 7997491047 RX 178252 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1058933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8076722655 RX 2422484 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8045298571 RX 177483 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 73 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1130085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8035850207 RX 2581659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8001055221 RX 178375 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1060437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8090791875 RX 2424404 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8059334851 RX 177609 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 48 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1130473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8039341221 RX 2583627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8004532751 RX 178498 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1061944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 99982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8104991787 RX 2426348 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8073501552 RX 177738 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1130860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8042889089 RX 2585643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8008067974 RX 178624 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1063452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8119220691 RX 2428244 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8087697180 RX 177867 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1131246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8046394235 RX 2587611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8011558411 RX 178747 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1064958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8133310980 RX 2430164 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8101753024 RX 177993 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1131633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8049854952 RX 2589579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8015004367 RX 178870 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1066467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8147406155 RX 2432108 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8115814223 RX 178122 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1132026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8053323276 RX 2591499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8018455079 RX 178990 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1067975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8161568306 RX 2434004 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8129943231 RX 178251 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1132414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 106990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8056883941 RX 2593491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8022002805 RX 179116 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1069483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8175732827 RX 2435924 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8144074615 RX 178377 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1132802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8060602333 RX 2595483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8025711865 RX 179239 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1070989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8189816705 RX 2437868 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8158125530 RX 178506 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 317 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 369 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1133189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8064242845 RX 2597451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8029343844 RX 179362 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1072491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8203963043 RX 2439764 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8172238784 RX 178635 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 90 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1133576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8067914908 RX 2599467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8033007313 RX 179488 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1073998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8218136651 RX 2441684 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8186379239 RX 178761 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 36 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1133965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8071540388 RX 2601483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8036620629 RX 179614 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1075503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8232267119 RX 2443628 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8200476642 RX 178890 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1134359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8075108603 RX 2603475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8040172963 RX 179740 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1077016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8246463644 RX 2445524 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8214639947 RX 179019 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 33 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1134745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8078650712 RX 2605467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8043703011 RX 179863 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1078521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8260612607 RX 2447444 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8228755820 RX 179145 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 44 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1135133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8082242533 RX 2607483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8047280896 RX 179989 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1080021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 100942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8274641504 RX 2449388 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8242751859 RX 179274 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 99 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1135520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8085791652 RX 2609451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8050817903 RX 180112 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1081527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8288775941 RX 2451284 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8256853225 RX 179403 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 60 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1135907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8089247088 RX 2611467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8054260466 RX 180238 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1083029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8302857670 RX 2453204 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8270901022 RX 179529 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1136300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8092758695 RX 2613459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8057753546 RX 180364 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1084541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8316976753 RX 2455148 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8284987043 RX 179658 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1137053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8095983543 RX 2615499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8060945585 RX 180490 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1085513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8326260469 RX 2457044 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8294247603 RX 179787 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2206 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1137849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 107992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8099521384 RX 2617539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8064449673 RX 180619 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1086417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8334832738 RX 2458964 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8302799834 RX 179913 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1138636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8102974407 RX 2619579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8067870669 RX 180745 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1087320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8343372172 RX 2460908 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8311319287 RX 180042 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2069 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1139420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8106217459 RX 2621643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8071079624 RX 180874 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1088224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8351868214 RX 2462804 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8319795447 RX 180171 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2417 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1140189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8109431267 RX 2623683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8074261472 RX 181003 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1089129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8360378192 RX 2464724 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8328285015 RX 180297 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2183 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2091 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1140964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8112621842 RX 2625723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8077420570 RX 181129 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1090037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8368930477 RX 2466668 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8336814845 RX 180426 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2219 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1141729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8115765055 RX 2627787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8080530261 RX 181258 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1090941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8377433431 RX 2468564 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8345297894 RX 180555 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2056 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1142492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8118914328 RX 2629827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8083647332 RX 181387 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1091845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8385944194 RX 2470484 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8353788745 RX 180681 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2108 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1401 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1143064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8122454731 RX 2631843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8087165308 RX 181513 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1093089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8397651895 RX 2472428 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8365469051 RX 180810 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1143457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8125988406 RX 2633835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8090683788 RX 181636 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1094597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 101982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8411822944 RX 2474324 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8379606936 RX 180939 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1143847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8129462473 RX 2635755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8094141866 RX 181756 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1096103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8425985158 RX 2476244 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8393736027 RX 181065 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1144234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8133010984 RX 2637771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8097676277 RX 181882 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1097608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8440096234 RX 2478188 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8407814082 RX 181194 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1144621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 108916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8136582781 RX 2639739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8101235652 RX 182005 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1099112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8454264655 RX 2480084 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8421949367 RX 181323 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1145008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8140209587 RX 2641755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8104851633 RX 182131 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1100622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8468429079 RX 2482004 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8436079656 RX 181449 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1145394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8143893107 RX 2643723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8108526533 RX 182254 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1102131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8482580862 RX 2483948 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8450198324 RX 181578 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1145790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8147474962 RX 2645691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8112090884 RX 182377 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1103634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8496652833 RX 2485844 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8464237351 RX 181707 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 310 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1146176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8151125949 RX 2647683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8115732437 RX 182503 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1105142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8510801736 RX 2487764 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8478353144 RX 181833 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1146564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8154624189 RX 2649699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8119214603 RX 182629 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1106647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8524809837 RX 2489708 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8492328424 RX 181962 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1146952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8158090420 RX 2651691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8122667798 RX 182752 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1108151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8539026516 RX 2491604 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8506511865 RX 182091 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1147279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 8160997098 RX 2654208 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8125558322 RX 183489 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1109660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 8553197835 RX 2493524 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8520648561 RX 182217 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1147294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: ulsch_rounds 109518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 8161002417 RX 2656017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8125558386 RX 183748 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1110861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE c22c: ulsch_rounds 102876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 8564408821 RX 2496593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8531829534 RX 183393 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1147601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 2421: ulsch_rounds 109587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 8162489078 RX 2658042 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8127039320 RX 184599 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1111502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 102967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8566513879 RX 2499264 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8533900693 RX 184338 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1147989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8166035650 RX 2660112 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8130577052 RX 184812 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1112337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8569349925 RX 2501184 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8536702078 RX 184464 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4041 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1148375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8169712834 RX 2662128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8134245624 RX 184938 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1113170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8572154105 RX 2503128 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8539469332 RX 184593 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1148763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8173379200 RX 2664144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8137903400 RX 185064 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1113994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8574962670 RX 2505024 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8542244972 RX 184722 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4097 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1149150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 109925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8177025151 RX 2666160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8141540808 RX 185190 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1114950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8578535375 RX 2506944 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8545777584 RX 184848 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1149545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8180702271 RX 2668176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8145205372 RX 185316 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1115773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8581413867 RX 2508888 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8548621917 RX 184977 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4093 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1149932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8184399535 RX 2670144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8148893502 RX 185439 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1116641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8584522963 RX 2510784 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8551693021 RX 185106 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3943 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1150320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8188086239 RX 2672160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8152571084 RX 185565 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1117472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8587377737 RX 2512704 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8554513642 RX 185232 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1150707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8191745246 RX 2674176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8156221519 RX 185691 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1118295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8590240390 RX 2514648 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8557341658 RX 185361 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4231 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1151094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8195412062 RX 2676144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8159879746 RX 185814 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1119149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8593175111 RX 2516544 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8560240885 RX 185490 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1151483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8199169070 RX 2678160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8163626505 RX 185940 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1119994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8596011141 RX 2518464 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8563042310 RX 185616 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4179 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1151876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8202806222 RX 2680176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8167252176 RX 186066 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1120838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8598929675 RX 2520408 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8565925190 RX 185745 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1152263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8206496958 RX 2682144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8170933781 RX 186189 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1121654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 103927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8601717470 RX 2522304 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8568677599 RX 185874 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3800 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1152650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8210155773 RX 2684160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8174584022 RX 186315 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1122472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8604496774 RX 2524224 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8571422653 RX 186000 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1153037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8213795196 RX 2686176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8178214914 RX 186441 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1123316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8607308153 RX 2526168 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8574197337 RX 186129 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1153424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8217466875 RX 2688192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8181877997 RX 186567 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1124157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104167/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8610192859 RX 2528064 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8577046136 RX 186258 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4027 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1153819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 110927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8221176827 RX 2690184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8185575329 RX 186693 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1124992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8613023826 RX 2529984 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8579843075 RX 186384 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3955 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4073 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1154207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8224855530 RX 2692176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8189244927 RX 186816 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1125820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8615903918 RX 2531928 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8582687438 RX 186513 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5081 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1154595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8228496511 RX 2694192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8192876905 RX 186942 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1126712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8619140288 RX 2533824 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8585886009 RX 186642 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1154981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8232206335 RX 2696160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8196578060 RX 187065 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1127554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8621997962 RX 2535744 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8588708202 RX 186768 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4207 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4607 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1155368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8235912127 RX 2698176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8200275187 RX 187191 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1128429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8625132492 RX 2537688 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8591804520 RX 186897 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4079 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1155756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8239564910 RX 2700144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8203918913 RX 187314 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1129253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8627966982 RX 2539584 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8594604393 RX 187026 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3948 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1156150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8243252398 RX 2702160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8207593833 RX 187440 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1130100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8630818780 RX 2541504 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8597417589 RX 187152 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1156537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8246945134 RX 2704176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8211277927 RX 187566 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1130917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8633666407 RX 2543448 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8600230785 RX 187281 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4024 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1156925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8250605699 RX 2706144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8214929449 RX 187689 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1131766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104887/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8636730618 RX 2545344 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8603258981 RX 187410 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1157312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8254219010 RX 2708160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8218534277 RX 187815 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1132596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 104966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8639583073 RX 2547264 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8606076683 RX 187536 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3961 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1157698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8257941698 RX 2710176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8222248268 RX 187941 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1133436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8642460550 RX 2549208 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8608919576 RX 187665 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4017 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3641 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1158176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8262474349 RX 2712144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8226767887 RX 188064 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1134267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8645356343 RX 2551104 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8611780189 RX 187794 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1159085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 111927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8271080656 RX 2714208 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8235352625 RX 188193 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1135045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8648529858 RX 2553024 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8614920962 RX 187920 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2164 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1159999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8279598920 RX 2716248 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8243847498 RX 188322 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1135798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8651720806 RX 2554968 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8618080495 RX 188049 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2150 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1160907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8288141409 RX 2718288 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8252369510 RX 188448 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1136562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8654941237 RX 2556864 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8621270194 RX 188178 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2311 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1161814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8296709514 RX 2720352 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8260917579 RX 188577 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1137339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8658370821 RX 2558784 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8624664945 RX 188304 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2115 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1162724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8305275141 RX 2722392 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8269461689 RX 188706 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1138098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8661533630 RX 2560728 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8627795314 RX 188433 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1163632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8313791148 RX 2724432 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8277957757 RX 188832 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1138862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8664984817 RX 2562624 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8631215824 RX 188562 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2191 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1164544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8322322757 RX 2726496 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8286466930 RX 188961 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1139609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8668236262 RX 2564544 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8634436660 RX 188688 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2366 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2168 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1165454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8330900351 RX 2728536 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8295022996 RX 189090 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1140354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8671437932 RX 2566488 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8637607103 RX 188817 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1315 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1166841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8343834356 RX 2730576 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8307926714 RX 189216 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1140826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 8674882298 RX 2568384 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8641030264 RX 188946 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 641 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1168342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8357896724 RX 2732640 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8321956156 RX 189345 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1141213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 105927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8678558194 RX 2570350 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8644696892 RX 189133 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 595 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1169838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8371945775 RX 2734680 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8335972332 RX 189474 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1141599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8682215794 RX 2572246 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8648345928 RX 189256 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1171336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8385903755 RX 2736720 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8349897612 RX 189600 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1141984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8685932081 RX 2574142 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8652051093 RX 189379 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1172837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 112951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8399940203 RX 2738784 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8363901196 RX 189729 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1142370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8689448051 RX 2575990 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8655550696 RX 189502 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1174339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8414055291 RX 2740824 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8377982783 RX 189858 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1142757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8692996834 RX 2577910 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8659085438 RX 189628 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 20 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1175846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8428184607 RX 2742864 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8392079030 RX 189984 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1143145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8696597256 RX 2579782 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8662671355 RX 189754 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1398 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1177349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8442216129 RX 2744928 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8406077700 RX 190113 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1143531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106399/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8700365640 RX 2581678 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8666430943 RX 189877 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 9 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 388 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1178853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8456342820 RX 2746968 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8420171335 RX 190242 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1143920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8704031064 RX 2583622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8670086305 RX 190003 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1180355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8470409157 RX 2749008 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8434204744 RX 190368 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1144306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8707714776 RX 2585518 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8673761398 RX 190126 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 18 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1181861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8484483561 RX 2751072 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8448246202 RX 190497 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1144691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8711275743 RX 2587414 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8677308823 RX 190252 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1183368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8498612158 RX 2753112 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8462341244 RX 190626 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1145080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8714734435 RX 2589214 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8680750608 RX 190372 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1184865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8512737178 RX 2755152 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8476433237 RX 190752 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1145466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8718224048 RX 2591110 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8684225727 RX 190495 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1186365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8526774712 RX 2757216 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8490437910 RX 190881 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1145854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8721764230 RX 2592958 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8687749716 RX 190618 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 84 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1187866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8540824216 RX 2759256 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8504454523 RX 191010 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1146240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 106948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8725451528 RX 2594854 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8691425788 RX 190741 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 31 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1189363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8554862899 RX 2761296 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8518460352 RX 191136 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1146626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8728940953 RX 2596774 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8694901096 RX 190867 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 7 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1190861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 113975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8568880912 RX 2763360 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8532445550 RX 191265 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1147012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8732431912 RX 2598646 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8698377002 RX 190990 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1192361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8582849858 RX 2765400 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8546381317 RX 191394 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1147401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8735984439 RX 2600590 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8701911670 RX 191116 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 54 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1193858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8596902878 RX 2767440 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8560401452 RX 191520 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1147787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8739506483 RX 2602486 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8705421793 RX 191239 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1195352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8610924599 RX 2769504 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8574390365 RX 191649 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1148175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8742982252 RX 2604334 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8708880382 RX 191362 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1196852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8624975189 RX 2771544 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8588408071 RX 191778 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1148559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8746461568 RX 2606278 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8712343174 RX 191485 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1198353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8639011445 RX 2773584 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8602411467 RX 191904 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1148945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8749903836 RX 2608102 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8715768621 RX 191605 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1199848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8653055246 RX 2775648 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8616422410 RX 192033 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1149331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8753491732 RX 2609950 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8719345832 RX 191728 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1201344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8667014871 RX 2777688 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8630348852 RX 192162 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1149721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8757090285 RX 2611894 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8722929308 RX 191851 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1202843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8680997877 RX 2779728 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8644299103 RX 192288 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1150107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8760838893 RX 2613790 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8726669166 RX 191974 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 23 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 66 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1204344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8695053717 RX 2781792 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8658322047 RX 192417 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1150495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8764405833 RX 2615662 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8730220758 RX 192097 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 262 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1205833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8709049065 RX 2783832 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8672284654 RX 192546 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1150881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8767994256 RX 2617558 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8733798053 RX 192223 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 70 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1207333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8723041095 RX 2785872 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8686243923 RX 192672 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1151266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 107972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8771514282 RX 2619430 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8737299076 RX 192346 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1208834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 114999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8737061179 RX 2787936 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8700230706 RX 192801 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1151654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8775199302 RX 2621326 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8740972350 RX 192472 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1210331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8751107671 RX 2789976 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8714244326 RX 192930 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1152043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8778836614 RX 2623174 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8744597847 RX 192592 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1211827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8765062960 RX 2792016 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8728166937 RX 193056 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1152428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8782267142 RX 2625046 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8748013197 RX 192718 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1213330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8779068370 RX 2794080 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8742139547 RX 193185 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1152814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8785804654 RX 2626990 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8751537356 RX 192844 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1214831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8793104626 RX 2796120 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8756142942 RX 193314 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1153200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8789345933 RX 2628886 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8755065234 RX 192970 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1216331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8807195857 RX 2798160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8770201205 RX 193440 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1153586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8792829038 RX 2630734 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8758533768 RX 193093 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1217838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8821251365 RX 2800224 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8784223301 RX 193569 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1153974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8796384428 RX 2632630 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8762071643 RX 193216 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1218836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8830801981 RX 2802264 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8793749209 RX 193698 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1154694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8799688996 RX 2634574 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8765347485 RX 193345 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2293 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1219750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8839312244 RX 2804304 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8802236093 RX 193824 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1155453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8802913713 RX 2636470 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8768540684 RX 193474 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1220658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8847837533 RX 2806368 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8810741429 RX 193953 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1156210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8806119445 RX 2638390 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8771715122 RX 193600 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2242 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1221569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8856400375 RX 2808408 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8819281781 RX 194082 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1156981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8809439858 RX 2640334 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8775001657 RX 193729 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2440 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2175 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1222480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 115937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8864979746 RX 2810448 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8827839110 RX 194208 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1157726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 108923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8812584062 RX 2642230 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8778115799 RX 193858 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1223388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8873494472 RX 2812512 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8836333905 RX 194337 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1158487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8815758763 RX 2644150 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8781258079 RX 193984 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1224301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8882013329 RX 2814552 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8844829864 RX 194466 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1159254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8819185186 RX 2646094 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8784652379 RX 194113 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2208 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1225209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8890604460 RX 2816592 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8853400414 RX 194592 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1160028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8822393255 RX 2647990 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8787825811 RX 194242 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2177 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1648 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1226384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8901567762 RX 2818656 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8864338032 RX 194721 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1160646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8825715079 RX 2649934 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8791119123 RX 194368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1227886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8915667123 RX 2820696 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8878404397 RX 194850 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1161032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8829231861 RX 2651830 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8794621507 RX 194494 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1229387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8929729683 RX 2822736 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8892434039 RX 194976 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1161421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8832757434 RX 2653702 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8798131572 RX 194620 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 12 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1230892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8943774198 RX 2824800 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8906445667 RX 195105 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1161805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8836220244 RX 2655598 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8801577663 RX 194743 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1232394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8957886423 RX 2826840 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8920524876 RX 195234 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1162191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8839799583 RX 2657518 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8805145364 RX 194869 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1233893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8971976740 RX 2828880 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8934581734 RX 195360 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1162578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8843297472 RX 2659342 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8808628564 RX 194989 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1235393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 8986014274 RX 2830944 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8948586406 RX 195489 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1162966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8847002272 RX 2661238 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8812322882 RX 195112 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1236896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9000071716 RX 2832984 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8962610940 RX 195618 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1163355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8850628117 RX 2663134 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8815934903 RX 195235 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1238393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 116961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9014130175 RX 2835024 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8976636496 RX 195744 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1163741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8854281957 RX 2665030 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8819579784 RX 195361 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1156 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 7 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1239892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9028131100 RX 2837088 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 8990604632 RX 195873 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1164126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 109951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8857989093 RX 2666926 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8823278256 RX 195484 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1241390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9042090361 RX 2839128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9004531195 RX 196002 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1164511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8861592538 RX 2668798 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8826869602 RX 195610 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1242894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9056180912 RX 2841168 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9018588303 RX 196128 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1164901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8865124408 RX 2670670 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8830385435 RX 195733 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1244385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9070197254 RX 2843232 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9032571854 RX 196257 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1165288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8868656591 RX 2672542 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8833904857 RX 195856 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1245883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9084200738 RX 2845272 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9046542550 RX 196386 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1165675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8872154259 RX 2674390 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8837384068 RX 195976 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1247381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9098185919 RX 2847312 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9060494980 RX 196512 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1166061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8875633644 RX 2676238 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8840845001 RX 196099 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1248877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9112266521 RX 2849376 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9074542639 RX 196641 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1166447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8879187080 RX 2678134 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8844386506 RX 196225 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1250372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9126225458 RX 2851416 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9088468896 RX 196770 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1166832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8882653520 RX 2680054 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8847836745 RX 196354 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1251871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9140158911 RX 2853456 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9102369210 RX 196896 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1167223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8886418048 RX 2681974 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8851590023 RX 196477 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 73 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1253372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9154175583 RX 2855520 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9116353059 RX 197025 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1167609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8890003769 RX 2683894 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8855163200 RX 196603 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1254867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9168201081 RX 2857560 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9130345736 RX 197154 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1167996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8893515848 RX 2685766 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8858661230 RX 196726 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1256366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 117985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9182189142 RX 2859600 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9144301028 RX 197280 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1168381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8897110424 RX 2687614 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8862243207 RX 196849 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 259 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1257865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9196184820 RX 2861664 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9158263935 RX 197409 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1168767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8900557116 RX 2689462 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8865673561 RX 196975 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1259366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9210302467 RX 2863704 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9172348072 RX 197538 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1169154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 110969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8904059528 RX 2691358 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8869162963 RX 197098 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1260868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9224379298 RX 2865744 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9186391961 RX 197664 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1169543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8907585173 RX 2693254 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8872672319 RX 197221 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1262372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9238414789 RX 2867808 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9200394586 RX 197793 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1169929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8911097514 RX 2695102 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8876167649 RX 197344 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1263876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9252547816 RX 2869848 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9214494551 RX 197922 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1170317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8914598579 RX 2697022 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8879652881 RX 197467 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1265381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9266632588 RX 2871888 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9228546343 RX 198048 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1170703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8918116692 RX 2698942 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8883156940 RX 197596 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1266887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9280700464 RX 2873952 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9242581280 RX 198177 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1171088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8921658909 RX 2700766 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8886684254 RX 197716 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1268397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9294847661 RX 2875992 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9256694902 RX 198306 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1171476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8925250339 RX 2702686 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8890261136 RX 197842 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1269896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9308987147 RX 2878032 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9270801321 RX 198432 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1171860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8928693529 RX 2704606 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8893690465 RX 197965 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1271400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9323079725 RX 2880096 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9284860920 RX 198561 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1172248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8932171326 RX 2706478 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8897151232 RX 198091 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1272903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 118925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9337148942 RX 2882136 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9298897198 RX 198690 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1172634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8935682154 RX 2708374 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8900647961 RX 198217 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1274402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9351203372 RX 2884176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9312918740 RX 198816 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1173020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8939232099 RX 2710246 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8904185096 RX 198337 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1275897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9365183174 RX 2886240 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9326865821 RX 198945 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1173406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8942793191 RX 2712118 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8907734637 RX 198457 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1277401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9379193943 RX 2888280 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9340843280 RX 199074 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1173794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8946264228 RX 2714014 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8911189235 RX 198580 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1278901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9393258870 RX 2890320 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9354875286 RX 199200 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1174180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 111993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: MAC: TX 8949755407 RX 2715934 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8914666658 RX 198703 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1279905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 9402732653 RX 2892446 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9364324450 RX 199406 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1174463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE c22c: ulsch_rounds 112054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 8951107219 RX 2718492 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8915999833 RX 199649 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 339 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1280721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 9410338669 RX 2894582 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9371912039 RX 199674 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1174476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 112067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 8951109968 RX 2720000 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8915999833 RX 199649 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1281175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9412040979 RX 2898187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9373587527 RX 201516 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1174987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE c22c: ulsch_rounds 112141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 8952623561 RX 2722437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8917507588 RX 200509 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1281930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9415093142 RX 2900227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9376608714 RX 201645 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1175890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 8958730492 RX 2724333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8923599463 RX 200635 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2156 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1282714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9418267709 RX 2902267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9379748075 RX 201771 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1176792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 8967272554 RX 2726277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8932121549 RX 200764 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2077 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1283490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9421445154 RX 2904331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9382892813 RX 201900 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1177696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 8975781844 RX 2728173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8940610925 RX 200893 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2208 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1284258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9424564199 RX 2906371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9385978767 RX 202029 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1178602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 8984277981 RX 2730093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8949086189 RX 201019 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1285060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 119963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9427746180 RX 2908411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9389126019 RX 202155 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1179505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 8992826313 RX 2732037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8957614530 RX 201148 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2295 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1285839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9430957879 RX 2910475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9392306405 RX 202284 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1180409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9001351221 RX 2733933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8966119492 RX 201277 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2141 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1286664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9433822733 RX 2912515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9395138011 RX 202413 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1180892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9005920074 RX 2735853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8970677653 RX 201400 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1287495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9436761872 RX 2914555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9398043171 RX 202539 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1181281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9009618330 RX 2737773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8974365773 RX 201523 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4367 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1288333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9439756750 RX 2916619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9401003135 RX 202668 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1181669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9013340010 RX 2739669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8978077287 RX 201646 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4013 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1289151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9442519961 RX 2918659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9403731897 RX 202797 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1182056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 112939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9017108698 RX 2741589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8981836692 RX 201772 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3780 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4122 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1289992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9445380432 RX 2920699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9406557955 RX 202923 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1182442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9020785690 RX 2743485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8985505083 RX 201898 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3976 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1290837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9448206147 RX 2922763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9409347995 RX 203052 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1182827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9024518938 RX 2745357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8989229616 RX 202021 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3996 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1291701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9451131303 RX 2924803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9412238330 RX 203181 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1183213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9028267738 RX 2747229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8992969663 RX 202144 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1292537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9454026192 RX 2926843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9415098489 RX 203307 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1183604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9031973130 RX 2749173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 8996663922 RX 202270 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4112 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1293345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9456865592 RX 2928907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9417904716 RX 203436 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1183990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9035650314 RX 2751069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9000332500 RX 202393 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1294208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9459797104 RX 2930947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9420799452 RX 203565 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1184376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9039371002 RX 2752965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9004044006 RX 202516 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4177 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1295052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 120987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9462649352 RX 2932987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9423615657 RX 203691 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1184762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9043106554 RX 2754885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9007770833 RX 202639 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3924 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1295886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9465508729 RX 2935051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9426439222 RX 203820 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1185148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9046757434 RX 2756781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9011413161 RX 202762 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1296727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9468381751 RX 2937091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9429277652 RX 203949 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1185533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9050484154 RX 2758701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9015131175 RX 202888 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4015 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1297563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9471246926 RX 2939131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9432107250 RX 204075 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1185923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9054241658 RX 2760621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9018877936 RX 203011 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1298415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9474077959 RX 2941195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9434902797 RX 204204 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1186309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9057918842 RX 2762541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9022546515 RX 203137 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4672 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1299291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9477227288 RX 2943235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9438015457 RX 204333 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1186698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9061603850 RX 2764437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9026221420 RX 203260 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4682 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1300178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9480411692 RX 2945275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9441163219 RX 204459 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1187083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 113970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9065317514 RX 2766333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9029926406 RX 203383 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4346 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1301026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9483310533 RX 2947339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9444026908 RX 204588 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1187469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9069020810 RX 2768229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9033621045 RX 203506 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4011 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1301850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9486131700 RX 2949379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9446813443 RX 204717 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1187857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9072640042 RX 2770125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9037230803 RX 203632 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1302680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9488965619 RX 2951419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9449610768 RX 204843 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1188243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9076373594 RX 2772069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9040955147 RX 203755 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1303521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9491795583 RX 2953483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9452405714 RX 204972 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1188633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9080137434 RX 2773917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9044708231 RX 203878 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1304349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 121927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9494648137 RX 2955523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9455223882 RX 205101 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1189019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9083808090 RX 2775837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9048370299 RX 204004 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4031 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1305177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9497436550 RX 2957563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9457976306 RX 205227 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1189404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9087521562 RX 2777733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9052075093 RX 204130 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4008 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1306010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9500288064 RX 2959627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9460792571 RX 205356 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1189790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9091263834 RX 2779629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9055808630 RX 204250 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1306845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9503159204 RX 2961667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9463629484 RX 205485 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1190181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9094936970 RX 2781573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9059470704 RX 204376 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4015 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1307691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9506020154 RX 2963707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9466455582 RX 205611 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1190567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9098607626 RX 2783421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9063132772 RX 204499 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4177 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1308519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9508868437 RX 2965771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9469269324 RX 205740 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1190954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9102361258 RX 2785341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9066876659 RX 204622 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4203 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1309345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9511755007 RX 2967811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9472120606 RX 205869 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1191340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9106097194 RX 2787261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9070603867 RX 204748 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1310161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9514572661 RX 2969851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9474904172 RX 205995 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1191726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 114921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9109787434 RX 2789157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9074285472 RX 204871 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3850 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1311012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9517475730 RX 2971915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9477771251 RX 206124 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1192111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9113520682 RX 2791077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9078010007 RX 204994 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1311846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9520358767 RX 2973955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9480620080 RX 206253 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1192502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9117285018 RX 2792949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9081763095 RX 205117 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1312699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9523257889 RX 2975995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9483483689 RX 206379 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1192888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9120968538 RX 2794845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9085437994 RX 205240 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4195 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1313569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9526542342 RX 2978059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9486731186 RX 206508 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1193274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9124658778 RX 2796789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9089119598 RX 205363 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5028 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1314389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 122951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9529387630 RX 2980099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9489539976 RX 206637 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1193659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9128391834 RX 2798661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9092843934 RX 205486 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1315221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9532235974 RX 2982139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9492354278 RX 206763 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1194045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9132121050 RX 2800581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9096564435 RX 205609 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4069 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1316036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9535021944 RX 2984203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9495105716 RX 206892 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1194432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9135772618 RX 2802501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9100206948 RX 205735 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3984 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5056 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1316923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9538322115 RX 2986243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9498369550 RX 207021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1194820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9139487770 RX 2804373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9103911940 RX 205855 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1317761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9541142765 RX 2988283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9501155649 RX 207147 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1195207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9143243786 RX 2806269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9107658703 RX 205981 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1318586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9543961981 RX 2990347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9503939741 RX 207276 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1195595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9146947690 RX 2808189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9111352958 RX 206104 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1319442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9546825528 RX 2992387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9506767837 RX 207405 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1195981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9150618154 RX 2810133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9115014833 RX 206230 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3972 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1320270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9549703902 RX 2994427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9509612165 RX 207531 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1196366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9154344874 RX 2812005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9118732848 RX 206353 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4095 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1321111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9552608491 RX 2996491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9512483194 RX 207660 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1196755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 115953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9158036410 RX 2813925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9122414269 RX 206479 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1321920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9555488654 RX 2998531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9515328969 RX 207789 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1197142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9161694314 RX 2815845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9126063115 RX 206602 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4097 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4083 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1322747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9558369501 RX 3000571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9518174824 RX 207915 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1197531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9165403434 RX 2817741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9129761593 RX 206725 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2202 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1323531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9561501586 RX 3002635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9521274091 RX 208044 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1198427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9173905715 RX 2819661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9138243017 RX 206851 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2084 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1324314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 123975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9564711664 RX 3004675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9524451939 RX 208173 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1199334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9182439166 RX 2821605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9146755521 RX 206980 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2307 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1325082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9567976430 RX 3006715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9527684170 RX 208299 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1200240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9190962539 RX 2823501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9155256982 RX 207109 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2344 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2196 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1325839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9571193768 RX 3008779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9530869924 RX 208428 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1201144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9199483604 RX 2825421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9163758111 RX 207235 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2211 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1326610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9574364147 RX 3010819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9534007743 RX 208557 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1202049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9207996863 RX 2827365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9172251439 RX 207364 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3113 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1327400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9577942467 RX 3012859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9537550258 RX 208683 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1202953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9216540458 RX 2829261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9180775060 RX 207493 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1328171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9581082923 RX 3014923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9540658477 RX 208812 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1203857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9225050310 RX 2831181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9189264501 RX 207619 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2121 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2124 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1328946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9584286134 RX 3016963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9543830437 RX 208941 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1204765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9233581168 RX 2833125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9197773424 RX 207748 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1329511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9587586194 RX 3019003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9547104940 RX 209067 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1206017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9245248360 RX 2835021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9209413284 RX 207877 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1329897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9591070127 RX 3020995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9550576328 RX 209193 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1207525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9259423567 RX 2836941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9223555327 RX 208003 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1330283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9594572135 RX 3022987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9554061414 RX 209316 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1209034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 116993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9273517879 RX 2838885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9237616641 RX 208132 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1330678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9598115844 RX 3024955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9557590038 RX 209439 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1210536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9287650969 RX 2840781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9251716680 RX 208261 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1331065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9601629657 RX 3026971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9561087655 RX 209565 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1212043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9301763647 RX 2842701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9265796329 RX 208387 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1331453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 124987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9605176553 RX 3028987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9564623864 RX 209691 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1213548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9315964711 RX 2844645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9279964181 RX 208516 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 444 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1331840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9608817948 RX 3031003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9568255236 RX 209817 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1215053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9330098125 RX 2846541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9294064528 RX 208645 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 188 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1332227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9612517212 RX 3032971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9571945847 RX 209940 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1216568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9344265447 RX 2848461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9308196238 RX 208771 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 9 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1332616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9616176147 RX 3034987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9575592740 RX 210066 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1218072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9358359498 RX 2850405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9322257300 RX 208900 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1333008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9619692204 RX 3036955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9579092749 RX 210189 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1219574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9372466668 RX 2852301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9336331463 RX 209029 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 15 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 89 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1333395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9623270794 RX 3038923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9582658810 RX 210312 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1221083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9386648214 RX 2854221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9350479841 RX 209155 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1333781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9626803252 RX 3040939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9586177142 RX 210438 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1222588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9400725369 RX 2856165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9364524038 RX 209284 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 8 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1334168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9630328298 RX 3042907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9589689422 RX 210561 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1224095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9414892449 RX 2858061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9378657976 RX 209413 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1334555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9633929633 RX 3044971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9593278619 RX 210690 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1225602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9428983351 RX 2859981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9392715399 RX 209539 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 132 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1334949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9637480239 RX 3046915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9596813066 RX 210813 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1227109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 117953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9443123038 RX 2861925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9406821997 RX 209668 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 40 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1335337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9641042622 RX 3048907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9600360871 RX 210936 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1228615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9457205443 RX 2863821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9420871439 RX 209797 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 78 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1335725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9644581266 RX 3050923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9603887084 RX 211062 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1230121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9471342442 RX 2865741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9434975365 RX 209923 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1336112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 125983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9648080856 RX 3052867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9607374476 RX 211185 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1231629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9485566099 RX 2867685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9449165772 RX 210052 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1336499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9651627380 RX 3054811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9610908598 RX 211305 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1233135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9499738759 RX 2869581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9463303802 RX 210181 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1336888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9655226189 RX 3056827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9614494205 RX 211431 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1234646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9513907378 RX 2871501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9477439263 RX 210307 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1337278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9658739264 RX 3058771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9617991109 RX 211554 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1236151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9528056149 RX 2873445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9491554932 RX 210436 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1337666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9662284540 RX 3060763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9621524279 RX 211677 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1237651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9542196919 RX 2875341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9505662634 RX 210565 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1338053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9665880308 RX 3062779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9625108017 RX 211803 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1239154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9556273753 RX 2877261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9519706519 RX 210691 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 46 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1338438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9669437644 RX 3064723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9628653739 RX 211926 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1240660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9570383359 RX 2879205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9533783097 RX 210820 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 644 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 92 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1338824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9673160524 RX 3066715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9632367919 RX 212049 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1242171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9584465189 RX 2881101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9547829981 RX 210949 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 29 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1339215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9676762408 RX 3068683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9635956639 RX 212172 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1243678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9598630988 RX 2883021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9561962637 RX 211075 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 72 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1339604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9680316210 RX 3070699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9639494351 RX 212298 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1245183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9612676784 RX 2884965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9575975545 RX 211204 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 150 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1339993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9683913005 RX 3072715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9643079259 RX 212424 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1246688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 118993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9626858264 RX 2886861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9590123861 RX 211333 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 11 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1340380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9687433132 RX 3074731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9646587157 RX 212550 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1248193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9641037182 RX 2888781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9604269615 RX 211459 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1340767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 126975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9690970591 RX 3076699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9650111024 RX 212673 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1249699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9655177428 RX 2890725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9618376287 RX 211588 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1341153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9694498623 RX 3078667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9653626694 RX 212796 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1251208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9669403581 RX 2892621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9632569169 RX 211717 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1341548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9698083305 RX 3080683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9657194398 RX 212922 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1252713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9683487264 RX 2894541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9646619891 RX 211843 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 239 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1341935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9701705185 RX 3082651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9660806127 RX 213045 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1254220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9697607751 RX 2896485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9660707335 RX 211972 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1342321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9705182065 RX 3084667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9664268399 RX 213171 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1255730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9711738480 RX 2898381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9674804994 RX 212101 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1342709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9708742113 RX 3086659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9667816520 RX 213297 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1257237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9725941530 RX 2900301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9688974831 RX 212227 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1343096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9712275799 RX 3088699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9671337473 RX 213423 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1258744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9740105137 RX 2902245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9703104814 RX 212356 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1343486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9715764659 RX 3090667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9674810537 RX 213546 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1260250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9754260823 RX 2904141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9717227384 RX 212485 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1343876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9719352532 RX 3092635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9678383565 RX 213669 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1261757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9768386365 RX 2906061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9731319870 RX 212611 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1344264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9722911720 RX 3094603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9681931110 RX 213792 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1263261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9782561314 RX 2908005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9745461669 RX 212740 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1344812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9726305291 RX 3096619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9685302426 RX 213918 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1264540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 119953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9794621202 RX 2909901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9757492368 RX 212869 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2246 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1345608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9729499209 RX 3098683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9688462490 RX 214047 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1265443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9803203120 RX 2911821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9766053739 RX 212995 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3172 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1346399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 127976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9733051963 RX 3100699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9691982354 RX 214173 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1266347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9811725466 RX 2913765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9774556142 RX 213124 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2167 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3077 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1347201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9736603349 RX 3102763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9695498719 RX 214302 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1267251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9820240949 RX 2915661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9783051210 RX 213253 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2199 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1347976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9739800832 RX 3104827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9698664776 RX 214431 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1268154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9828772451 RX 2917581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9791562742 RX 213379 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2644 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1348765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9743137953 RX 3106843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9701970226 RX 214557 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1269063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9837297661 RX 2919525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9800065529 RX 213508 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2081 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1349549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9746331426 RX 3108907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9705130305 RX 214686 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1269967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9845806951 RX 2921421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9808554900 RX 213637 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2188 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1350338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9749780769 RX 3110971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9708545288 RX 214815 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1270872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9854325841 RX 2923341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9817053851 RX 213763 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2179 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1351045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9753025608 RX 3112987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9711759870 RX 214941 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1271895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9864010165 RX 2925285 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9826715540 RX 213892 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1351438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9756546556 RX 3115003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9715263991 RX 215067 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1273409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9878205220 RX 2927181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9840877381 RX 214021 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1351825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9760084749 RX 3117019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9718786923 RX 215193 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1274919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9892336141 RX 2929101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9854975218 RX 214147 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1352210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9763534701 RX 3118939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9722222728 RX 215313 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1276424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9906567283 RX 2931045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9869173085 RX 214276 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1352597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9767085065 RX 3120955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9725761042 RX 215439 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1277935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9920774844 RX 2932941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9883346423 RX 214405 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1352984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9770739772 RX 3123019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9729405126 RX 215568 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1279440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 120992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9934844560 RX 2934861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9897382710 RX 214531 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 490 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1353379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 128987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9774387499 RX 3124987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9733039867 RX 215691 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1280943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9948968371 RX 2936805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9911473475 RX 214660 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 132 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1353767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9778039607 RX 3127003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9736683155 RX 215817 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1282453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9963160798 RX 2938701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9925632701 RX 214789 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1354154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9781612706 RX 3129019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9740242314 RX 215943 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1283960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9977247364 RX 2940621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9939686290 RX 214915 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1354541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9785183625 RX 3130987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9743802356 RX 216066 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1285466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 9991415722 RX 2942565 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9953821506 RX 215044 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 357 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1354927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9788903115 RX 3133003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9747512234 RX 216192 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1286980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 10005545154 RX 2944461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9967915409 RX 215173 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 452 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1355318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9792531040 RX 3134995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9751128521 RX 216318 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1288485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 10019730600 RX 2946381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9982067687 RX 215299 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1355708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 9796124733 RX 3137011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9754706711 RX 216444 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1289995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 10033875858 RX 2948325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 9996179819 RX 215428 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 60 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1355869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 2421: ulsch_rounds 129548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 9797451822 RX 3139611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9756024063 RX 217384 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1291497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 10048020723 RX 2950357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10010291584 RX 215705 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1355993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: ulsch_rounds 129591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 9797852646 RX 3141630 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9756420352 RX 218120 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1292172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10052803380 RX 2954038 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10015044003 RX 217537 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1356379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 9800604908 RX 3143316 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9759165871 RX 218295 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1292996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10055601208 RX 2955934 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10017808348 RX 217666 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1356766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9804271532 RX 3145434 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9762823901 RX 218511 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1293801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10058383027 RX 2957854 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10020555910 RX 217792 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1357159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9807971580 RX 3147402 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9766511841 RX 218634 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1294694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 121976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10061657127 RX 2959798 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10023791621 RX 217921 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4074 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1357548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9811645532 RX 3149370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9770176209 RX 218757 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1295505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10064505953 RX 2961694 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10026605358 RX 218050 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1357935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 129997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9815336049 RX 3151386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9773857628 RX 218883 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1296316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10067296632 RX 2963614 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10029362288 RX 218176 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1358323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9819004272 RX 3153402 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9777517257 RX 219009 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1297139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10070133162 RX 2965558 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10032163633 RX 218305 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4130 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1358709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9822746544 RX 3155370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9781250788 RX 219132 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1297982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10073037301 RX 2967454 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10035031703 RX 218434 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1359099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9826426431 RX 3157386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9784920586 RX 219258 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1298832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10075836563 RX 2969374 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10037795592 RX 218560 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1359492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9830096223 RX 3159354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9788578818 RX 219381 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1299653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10078731903 RX 2971318 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10040655236 RX 218689 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4359 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1359878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9833779935 RX 3161370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9792253918 RX 219507 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1300500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10081652148 RX 2973214 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10043539628 RX 218818 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1360266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9837432718 RX 3163386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9795897645 RX 219633 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1301309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10084385795 RX 2975134 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10046240162 RX 218944 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3794 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4111 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1360653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9841125646 RX 3165354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9799581936 RX 219756 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1302149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10087279608 RX 2977078 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10049099285 RX 219073 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4124 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1361040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9844784269 RX 3167346 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9803231985 RX 219882 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1302968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10090163721 RX 2978974 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10051949581 RX 219202 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3992 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1361433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9848452588 RX 3169362 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9806888754 RX 220008 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1303776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10092974410 RX 2980894 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10054725697 RX 219328 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3886 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4135 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1361823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9852120892 RX 3171354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9810546988 RX 220131 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1304610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 122936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10095866427 RX 2982838 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10057582912 RX 219457 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4136 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1362210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9855837548 RX 3173322 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9814254460 RX 220254 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1305455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10098784260 RX 2984734 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10060466313 RX 219586 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1362597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 130996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9859476971 RX 3175338 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9817885352 RX 220380 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1306275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10101623603 RX 2986654 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10063272079 RX 219712 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1362984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9863176427 RX 3177354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9821576151 RX 220506 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1307102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10104424848 RX 2988598 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10066039363 RX 219841 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3983 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1363370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9866847083 RX 3179370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9825238216 RX 220632 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1307936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10107220210 RX 2990494 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10068799242 RX 219970 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4051 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1363766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9870557531 RX 3181386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9828935549 RX 220758 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1308788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10110104054 RX 2992414 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10071647570 RX 220096 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4083 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1364153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9874224347 RX 3183354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9832593776 RX 220881 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1309617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10112968583 RX 2994358 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10074477093 RX 220225 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3938 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1364540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9877966923 RX 3185370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9836327120 RX 221007 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1310456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10115798784 RX 2996254 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10077271554 RX 220354 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1364928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9881555529 RX 3187362 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9839907294 RX 221133 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1311282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10118611802 RX 2998174 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10080050669 RX 220480 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1365315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9885233736 RX 3189354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9843576892 RX 221256 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1312102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10121447427 RX 3000118 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10082852074 RX 220609 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1365708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9888921831 RX 3191370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9847253397 RX 221382 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1312937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10124315517 RX 3002014 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10085685592 RX 220738 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4060 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1366098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9892620391 RX 3193386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9850941335 RX 221508 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1313769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10127175651 RX 3003934 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10088511175 RX 220864 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3196 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1366857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9899943108 RX 3195402 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9858244568 RX 221634 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1314578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10130299842 RX 3005878 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10091601074 RX 220993 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1367768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 131917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9908469131 RX 3197466 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9866749635 RX 221763 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1315349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 123976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10133434185 RX 3007774 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10094702374 RX 221122 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1368677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9916980949 RX 3199482 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9875240534 RX 221889 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1316110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10136558117 RX 3009694 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10097792724 RX 221248 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1996 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2054 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1369586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9925581775 RX 3201546 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9883819771 RX 222018 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1316873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10139866553 RX 3011638 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10101069881 RX 221377 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1370498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9934132968 RX 3203610 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9892348498 RX 222147 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1317638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10143161116 RX 3013534 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10104333214 RX 221506 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1371406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9942650256 RX 3205626 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9900845835 RX 222273 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1318383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10146301546 RX 3015454 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10107442880 RX 221632 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2039 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1372313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9951185913 RX 3207690 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9909361515 RX 222402 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1319146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10149447478 RX 3017398 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10110555475 RX 221761 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2221 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1373223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9959742642 RX 3209754 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9917896754 RX 222531 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1319913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10152679544 RX 3019294 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10113756094 RX 221890 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2182 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1374242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9969305031 RX 3211770 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9927436757 RX 222657 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1320603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10155912980 RX 3021238 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10116962083 RX 222016 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1081 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1375749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9983492340 RX 3213834 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9941590876 RX 222786 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1320996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10159469384 RX 3023062 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10120504652 RX 222136 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 30 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1377246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 9997519248 RX 3215898 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9955584943 RX 222915 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1321384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10162985527 RX 3024958 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10124004635 RX 222262 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1378740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10011552744 RX 3217914 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9969585600 RX 223041 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1321770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10166459242 RX 3026830 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10127464110 RX 222385 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1380239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10025527557 RX 3219978 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9983527674 RX 223170 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1322155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10170040591 RX 3028702 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10131031709 RX 222508 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 87 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1381744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 132941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10039586217 RX 3222042 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 9997553415 RX 223299 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1322541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 124927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10173571153 RX 3030598 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10134544528 RX 222634 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1383239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10053634546 RX 3224058 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10011568389 RX 223425 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1322931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10177063141 RX 3032470 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10138022108 RX 222757 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1384733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10067662987 RX 3226122 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10025564020 RX 223554 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1323317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10180577284 RX 3034270 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10141521113 RX 222874 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1386232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10081663912 RX 3228186 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10039532158 RX 223683 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1323705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10184292097 RX 3036166 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10145222873 RX 223000 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1387732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10095753670 RX 3230202 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10053588956 RX 223809 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1324091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10187829694 RX 3038086 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10148747001 RX 223126 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1389225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10109758750 RX 3232266 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10067561263 RX 223938 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1324477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10191314258 RX 3039982 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10152216477 RX 223246 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1390726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10123754557 RX 3234330 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10081524287 RX 224067 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1324862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10194823804 RX 3041878 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10155711308 RX 223372 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1392226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10137750731 RX 3236346 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10095487192 RX 224193 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1325253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125474/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10198340808 RX 3043750 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10159211242 RX 223495 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1393722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10151825894 RX 3238410 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10109529441 RX 224322 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1325639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10201885139 RX 3045622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10162743343 RX 223618 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1395218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10165815296 RX 3240474 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10123486088 RX 224451 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1326026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10205383715 RX 3047470 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10166224027 RX 223738 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1396716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10179826589 RX 3242490 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10137464584 RX 224577 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1326412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10208894787 RX 3049366 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10169717994 RX 223861 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1398217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10193895485 RX 3244554 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10151500545 RX 224706 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1326798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10212502744 RX 3051214 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10173313876 RX 223984 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 163 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1399711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 133965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10207889813 RX 3246618 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10165462117 RX 224835 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1327184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10215999264 RX 3053038 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10176796058 RX 224104 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1401211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10221832482 RX 3248634 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10179371622 RX 224961 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1327574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 125940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10219627223 RX 3054934 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10180409483 RX 224227 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 516 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1402710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10235815488 RX 3250698 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10193321886 RX 225090 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1327960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10223218847 RX 3056806 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10183987384 RX 224353 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1404209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10249876446 RX 3252762 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10207349937 RX 225219 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1328346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10226686565 RX 3058702 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10187440397 RX 224476 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1405707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10263854010 RX 3254778 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10221294756 RX 225345 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1328731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10230174352 RX 3060646 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10190912001 RX 224599 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1407212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10277926110 RX 3256842 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10235333905 RX 225474 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1329117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10233743460 RX 3062518 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10194467594 RX 224722 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1408717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10292079217 RX 3258906 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10249453420 RX 225603 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1329504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10237227949 RX 3064366 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10197937312 RX 224845 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1410220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10306201747 RX 3260922 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10263542912 RX 225729 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1329892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10240693556 RX 3066238 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10201386276 RX 224968 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1411725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10320270901 RX 3262986 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10277579126 RX 225858 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1330279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10244226691 RX 3068158 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10204902680 RX 225091 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1413231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10334366554 RX 3265050 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10291641786 RX 225987 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1330666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10247709063 RX 3070030 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10208368387 RX 225214 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1414730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10348447480 RX 3267066 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10305689761 RX 226113 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1331052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10251181726 RX 3071926 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10211827049 RX 225337 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1416237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10362525853 RX 3269130 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10319735170 RX 226242 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1331437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10254768269 RX 3073870 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10215400853 RX 225463 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1417743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 134989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10376598257 RX 3271194 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10333774141 RX 226371 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1331826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10258295813 RX 3075742 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10218912866 RX 225589 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1419246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10390747091 RX 3273210 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10347889876 RX 226497 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1332213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10261785306 RX 3077614 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10222388611 RX 225712 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1420745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10404834353 RX 3275274 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10361944181 RX 226626 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1332603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 126963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10265247355 RX 3079462 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10225834789 RX 225835 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1422247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10418860433 RX 3277338 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10375937430 RX 226755 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1332987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10268829645 RX 3081382 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10229403672 RX 225958 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1423747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10432924271 RX 3279354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10389968356 RX 226881 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1333370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10272275986 RX 3083206 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10232834721 RX 226078 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1425243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10446947402 RX 3281418 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10403958669 RX 227010 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1333756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10275759620 RX 3085150 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10236301904 RX 226204 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1426744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10460926680 RX 3283482 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10417904712 RX 227139 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1334145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10279476437 RX 3087046 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10240007698 RX 226327 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1427879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10471657107 RX 3285498 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10428608615 RX 227265 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1334791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10282765845 RX 3088990 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10243267932 RX 226453 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2032 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1428787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10480151146 RX 3287562 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10437082270 RX 227394 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1335545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10285893792 RX 3090886 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10246365797 RX 226582 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2092 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1429699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10488708867 RX 3289626 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10445617503 RX 227523 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1336320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10289439203 RX 3092806 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10249878662 RX 226708 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2129 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1430611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10497276219 RX 3291642 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10454163327 RX 227649 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1337081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10292597103 RX 3094750 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10253006077 RX 226837 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1431519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 135927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10505780451 RX 3293706 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10462647645 RX 227778 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1337838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10295682013 RX 3096646 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10256057935 RX 226966 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1432431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10514342892 RX 3295770 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10471187105 RX 227907 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1338599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10298929798 RX 3098566 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10259274350 RX 227092 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2275 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2208 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1433340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10522905461 RX 3297786 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10479728656 RX 228033 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1339361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10302146813 RX 3100510 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10262460574 RX 227221 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1434250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10531470896 RX 3299850 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10488272578 RX 228162 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1340122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10305318616 RX 3102406 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10265600396 RX 227350 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2025 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1435234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10540680035 RX 3301914 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10497460149 RX 228291 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1340830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 127998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10308493406 RX 3104326 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10268745740 RX 227476 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1502 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1436745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10554870869 RX 3303930 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10511617782 RX 228417 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1341225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10312017563 RX 3106222 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10272255555 RX 227599 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1438245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10568929268 RX 3305994 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10525643274 RX 228546 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1341611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10315544632 RX 3108142 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10275767537 RX 227725 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1439747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10583060885 RX 3308058 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10539741837 RX 228675 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1341996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10319031992 RX 3110014 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10279241030 RX 227848 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1441249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10597148580 RX 3310074 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10553796067 RX 228801 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1342381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10322504306 RX 3111886 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10282698666 RX 227971 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1442750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10611198276 RX 3312138 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10567812875 RX 228930 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1342770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10326012334 RX 3113758 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10286188303 RX 228091 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1444250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10625275170 RX 3314202 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10581856832 RX 229059 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1343158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10329538787 RX 3115702 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10289698054 RX 228217 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1445748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10639312575 RX 3316218 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10595861390 RX 229185 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1343545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10333002674 RX 3117550 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10293145624 RX 228340 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1447248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 136951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10653291741 RX 3318282 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10609807809 RX 229314 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1343930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10336517120 RX 3119422 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10296643886 RX 228463 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1448751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10667355711 RX 3320346 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10623838854 RX 229443 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1344316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10340022677 RX 3121294 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10300132425 RX 228589 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1450247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10681420873 RX 3322362 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10637870622 RX 229569 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1344706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10343627120 RX 3123190 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10303725474 RX 228712 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1451745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10695450469 RX 3324426 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10651867383 RX 229698 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1345090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10347098044 RX 3125038 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10307180518 RX 228835 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1453242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10709445121 RX 3326490 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10665829264 RX 229827 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1345477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 128941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10350666962 RX 3126934 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10310734847 RX 228958 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1454741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10723543966 RX 3328506 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10679895130 RX 229953 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1345863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10354180298 RX 3128830 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10314235434 RX 229084 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1456236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10737536824 RX 3330570 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10693855229 RX 230082 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1346248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10357648706 RX 3130726 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10317687483 RX 229210 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1457737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10751532823 RX 3332634 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10707818451 RX 230211 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1346633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10361162253 RX 3132622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10321185260 RX 229333 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1459235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10765547363 RX 3334650 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10721799687 RX 230337 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1347024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10364707428 RX 3134494 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10324714589 RX 229459 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1460728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10779584507 RX 3336714 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10735803994 RX 230466 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1347410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10368320150 RX 3136342 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10328317186 RX 229579 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 631 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 29 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1462226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10793581463 RX 3338778 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10749768173 RX 230595 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1347797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10372007489 RX 3138238 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10331993233 RX 229705 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1463723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10807588979 RX 3340794 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10763742903 RX 230721 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1348183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10375580432 RX 3140182 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10335551508 RX 229831 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1465221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 137975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10821645968 RX 3342858 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10777767004 RX 230850 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1348569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10379096274 RX 3142054 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10339053507 RX 229954 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1466717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10835615402 RX 3344922 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10791703731 RX 230979 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1348955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10382579157 RX 3143878 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10342520500 RX 230077 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 9 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 628 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1468216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10849547574 RX 3346938 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10805602758 RX 231105 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1349345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10386289586 RX 3145774 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10346215984 RX 230200 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 61 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1469715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10863569364 RX 3349002 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10819591725 RX 231234 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1349731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10389867684 RX 3147622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10349781919 RX 230323 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 60 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1471211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10877585967 RX 3351066 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10833575524 RX 231363 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1350117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10393373386 RX 3149494 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10353273261 RX 230446 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1472710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10891573836 RX 3353082 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10847530645 RX 231489 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1350502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 129961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10396865606 RX 3151414 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10356749645 RX 230575 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 49 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 36 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1474216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10905656049 RX 3355146 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10861579882 RX 231618 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1350888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10400462823 RX 3153310 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10360333733 RX 230698 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 81 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1475718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10919797414 RX 3357210 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10875687698 RX 231747 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1351275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10404027567 RX 3155158 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10363887809 RX 230818 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 100 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1477222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10933895431 RX 3359226 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10889752728 RX 231873 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1351663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10407555356 RX 3157078 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10367398951 RX 230944 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 73 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1478726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10947963178 RX 3361290 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10903787546 RX 232002 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1352050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10411090661 RX 3158950 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10370919145 RX 231067 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1480234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10962085969 RX 3363354 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10917877283 RX 232131 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1352438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10414592833 RX 3160894 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10374405425 RX 231193 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1481734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10976157616 RX 3365370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10931915992 RX 232257 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1352824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10418072469 RX 3162790 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10377871153 RX 231316 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1483242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 138999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 10990246678 RX 3367434 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10945972064 RX 232386 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1353209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10421611756 RX 3164686 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10381395429 RX 231442 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1484747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11004341225 RX 3369498 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10960033120 RX 232515 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1353597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10425139345 RX 3166606 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10384906751 RX 231565 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1486248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11018475401 RX 3371514 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10974134233 RX 232641 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1353983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10428647625 RX 3168502 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10388401161 RX 231691 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1487749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11032556264 RX 3373578 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10988182152 RX 232770 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1354372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10432278032 RX 3170374 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10392018477 RX 231814 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 31 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1337 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1488800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11042496212 RX 3375642 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 10998097417 RX 232899 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1355064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10435575790 RX 3172318 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10395288661 RX 231943 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2085 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1489707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11051034239 RX 3377658 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11006615467 RX 233025 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1355825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 130911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 10438648494 RX 3174214 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10398329194 RX 232072 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1490615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11059522853 RX 3379830 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11015084191 RX 233305 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1355880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE c22c: ulsch_rounds 130948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 10438804208 RX 3176686 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10398475107 RX 232972 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 33 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1491166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 2421: ulsch_rounds 139605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 11064590529 RX 3382935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11020131672 RX 234688 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1355894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 130969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 10438806416 RX 3178375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10398475176 RX 233203 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1491828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11067171711 RX 3385543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11022681330 RX 235335 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1356665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 20 +UE c22c: ulsch_rounds 131055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10441647285 RX 3180819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10401307459 RX 233865 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1492613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11070692941 RX 3387583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11026167569 RX 235464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1357570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10449147013 RX 3182763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10408789315 RX 233994 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3235 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2240 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1493400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11073922759 RX 3389623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11029364753 RX 235590 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1358472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10457695603 RX 3184659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10417317915 RX 234123 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2076 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1494173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 139952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11077042272 RX 3391687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11032451748 RX 235719 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1359381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10466207373 RX 3186579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10425807294 RX 234249 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1494953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11080133399 RX 3393727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11035510035 RX 235848 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1360286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10474704822 RX 3188523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10434284856 RX 234378 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3149 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1495862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11083483606 RX 3395767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11038822845 RX 235974 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1360764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10479213436 RX 3190371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10438782424 RX 234504 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5080 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1496711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11086577900 RX 3397831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11041882108 RX 236103 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1361150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10482877372 RX 3192219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10442437780 RX 234627 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1497529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11089407559 RX 3399871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11044677500 RX 236232 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1361535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10486649596 RX 3194139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10446201214 RX 234750 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1498384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11092306605 RX 3401911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11047540608 RX 236358 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1361924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10490393356 RX 3195987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10449934754 RX 234873 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4274 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1499255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11095286541 RX 3403975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11050484776 RX 236487 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1362313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10494058972 RX 3197907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10453590310 RX 234999 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4187 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1500088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11098185854 RX 3406015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11053348400 RX 236616 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1362698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10497792028 RX 3199803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10457314646 RX 235122 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1500933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11101081425 RX 3408055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11056207528 RX 236742 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1363084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 131926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10501566940 RX 3201723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10461080758 RX 235245 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4179 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1501778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11103977892 RX 3410119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11059069745 RX 236871 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1363470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10505244124 RX 3203643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10464749338 RX 235371 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4019 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1502608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11106843089 RX 3412159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11061900750 RX 237000 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1363856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10508947420 RX 3205539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10468443971 RX 235494 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1503479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11110046782 RX 3414199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11065068259 RX 237126 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1364244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10512688492 RX 3207483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10472174830 RX 235620 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1504324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 140976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11112971654 RX 3416263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11067958043 RX 237255 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1364631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10516379036 RX 3209379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10475856249 RX 235743 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1505136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11115814709 RX 3418303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11070767279 RX 237384 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1365021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10519999452 RX 3211323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10479466210 RX 235869 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4166 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1505963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11118637626 RX 3420343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11073555351 RX 237510 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1365406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10523732700 RX 3213243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10483190747 RX 235992 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1506806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11121565339 RX 3422407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11076448685 RX 237639 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1365792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10527462108 RX 3215163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10486911444 RX 236118 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4255 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1507628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11124404699 RX 3424447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11079254516 RX 237768 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1366178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10531112796 RX 3217083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10490553582 RX 236241 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4062 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4241 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1508473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11127370372 RX 3426487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11082184294 RX 237894 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1366566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10534795308 RX 3218979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10494225997 RX 236364 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3910 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1509310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11130202958 RX 3428551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11084981729 RX 238023 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1366953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10538531740 RX 3220899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10497953212 RX 236487 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1510130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11133015887 RX 3430591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11087760869 RX 238152 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1367342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10542190636 RX 3222795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10501602060 RX 236613 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4053 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1510977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11135849267 RX 3432631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11090557798 RX 238278 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1367728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10545867628 RX 3224715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10505270447 RX 236739 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3967 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4940 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1511869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11139066142 RX 3434695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11093738074 RX 238407 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1368113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 132965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10549613932 RX 3226659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10509008005 RX 236862 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4091 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1512720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11141980364 RX 3436735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11096617059 RX 238536 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1368500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10553356892 RX 3228531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10512741733 RX 236985 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1513556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 141914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11144806479 RX 3438775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11099408030 RX 238662 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1368891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10557010060 RX 3230451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10516383879 RX 237111 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1514396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11147701632 RX 3440839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11102267233 RX 238791 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1369276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10560736780 RX 3232371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10520101896 RX 237237 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4166 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5218 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1515288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11150970740 RX 3442879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11105499920 RX 238920 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1369666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10564455116 RX 3234267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10523809573 RX 237357 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1516127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11153834566 RX 3444919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11108327956 RX 239046 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1370052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10568138828 RX 3236211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10527484666 RX 237483 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1516959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11156675700 RX 3446983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11111135234 RX 239175 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1370438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10571822348 RX 3238107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10531159567 RX 237606 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4036 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1517799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11159554925 RX 3449023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11113979582 RX 239304 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1370824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10575562620 RX 3240051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10534890619 RX 237732 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4022 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1518632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11162383788 RX 3451063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11116773081 RX 239430 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1371213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10579293516 RX 3241923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10538611323 RX 237855 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1519504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11165640879 RX 3453127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11119993907 RX 239559 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1371600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10582964476 RX 3243795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10542273204 RX 237978 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4006 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1520340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11168521118 RX 3455167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11122838721 RX 239688 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1371987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10586698716 RX 3245691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10545997738 RX 238104 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4096 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1521151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11171335589 RX 3457207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11125619355 RX 239814 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1372373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10590447708 RX 3247563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10549737976 RX 238227 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4053 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1522008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11174244678 RX 3459271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11128492945 RX 239943 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1372759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10594157532 RX 3249459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10553439127 RX 238350 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1522825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11177115598 RX 3461311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11131328872 RX 240072 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1373148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 133995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10597862316 RX 3251379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10557133773 RX 238473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4149 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4185 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1523691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 142938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11180101182 RX 3463351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11134277000 RX 240198 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1373536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10601610108 RX 3253275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10560871342 RX 238596 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4562 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1524566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11183163333 RX 3465415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11137302172 RX 240327 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1373922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10605319932 RX 3255195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10564572496 RX 238722 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1525426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11186070890 RX 3467455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11140173226 RX 240456 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1374308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10608977532 RX 3257115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10568221527 RX 238848 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1526254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11188902505 RX 3469495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11142968598 RX 240582 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1374693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10612697724 RX 3259059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10571933028 RX 238971 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3993 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4071 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1527096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11191826205 RX 3471559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11145858943 RX 240711 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1375079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10616472636 RX 3260931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10575699138 RX 239094 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3924 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1527926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11194640131 RX 3473599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11148638078 RX 240840 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1375469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134474/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10620112636 RX 3262851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10579328634 RX 239220 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1528763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11197492056 RX 3475639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11151455249 RX 240966 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1375854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10623832828 RX 3264723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10583040134 RX 239340 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1529616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11200363098 RX 3477703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11154289699 RX 241095 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1376243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134631/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10627563724 RX 3266643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10586760834 RX 239463 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3973 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4018 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1530493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11203438017 RX 3479743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11157327733 RX 241224 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1376629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10631247244 RX 3268563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10590435731 RX 239586 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4914 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1531336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11206368902 RX 3481783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11160222454 RX 241350 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1377028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10635039832 RX 3270435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10594219445 RX 239712 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2959 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1532145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11209549064 RX 3483847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11163366692 RX 241479 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1377933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10643656471 RX 3272355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10602814485 RX 239838 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2274 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2254 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1532946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11212800161 RX 3485887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11166583062 RX 241608 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1378835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 134950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10652198533 RX 3274299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10611336567 RX 239967 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2252 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1533732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 143962/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11216054764 RX 3487927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11169806932 RX 241734 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1379739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10660732462 RX 3276195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10619850531 RX 240096 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1534519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11219490724 RX 3489991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11173208557 RX 241863 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1380644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10669237912 RX 3278115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10628336071 RX 240222 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2409 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1535289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11222760193 RX 3492031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11176444223 RX 241992 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1381547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10677780278 RX 3280059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10636857974 RX 240351 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2320 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2306 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1536072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11226009011 RX 3494071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11179660638 RX 242118 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1382455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10686286689 RX 3281955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10645342502 RX 240480 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1536864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11229574390 RX 3496135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11183191362 RX 242247 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1383359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10694809035 RX 3283875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10653844903 RX 240606 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3163 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1537637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11232760463 RX 3498175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11186344046 RX 242376 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1384263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10703326134 RX 3285819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10662342066 RX 240735 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2215 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 449 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1538127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11236250143 RX 3500119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11189815034 RX 242496 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1385634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10716259107 RX 3287715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10675244786 RX 240864 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 25 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1538523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11239813171 RX 3502111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11193362020 RX 242622 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1387138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10730401416 RX 3289635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10689354019 RX 240990 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1538910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11243397313 RX 3504103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11196934651 RX 242745 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1388644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10744525935 RX 3291579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10703445494 RX 241119 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 39 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1539298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11246902517 RX 3506071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11200425662 RX 242868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1390154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10758698394 RX 3293475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10717584789 RX 241248 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1539685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11250480487 RX 3508063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11203987471 RX 242994 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1391660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10772769216 RX 3295395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10731622662 RX 241374 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1540068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11253958208 RX 3510007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11207452025 RX 243114 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1393167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10786908451 RX 3297339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10745726850 RX 241503 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1540461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 144966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11257588160 RX 3512023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11211069210 RX 243240 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1394675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 135990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10801092556 RX 3299235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10759877781 RX 241632 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 478 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1540854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11261243423 RX 3514039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11214712951 RX 243366 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1396183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10815322549 RX 3301155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10774074520 RX 241758 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1541242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11264870259 RX 3516007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11218329667 RX 243489 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1397689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10829518492 RX 3303099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10788237269 RX 241887 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 143 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1541628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11268501103 RX 3517975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11221950326 RX 243612 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1399198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10843670275 RX 3304995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10802355944 RX 242016 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 216 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1542015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11272054131 RX 3519991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11225492692 RX 243738 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1400704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10857853162 RX 3306915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10816505657 RX 242142 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 37 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 47 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1542402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11275622725 RX 3521911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11229046933 RX 243858 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1402211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10871941009 RX 3308859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10830560529 RX 242271 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1542799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11279105593 RX 3523879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11232511529 RX 243981 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1403716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10886111926 RX 3310755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10844698301 RX 242400 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1543188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11282720467 RX 3525895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11236111646 RX 244107 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1405224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10900195741 RX 3312675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10858749139 RX 242526 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1543576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11286308131 RX 3527887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11239686465 RX 244233 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1406737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10914365962 RX 3314619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10872886196 RX 242655 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 47 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1543962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11289827392 RX 3529855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11243191119 RX 244356 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1408242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10928496622 RX 3316515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10886983793 RX 242784 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 9 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 192 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1544349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11293456106 RX 3531871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11246808598 RX 244482 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1409744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10942551760 RX 3318435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10901006033 RX 242910 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1544739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11297011187 RX 3533863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11250352160 RX 244605 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1411247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10956770998 RX 3320379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10915192035 RX 243039 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 86 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1545133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 145960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11300608267 RX 3535879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11253934438 RX 244731 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1412756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 136950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10970971039 RX 3322275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10929358855 RX 243168 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1545518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11304161731 RX 3537847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11257473556 RX 244854 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1414265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10985084743 RX 3324195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10943439517 RX 243294 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 101 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1545906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11307781847 RX 3539863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11261084711 RX 244980 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1415768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 10999249387 RX 3326139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10957571044 RX 243423 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 70 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1546293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11311461719 RX 3541879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11264755966 RX 245106 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1417278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11013414037 RX 3328035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10971702559 RX 243552 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 293 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1546679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11315138711 RX 3543847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11268424354 RX 245229 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1418785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11027519577 RX 3329955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10985774108 RX 243678 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 11 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1547073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11318779018 RX 3545815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11272049824 RX 245352 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1420292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11041620672 RX 3331899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 10999842189 RX 243807 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1547463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11322351159 RX 3547831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11275606459 RX 245478 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1421802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11055811434 RX 3333795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11013999746 RX 243936 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1547851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11325877070 RX 3549775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11279119170 RX 245601 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1423308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11069994513 RX 3335715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11028149652 RX 244062 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1548237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11329416265 RX 3551719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11282642937 RX 245721 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1424817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11084101689 RX 3337659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11042223819 RX 244191 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1548624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11332954954 RX 3553783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11286170330 RX 245850 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1426326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11098294366 RX 3339555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11056381340 RX 244320 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1549013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11336550025 RX 3555751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11289752738 RX 245973 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1427830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11112449539 RX 3341475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11070503399 RX 244446 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 592 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1549409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11340179091 RX 3557719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11293367048 RX 246096 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1429333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11126590372 RX 3343419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11084611154 RX 244575 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1549797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 146953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11343854689 RX 3559687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11297031692 RX 246219 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1430839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11140654282 RX 3345315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11098642132 RX 244704 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1550185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11347495862 RX 3561703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11300663864 RX 246345 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1432345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 137989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11154803248 RX 3347235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11112757996 RX 244830 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 43 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1550571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11351212214 RX 3563719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11304371532 RX 246471 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1433851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11168891989 RX 3349179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11126813762 RX 244959 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 472 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1550958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11354878838 RX 3565711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11308029565 RX 246597 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1435353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11182953271 RX 3351075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11140842122 RX 245088 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 70 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1551421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11358840746 RX 3567751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11311977496 RX 246723 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1436758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11196203905 RX 3352995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11154061776 RX 245214 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1453 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1552237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11362103624 RX 3569767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11315205762 RX 246849 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1437663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11204802241 RX 3354939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11162638540 RX 245343 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2308 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2272 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1553005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11365340844 RX 3571831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11318410812 RX 246978 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1438568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11213293162 RX 3356835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11171109585 RX 245472 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2241 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1553803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11368566280 RX 3573895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11321600511 RX 247107 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1439470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11221868056 RX 3358755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11179664442 RX 245598 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1554569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11371757418 RX 3575911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11324760585 RX 247233 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1440374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11230385155 RX 3360699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11188161608 RX 245727 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2300 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1555347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11374987163 RX 3577975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11327957714 RX 247362 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1441279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11238873357 RX 3362595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11196628959 RX 245856 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2292 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2225 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1556114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11378165101 RX 3580039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11331101496 RX 247491 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1442182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11247382521 RX 3364515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11205118210 RX 245982 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2322 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1556896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11381421507 RX 3582055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11334325301 RX 247617 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1443086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11255920677 RX 3366459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11213636399 RX 246111 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2120 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1557704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 147970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11384968818 RX 3584119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11337837725 RX 247746 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1443990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11264436687 RX 3368355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11222132478 RX 246240 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3138 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 528 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1558179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11388428258 RX 3586111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11341277621 RX 247872 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1445391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 138949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11277606357 RX 3370275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11235271332 RX 246366 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 518 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1558567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11392083041 RX 3588151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11344923839 RX 247998 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1446895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11291737083 RX 3372219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11249369005 RX 246495 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1558953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11395805729 RX 3590119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11348637831 RX 248121 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1448407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11305888998 RX 3374115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11263487792 RX 246624 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1559346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11399418671 RX 3592135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11352237806 RX 248247 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1449912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11320033995 RX 3376035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11277599689 RX 246750 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 501 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1559737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11403091070 RX 3594103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11355896519 RX 248370 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1451421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11334141363 RX 3377979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11291674031 RX 246879 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 26 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 46 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1560125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11406648345 RX 3596167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11359442878 RX 248499 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1452928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11348396061 RX 3379875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11305895408 RX 247008 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1560512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11410227264 RX 3598135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11363010448 RX 248622 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1454433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11362555395 RX 3381795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11320021624 RX 247134 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 118 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1560898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11413759233 RX 3600127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11366528675 RX 248748 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1455947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11376725995 RX 3383739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11334157095 RX 247263 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1561285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11417292146 RX 3602143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11370048572 RX 248874 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1457449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11390800525 RX 3385635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11348198678 RX 247392 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1561680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11420868491 RX 3604135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11373609544 RX 248997 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1458952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11404944112 RX 3387555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11362309179 RX 247518 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 49 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1562068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148887/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11424444280 RX 3606103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11377175880 RX 249120 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1460458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11419120855 RX 3389499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11376452763 RX 247647 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 518 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1562455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 148970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11428167437 RX 3608119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11380889871 RX 249246 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1461963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11433192955 RX 3391395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11390491916 RX 247776 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 992 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1562842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11431879949 RX 3610087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11384593701 RX 249369 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1463476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11447356456 RX 3393315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11404622268 RX 247902 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 35 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1563229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11435553101 RX 3612055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11388258248 RX 249492 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1464984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 139990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11461492940 RX 3395259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11418723708 RX 248031 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 45 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1563622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11439198167 RX 3614071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11391889344 RX 249618 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1466486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11475526637 RX 3397155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11432724538 RX 248160 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 44 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1564015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11442756303 RX 3616087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11395433944 RX 249744 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1467992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11489777558 RX 3399075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11446942153 RX 248286 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 184 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1564402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11446350055 RX 3618103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11399016609 RX 249870 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1469500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11503973630 RX 3401019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11461105022 RX 248415 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1564789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 11449892586 RX 3620071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11402543004 RX 249993 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1471006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11518070372 RX 3402915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11475168761 RX 248544 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1564993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 2421: ulsch_rounds 149538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 11451644475 RX 3622727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11404283806 RX 250950 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1472510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 11532230984 RX 3404865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11489296246 RX 248747 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 24 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1565077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: ulsch_rounds 149578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11451895854 RX 3624766 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11404530900 RX 251680 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1473281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE c22c: ulsch_rounds 140491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11538243725 RX 3408410 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11495278351 RX 250674 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1565473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11454404663 RX 3626380 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11407030046 RX 251849 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1474117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11541034831 RX 3410330 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11498035835 RX 250800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3972 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1565862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11458129031 RX 3628447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11410744231 RX 252060 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1474962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11543932417 RX 3412274 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11500898012 RX 250929 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4147 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1566250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11461815900 RX 3630439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11414422005 RX 252186 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1475795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11546794233 RX 3414170 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11503723089 RX 251058 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1566637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11465454939 RX 3632431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11418052513 RX 252309 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1476671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11550033393 RX 3416090 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11506924654 RX 251184 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5163 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3955 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1567023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 149979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11469197403 RX 3634399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11421786245 RX 252432 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1477515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11552882263 RX 3418034 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11509737920 RX 251313 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1567412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11472845627 RX 3636415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11425424930 RX 252558 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1478358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 140971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11555726950 RX 3419930 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11512547706 RX 251442 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4002 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1567806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11476514634 RX 3638407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11429081896 RX 252684 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1479210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11558579953 RX 3421850 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11515365909 RX 251568 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1568192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11480158986 RX 3640399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11432717708 RX 252807 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1480031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11561389301 RX 3423794 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11518137063 RX 251697 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3946 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1568580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11483891386 RX 3642367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11436440891 RX 252930 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1480850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11564141466 RX 3425690 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11520854440 RX 251826 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1568967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11487531898 RX 3644383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11440072865 RX 253056 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1481701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11567056889 RX 3427610 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11523733835 RX 251952 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4169 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1569353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11491241722 RX 3646399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11443774014 RX 253182 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1482546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11569933772 RX 3429554 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11526574243 RX 252081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4116 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1569749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11494912810 RX 3648367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11447432070 RX 253305 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1483343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11572720179 RX 3431450 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11529326667 RX 252210 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4073 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1570139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11498585977 RX 3650383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11451095158 RX 253431 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1484185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11575603847 RX 3433370 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11532175426 RX 252336 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1570526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11502309353 RX 3652351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11454809341 RX 253554 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1485000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11578443311 RX 3435314 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11534980781 RX 252465 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1570913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11505981224 RX 3654367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11458472615 RX 253680 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1485833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11581304528 RX 3437210 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11537806324 RX 252594 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4033 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4054 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1571300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11509706600 RX 3656359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11462189286 RX 253806 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1486673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11584146125 RX 3439130 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11540612135 RX 252720 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1571687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 150976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11513347112 RX 3658351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11465821262 RX 253929 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1487516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11587014735 RX 3441074 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11543444572 RX 252849 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1572083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11517016535 RX 3660367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11469477652 RX 254055 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1488330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 141931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11589755583 RX 3442970 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11546150538 RX 252978 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3914 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1572469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11520713111 RX 3662383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11473165584 RX 254181 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1489175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11592611671 RX 3444890 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11548971645 RX 253104 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1573001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11525682554 RX 3664351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11478121953 RX 254304 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1489999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11595514347 RX 3446834 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11551839705 RX 253233 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2075 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1573913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11534287403 RX 3666415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11486703765 RX 254433 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1490788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11598725085 RX 3448730 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11555017553 RX 253362 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3316 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1574823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11542824329 RX 3668479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11495219258 RX 254562 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1491568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11602383794 RX 3450650 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11558641688 RX 253488 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2346 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1575730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11551358897 RX 3670495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11503733853 RX 254688 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1492325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11605550243 RX 3452594 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11561777544 RX 253617 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2149 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1576641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11559910683 RX 3672559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11512263660 RX 254817 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1493088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11608752552 RX 3454490 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11564949469 RX 253746 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2278 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1577552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11568482245 RX 3674623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11520813199 RX 254946 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1493846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11611991632 RX 3456410 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11568157453 RX 253872 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2205 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2148 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1578459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11577003373 RX 3676639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11529314383 RX 255072 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1494606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11615159773 RX 3458354 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11571293755 RX 254001 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2213 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1579369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11585508227 RX 3678703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11537798829 RX 255201 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1495376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11618359670 RX 3460250 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11574460718 RX 254130 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2061 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1580279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11594079485 RX 3680767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11546348560 RX 255330 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1496143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11621518379 RX 3462170 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11577588644 RX 254256 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1581711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 151995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11607439898 RX 3682783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11559677682 RX 255456 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1496589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11624988727 RX 3464066 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11581041200 RX 254382 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 78 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 72 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1583208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11621396772 RX 3684847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11573601381 RX 255585 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1496977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11628537769 RX 3465914 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11584573007 RX 254505 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1584707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11635399170 RX 3686911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11587570997 RX 255714 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1497366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 142966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11632046624 RX 3467810 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11588064069 RX 254631 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1586210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11649469476 RX 3688927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11601608363 RX 255840 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1497752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11635509848 RX 3469682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11591511411 RX 254754 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1587706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11663471550 RX 3690991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11615577658 RX 255969 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1498138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11639023523 RX 3471554 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11595009513 RX 254877 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1589203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11677406169 RX 3693055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11629479638 RX 256098 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1498523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11642431441 RX 3473402 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11598400323 RX 255000 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1590705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11691472698 RX 3695071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11643513237 RX 256224 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1498909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11645935291 RX 3475298 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11601889416 RX 255126 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1592207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11705522506 RX 3697135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11657529664 RX 256353 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1499299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11649448425 RX 3477170 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11605385278 RX 255252 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1593712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11719605997 RX 3699199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11671580197 RX 256482 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1499684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11653040452 RX 3479042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11608964483 RX 255375 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 454 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1595224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11733738520 RX 3701215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11685679632 RX 256608 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1500071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11656809140 RX 3480938 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11612723886 RX 255501 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1596729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11747934268 RX 3703279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11699842186 RX 256737 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1500457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11660301187 RX 3482810 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11616202108 RX 255624 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1598232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 152934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11762029405 RX 3705343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11713904339 RX 256866 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1500841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11663774435 RX 3484682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11619660207 RX 255744 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1599735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11776105150 RX 3707359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11727947139 RX 256992 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1501227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11667362508 RX 3486602 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11623236816 RX 255870 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1601237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11790200819 RX 3709423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11742009362 RX 257121 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1501617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11670760666 RX 3488498 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11626618672 RX 255993 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1602735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11804258192 RX 3711487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11756033842 RX 257250 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1502003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11674272382 RX 3490370 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11630118057 RX 256116 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 245 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1604236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11818267055 RX 3713503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11770009897 RX 257376 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1502392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 143985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11677988030 RX 3492290 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11633823056 RX 256239 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1605737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11832303311 RX 3715567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11784013291 RX 257505 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1502778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11681644141 RX 3494186 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11637469100 RX 256362 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 40 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1607236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11846384237 RX 3717631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11798061267 RX 257634 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1503164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11685135705 RX 3496058 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11640946347 RX 256482 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1608735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11860407801 RX 3719647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11812051509 RX 257760 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1503549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11688605236 RX 3497930 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11644401547 RX 256602 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1610235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11874420504 RX 3721711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11826031398 RX 257889 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1503939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11692237814 RX 3499850 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11648019433 RX 256728 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1611733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11888502324 RX 3723775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11840080280 RX 258018 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1504327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11695896406 RX 3501794 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11651668477 RX 256854 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 37 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 535 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1613228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11902467981 RX 3725791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11854013219 RX 258144 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1504713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11699597318 RX 3503690 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11655360240 RX 256977 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 64 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1614725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11916436521 RX 3727855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11867949051 RX 258273 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1505099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11703216358 RX 3505586 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11658966572 RX 257100 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 18 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1616226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 153958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11930459721 RX 3729919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11881939419 RX 258402 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1505485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11706689739 RX 3507434 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11662423807 RX 257223 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1617718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11944496143 RX 3731935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11895942524 RX 258528 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1505875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11710145670 RX 3509282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11665864042 RX 257343 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1619216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11958486763 RX 3733999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11909900389 RX 258657 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1506261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11713726724 RX 3511154 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11669432288 RX 257466 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 227 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1620716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11972467210 RX 3736063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11923848097 RX 258786 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1506648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11717300067 RX 3513050 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11672990461 RX 257589 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 38 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1622217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 11986555690 RX 3738079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11937903603 RX 258912 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1507034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 144928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11720799949 RX 3514922 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11676476123 RX 257709 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1623712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12000520066 RX 3740143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11951835290 RX 259041 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1507419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11724204344 RX 3516794 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11679863688 RX 257832 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1625212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12014507041 RX 3742207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11965789508 RX 259170 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1507804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11727680336 RX 3518690 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11683323332 RX 257955 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1626713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12028513712 RX 3744223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11979762893 RX 259296 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1508195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11731137977 RX 3520514 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11686762029 RX 258078 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1628215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12042638993 RX 3746287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 11993855138 RX 259425 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1508581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11734617746 RX 3522434 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11690228649 RX 258201 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1629720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12056696564 RX 3748351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12007879800 RX 259554 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1508966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11738116007 RX 3524282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11693710932 RX 258321 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1631230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12070830540 RX 3750367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12021980210 RX 259680 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1509352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145399/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11741770481 RX 3526202 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11697353488 RX 258447 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 172 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1632737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12085014834 RX 3752431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12036131327 RX 259809 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1509738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11745441137 RX 3528074 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11701015550 RX 258573 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1634242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 154982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12099140548 RX 3754495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12050223493 RX 259938 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1510123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11748988335 RX 3529946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11704550179 RX 258693 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1635476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12110641899 RX 3756511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12061696958 RX 260064 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1510704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11752588608 RX 3531866 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11708126794 RX 258819 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2478 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1636384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12119219782 RX 3758575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12070254287 RX 260193 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1511487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11755833585 RX 3533810 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11711339704 RX 258948 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2245 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2084 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1637294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12127764736 RX 3760639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12078777767 RX 260322 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1512236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11758991506 RX 3535706 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11714467605 RX 259077 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2220 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1638201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12136271527 RX 3762655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12087264639 RX 260448 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1513003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11762153727 RX 3537626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11717598044 RX 259203 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1639108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12144800656 RX 3764719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12095773799 RX 260577 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1513760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 145955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11765314165 RX 3539570 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11720725474 RX 259332 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2231 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1640019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12153380938 RX 3766783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12104332529 RX 260706 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1514541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11768536027 RX 3541466 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11723915163 RX 259461 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2172 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1640928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12161937541 RX 3768799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12112867629 RX 260832 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1515301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11771706418 RX 3543386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11727054489 RX 259587 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2223 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1641842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12170448715 RX 3770863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12121355922 RX 260961 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1516062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11774871632 RX 3545330 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11730187356 RX 259716 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2059 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1642750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12179012261 RX 3772927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12129898945 RX 261090 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1516831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11778047905 RX 3547226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11733331108 RX 259845 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1945 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1288 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1644218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12192690479 RX 3774943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12143545122 RX 261216 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1517259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11781770662 RX 3549122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11737042090 RX 259968 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1645723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 155920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12206834003 RX 3777007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12157655560 RX 261345 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1517645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11785447846 RX 3550970 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11740710669 RX 260091 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 83 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1647224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12220964871 RX 3779071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12171752910 RX 261474 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1518032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11789064391 RX 3552818 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11744317227 RX 260214 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1648723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12234991908 RX 3781087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12185747113 RX 261600 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1518420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11792540806 RX 3554642 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11747775823 RX 260334 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1650226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12249054597 RX 3783151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12199776884 RX 261729 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1518810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11795990198 RX 3556514 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11751205044 RX 260457 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1651723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12263127201 RX 3785215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12213816570 RX 261858 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1519196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11799523226 RX 3558386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11754725021 RX 260580 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1653220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12277154109 RX 3787231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12227810652 RX 261984 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1519582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11803025163 RX 3560306 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11758212016 RX 260706 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1654717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12291101592 RX 3789295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12241725468 RX 262113 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1519966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11806405459 RX 3562178 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11761574762 RX 260829 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1656218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12305167399 RX 3791359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12255757869 RX 262242 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1520355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 146978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11809938128 RX 3564122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11765091359 RX 260955 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1657712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12319182400 RX 3793375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12269740066 RX 262368 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1520739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11813419775 RX 3566018 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11768558498 RX 261081 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1659206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12333170008 RX 3795439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12283694934 RX 262497 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1521127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11816929117 RX 3567914 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11772050876 RX 261207 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1660707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12347180536 RX 3797503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12297672649 RX 262626 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1521513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11820466555 RX 3569786 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11775572373 RX 261330 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1662206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12361254934 RX 3799519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12311714124 RX 262752 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1521899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11823995765 RX 3571682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11779088458 RX 261456 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1663702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 156944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12375210031 RX 3801583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12325636535 RX 262881 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1522283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11827444822 RX 3573578 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11782520617 RX 261582 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1665200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12389146235 RX 3803647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12339539604 RX 263010 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1522675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11830960906 RX 3575450 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11786017509 RX 261705 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1666704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12403214366 RX 3805663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12353574806 RX 263136 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1523061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11834440727 RX 3577322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11789481307 RX 261828 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1668200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12417230777 RX 3807727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12367558411 RX 263265 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1523447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11837874343 RX 3579194 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11792898518 RX 261951 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1669704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12431290715 RX 3809791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12381585435 RX 263394 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1523832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11841374187 RX 3581066 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11796381784 RX 262074 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1671211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12445403393 RX 3811807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12395665087 RX 263520 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1524218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11844909849 RX 3582938 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11799902226 RX 262200 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1672716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12459576276 RX 3813871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12409804338 RX 263649 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1524606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11848386274 RX 3584834 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11803363404 RX 262320 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1674223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12473686008 RX 3815935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12423881046 RX 263778 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1524992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11851911003 RX 3586658 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11806871485 RX 262440 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1675728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12487757916 RX 3817951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12437920010 RX 263904 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1525379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 147997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11855497502 RX 3588578 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11810443266 RX 262566 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1677230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12501856893 RX 3820015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12451986001 RX 264033 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1525767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11859035072 RX 3590498 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11813968030 RX 262692 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1678731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12515919453 RX 3822079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12466015647 RX 264162 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1526153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11862509401 RX 3592370 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11817426911 RX 262815 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1680233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12529951869 RX 3824095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12480015208 RX 264288 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1526537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11865981058 RX 3594218 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11820882866 RX 262938 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1681742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 157968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12544088377 RX 3826159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12494118162 RX 264417 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1526926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11869508497 RX 3596138 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11824395121 RX 263064 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1683239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12558213397 RX 3828223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12508210156 RX 264546 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1527313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11873093858 RX 3598034 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11827970184 RX 263187 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1684738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12572221042 RX 3830239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12522185005 RX 264672 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1527701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11876599938 RX 3599930 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11831458802 RX 263310 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1686240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12586254931 RX 3832303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12536186040 RX 264801 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1528087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11880057885 RX 3601874 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11834901013 RX 263436 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1687739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12600327664 RX 3834367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12550225842 RX 264930 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1528473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11883583337 RX 3603722 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11838413970 RX 263556 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1689238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12614322445 RX 3836383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12564187862 RX 265056 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1528858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11887184135 RX 3605570 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11842003435 RX 263682 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1690739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12628303196 RX 3838447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12578135377 RX 265185 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1529248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11890773292 RX 3607490 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11845576181 RX 263808 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1692238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12642364154 RX 3840511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12592163429 RX 265314 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1529635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11894258388 RX 3609386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11849046980 RX 263934 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1693734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12656426453 RX 3842527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12606192827 RX 265440 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1530024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 148943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11897771583 RX 3611282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11852544600 RX 264057 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1695230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12670402799 RX 3844591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12620136453 RX 265569 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1530409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11901436946 RX 3613202 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11856197922 RX 264183 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1696728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12684433676 RX 3846655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12634134486 RX 265698 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1530795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11904968801 RX 3615122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11859714515 RX 264309 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1698227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12698491161 RX 3848671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12648158586 RX 265824 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1531181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11908460562 RX 3617042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11863191215 RX 264435 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1699725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 158992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12712454196 RX 3850735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12662088920 RX 265953 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1531571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11911911620 RX 3618866 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11866623414 RX 264558 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1701223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12726393873 RX 3852799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12675995945 RX 266082 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1531957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11915496083 RX 3620762 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11870193182 RX 264684 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1702722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12740435631 RX 3854815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12690004834 RX 266208 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1532344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11918964827 RX 3622634 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11873646424 RX 264807 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1704221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12754470477 RX 3856879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12704006831 RX 266337 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1532730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11922464084 RX 3624578 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11877131370 RX 264933 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1705719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 12768448041 RX 3858973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12717951661 RX 266540 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1532949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 24 +UE c22c: ulsch_rounds 149566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: MAC: TX 11924335344 RX 3627209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11878988878 RX 265901 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1706522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12775046585 RX 3862622 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12724520276 RX 268399 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1533024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE c22c: ulsch_rounds 149606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11924566915 RX 3629276 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11879215847 RX 266631 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1707366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12777881109 RX 3864686 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12727318732 RX 268528 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1533412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11927092568 RX 3630894 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11881734642 RX 266800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1708204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12780777626 RX 3866726 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12730179417 RX 268657 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1533799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11930807224 RX 3632893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11885439626 RX 267011 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1709025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12783605220 RX 3868766 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12732973402 RX 268783 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1534185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11934562744 RX 3634789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11889186385 RX 267134 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1709868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12786529306 RX 3870830 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12735863787 RX 268912 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1534571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11938265656 RX 3636685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11892880645 RX 267260 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4009 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4020 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1710696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12789370348 RX 3872870 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12738669618 RX 269041 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1534957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 149993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11941936120 RX 3638605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11896542523 RX 267383 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1711541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 159953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12792295715 RX 3874910 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12741559973 RX 269167 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1535345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11945664328 RX 3640549 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11900260546 RX 267509 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1712395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12795151958 RX 3876974 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12744381640 RX 269296 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1535731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11949354376 RX 3642445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11903941962 RX 267632 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1713234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12797991888 RX 3879014 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12747187441 RX 269425 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1536121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11953013768 RX 3644365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11907590814 RX 267758 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4134 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4144 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1714065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12800906171 RX 3881054 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12750066351 RX 269551 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1536506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11956720904 RX 3646237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11911289294 RX 267881 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1714896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12803756877 RX 3883118 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12752881144 RX 269680 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1536892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11960469896 RX 3648109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11915029533 RX 268004 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4308 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1715749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12806665424 RX 3885158 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12755755227 RX 269809 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1537278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11964140360 RX 3650053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11918691406 RX 268130 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4003 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1716596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12809556673 RX 3887198 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12758611421 RX 269935 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1537666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11967842456 RX 3651973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11922383371 RX 268256 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1717428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12812363842 RX 3889262 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12761382680 RX 270064 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1538052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11971584728 RX 3653893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11926116905 RX 268379 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1718236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12815154247 RX 3891302 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12764138579 RX 270193 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1538441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11975289512 RX 3655765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11929811547 RX 268502 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3935 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1719078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12818052955 RX 3893342 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12767002203 RX 270319 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1538827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11978927336 RX 3657637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11933440848 RX 268625 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4174 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1719902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12820898725 RX 3895406 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12769812470 RX 270448 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1539212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11982667112 RX 3659581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11937171891 RX 268751 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1720738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12823816148 RX 3897446 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12772695375 RX 270577 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1539600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 150947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11986443208 RX 3661501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11940938191 RX 268874 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1721625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 160977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12827125559 RX 3899486 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12775966629 RX 270703 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1539990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11990096072 RX 3663397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11944580529 RX 268997 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5246 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4204 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1722464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12830064534 RX 3901550 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12778871774 RX 270832 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1540375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11993816264 RX 3665317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11948292031 RX 269123 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1723276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12832810435 RX 3903590 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12781585701 RX 270961 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1540762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 11997578808 RX 3667261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11952045303 RX 269246 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1724111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12835655719 RX 3905630 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12784395983 RX 271087 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1541148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12001308216 RX 3669157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11955766001 RX 269369 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1724936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12838468559 RX 3907694 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12787175143 RX 271216 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1541534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12004972344 RX 3671077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11959421547 RX 269492 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4001 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3809 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1725753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12841271236 RX 3909734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12789942482 RX 271345 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1541965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12009196338 RX 3672973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11963634227 RX 269615 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2124 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1726549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12844388334 RX 3911774 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12793023940 RX 271471 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1542869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12017780054 RX 3674917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11972195428 RX 269744 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1727330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12847665099 RX 3913838 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12796268553 RX 271600 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1543776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12026324034 RX 3676813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11980717446 RX 269873 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2661 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1728104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12851049809 RX 3915878 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12799619870 RX 271729 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1544680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12034841325 RX 3678733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11989214813 RX 269999 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2409 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2194 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1728885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12854230316 RX 3917918 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12802767592 RX 271855 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1545584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12043350615 RX 3680677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 11997704186 RX 270128 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2086 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1729665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12857443806 RX 3919982 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12805945926 RX 271984 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1546488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12051858624 RX 3682573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12006192291 RX 270257 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2402 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1730441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 161917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12860704121 RX 3922022 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12809174192 RX 272113 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1547391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12060416238 RX 3684493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12014729894 RX 270383 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2275 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1731218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12863898290 RX 3924062 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12812336789 RX 272239 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1548301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 151986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12068948280 RX 3686437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12023239022 RX 270512 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2293 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1731992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12867114157 RX 3926126 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12815519584 RX 272368 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1549205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12077423841 RX 3688333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12031694739 RX 270641 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1732539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12870441177 RX 3928142 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12818824882 RX 272494 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1550484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12089545914 RX 3690253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12043788481 RX 270767 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1732924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12873977636 RX 3930182 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12822346702 RX 272623 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1551996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12103644769 RX 3692197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12057852363 RX 270896 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1733318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12877495302 RX 3932222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12825846740 RX 272749 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1553501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12117776710 RX 3694093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12071951243 RX 271025 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1733707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12881030285 RX 3934214 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12829367266 RX 272875 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1555005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12131912875 RX 3696013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12086054323 RX 271151 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1734095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12884544970 RX 3936182 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12832868694 RX 272998 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1556508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12146063374 RX 3697957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12100171736 RX 271280 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1734481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12888139136 RX 3938198 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12836449571 RX 273124 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1558021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12160206010 RX 3699853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12114281258 RX 271409 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 414 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1734868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12891766592 RX 3940190 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12840068521 RX 273247 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1559531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12174409184 RX 3701773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12128449253 RX 271535 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1735257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12895422559 RX 3942158 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12843712728 RX 273370 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1561032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12188419328 RX 3703717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12142426588 RX 271664 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1735653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12898940293 RX 3944126 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12847213258 RX 273493 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1562538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12202581350 RX 3705613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12156555488 RX 271793 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1736040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 162919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12902396924 RX 3946094 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12850654086 RX 273616 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1564038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12216621638 RX 3707533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12170562908 RX 271919 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1736427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12905949853 RX 3948110 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12854193331 RX 273742 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1565547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 152946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12230755310 RX 3709477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12184663495 RX 272048 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1736814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12909478440 RX 3950126 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12857708659 RX 273868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1567054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12244896662 RX 3711373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12198771751 RX 272177 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1737201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12913167682 RX 3952142 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12861388264 RX 273994 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1568562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12258994396 RX 3713293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12212835504 RX 272303 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 536 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1737594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12916830946 RX 3954134 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12865039988 RX 274120 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1570068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12273156226 RX 3715237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12226964214 RX 272432 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1737984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12920332108 RX 3956126 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12868526304 RX 274243 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1571573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12287309224 RX 3717133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12241084104 RX 272561 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1738372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12923818155 RX 3958142 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12871998660 RX 274369 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1573081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12301519441 RX 3719053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12255261081 RX 272687 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1738759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12927377724 RX 3960206 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12875546754 RX 274498 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1574587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12315702328 RX 3720997 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12269410804 RX 272816 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 256 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1739145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12931067772 RX 3962222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12879228169 RX 274624 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1576096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12329824108 RX 3722893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12283498053 RX 272945 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 7 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1739531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12934715431 RX 3964190 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12882866531 RX 274747 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1577599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12343892414 RX 3724813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12297532937 RX 273071 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 284 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1739926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12938301570 RX 3966206 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12886436679 RX 274873 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1579101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12357992672 RX 3726757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12311600196 RX 273200 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 36 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 11 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1740314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12941816240 RX 3968222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12889940047 RX 274999 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1580605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12372167813 RX 3728653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12325742182 RX 273329 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1740701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 163925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12945363365 RX 3970238 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12893472132 RX 275125 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1582114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12386268461 RX 3730573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12339809814 RX 273455 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1741088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12948921365 RX 3972254 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12897016241 RX 275251 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1583623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12400429526 RX 3732517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12353937743 RX 273584 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 9 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1741474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12952422161 RX 3974222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12900501999 RX 275374 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1585131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 153986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12414545145 RX 3734413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12368018362 RX 273713 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1741867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12955989426 RX 3976214 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12904049809 RX 275500 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1586638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12428613216 RX 3736333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12382053495 RX 273839 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 59 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1742260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12959534206 RX 3978206 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12907581198 RX 275623 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1588145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12442866825 RX 3738277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12396273791 RX 273968 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1742648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12963047553 RX 3980222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12911080868 RX 275749 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1589650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12457039215 RX 3740173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12410413035 RX 274097 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1743036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12966565730 RX 3982190 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12914585771 RX 275872 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1591156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12471195990 RX 3742093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12424536689 RX 274223 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1743422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12970083196 RX 3984206 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12918088078 RX 275998 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1592664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12485325501 RX 3744037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12438633134 RX 274352 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1743809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12973612631 RX 3986174 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12921605928 RX 276121 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1594171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12499455571 RX 3745933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12452729652 RX 274481 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1744203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12977200857 RX 3988214 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12925177381 RX 276250 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1595678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12513554809 RX 3747853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12466795879 RX 274607 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 34 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1744593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12980841342 RX 3990254 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12928804526 RX 276376 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1597189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12527677924 RX 3749797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12480885941 RX 274736 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1744982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12984387479 RX 3992270 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12932340617 RX 276502 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1598693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12541901131 RX 3751693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12495075896 RX 274865 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 36 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1745369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 164928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12987921096 RX 3994286 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12935861288 RX 276628 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1600198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12556080049 RX 3753613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12509221651 RX 274991 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1745755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12991634610 RX 3996302 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12939565179 RX 276754 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1601712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12570193370 RX 3755557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12523299959 RX 275120 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1329 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1746416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12995110747 RX 3998318 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12943015761 RX 276880 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1602818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 154946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12580648524 RX 3757453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12533728702 RX 275249 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1747197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 12998269949 RX 4000382 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12946143296 RX 277009 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1603720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12589222137 RX 3759373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12542282278 RX 275375 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2194 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1747977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13001470621 RX 4002398 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12949310775 RX 277135 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1604624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12597710754 RX 3761317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12550751018 RX 275504 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2173 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1748744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13004647243 RX 4004462 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12952454512 RX 277264 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1605530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12606237949 RX 3763213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12559257766 RX 275633 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2145 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1749501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13007802028 RX 4006526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12955578562 RX 277393 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1606437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12614781210 RX 3765133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12567778582 RX 275759 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2166 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1750289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13010985270 RX 4008542 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12958726810 RX 277519 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1607341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12623309892 RX 3767077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12576287306 RX 275888 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2093 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1751041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13014098492 RX 4010606 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12961808794 RX 277648 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1608246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12631802286 RX 3768973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12584759818 RX 276017 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2046 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2165 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1751813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13017253937 RX 4012670 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12964930331 RX 277777 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1609150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12640306329 RX 3770893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12593243953 RX 276143 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2207 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1752569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13020489314 RX 4014686 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12968130915 RX 277903 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1610093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12649265712 RX 3772837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12602182397 RX 276272 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1752964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13024190389 RX 4016702 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12971821382 RX 278029 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1611612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12663523815 RX 3774733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12616407134 RX 276401 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 238 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1753351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 165943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13027787632 RX 4018670 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12975404898 RX 278152 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1613122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12677682321 RX 3776653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12630532512 RX 276527 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 37 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1753738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13031382644 RX 4020686 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12978989233 RX 278278 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1614627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12691852149 RX 3778597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12644669195 RX 276656 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1754133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13035029090 RX 4022750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12982622696 RX 278407 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1616133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12706034844 RX 3780493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12658818720 RX 276785 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1754522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13038639627 RX 4024742 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12986221603 RX 278533 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1617638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 155985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12720148674 RX 3782413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12672899519 RX 276911 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1754908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13042214691 RX 4026734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12989782412 RX 278656 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1619145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12734235048 RX 3784357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12686952911 RX 277040 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1755295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13045764587 RX 4028726 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12993319873 RX 278782 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1620653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12748406481 RX 3786253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12701091182 RX 277169 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1755682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13049327228 RX 4030766 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 12996869755 RX 278908 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1622165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12762599037 RX 3788173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12715250527 RX 277295 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1756072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13052846077 RX 4032758 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13000372455 RX 279034 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1623669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12776719008 RX 3790117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12729337454 RX 277424 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1756464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13056413302 RX 4034750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13003921171 RX 279157 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1625181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12790865676 RX 3792013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12743451004 RX 277553 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1756851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13059938611 RX 4036718 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13007434109 RX 279280 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1626685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12805025007 RX 3793933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12757577217 RX 277679 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1757237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13063467643 RX 4038686 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13010949533 RX 279403 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1628188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12819090258 RX 3795877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12771609537 RX 277808 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1757621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13067047463 RX 4040702 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13014519303 RX 279529 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1629698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12833274876 RX 3797773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12785760969 RX 277937 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1758007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 166942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13070503256 RX 4042622 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13017959331 RX 279649 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1631205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12847373025 RX 3799693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12799826116 RX 278063 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1758403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13074079650 RX 4044638 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13021518288 RX 279775 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1632710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12861506247 RX 3801637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12813926274 RX 278192 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1758791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13077540418 RX 4046606 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13024963473 RX 279898 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1634218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12875657904 RX 3803533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12828044825 RX 278321 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1759179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13081074190 RX 4048574 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13028481077 RX 280021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1635728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 156945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12889783578 RX 3805453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12842137426 RX 278447 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1759566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13084514475 RX 4050590 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13031906475 RX 280147 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1637232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12903918078 RX 3807397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12856238855 RX 278576 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1759952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13088049604 RX 4052558 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13035426675 RX 280270 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1638736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12917940513 RX 3809293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12870228439 RX 278705 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1760342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13091605209 RX 4054526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13038967233 RX 280393 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1640244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12932098890 RX 3811213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12884353693 RX 278831 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1760736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13095172952 RX 4056542 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13042520225 RX 280519 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1641754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12946296180 RX 3813157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12898517765 RX 278960 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1761122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13098718486 RX 4058510 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13046051904 RX 280642 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1643261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12960420249 RX 3815053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12912608778 RX 279089 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1761509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13102255811 RX 4060502 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13049576233 RX 280768 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1644764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12974512893 RX 3816973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12926668436 RX 279215 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1761895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13105815720 RX 4062542 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13053123338 RX 280894 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1646266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 12988551837 RX 3818917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12940674509 RX 279344 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1762283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13109460146 RX 4064558 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13056759140 RX 281020 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1647774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13002741943 RX 3820813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12954830934 RX 279473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1762676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 167937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13113128465 RX 4066526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13060415914 RX 281143 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1649281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13016909407 RX 3822733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12968965256 RX 279599 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1763066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13116790049 RX 4068542 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13064067440 RX 281269 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1650787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13031058373 RX 3824677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12983081120 RX 279728 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1763454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13120352096 RX 4070510 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13067617513 RX 281392 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1652295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13045249198 RX 3826573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 12997238752 RX 279857 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1763836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13123863950 RX 4072478 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13071117489 RX 281515 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1653803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13059417685 RX 3828493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13011374084 RX 279983 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1764218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13127377614 RX 4074446 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13074619196 RX 281638 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1655313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 157986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13073538858 RX 3830437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13025459749 RX 280112 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1764604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13130894118 RX 4076462 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13078122040 RX 281764 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1656820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13087689039 RX 3832333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13039576827 RX 280241 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 242 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1764999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13134552565 RX 4078430 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13081768460 RX 281887 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1658325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13101869430 RX 3834253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13053724047 RX 280367 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1765386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13138206426 RX 4080446 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13085410664 RX 282013 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1659831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13115938779 RX 3836197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13067760446 RX 280496 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1765774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13141693737 RX 4082414 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13088883813 RX 282136 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1661336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13130090304 RX 3838093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13081878857 RX 280625 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1766160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13145196902 RX 4084430 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13092371182 RX 282262 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1662840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13144158051 RX 3840013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13095913672 RX 280751 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1766547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13148816435 RX 4086398 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13095981599 RX 282385 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1664346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13158341130 RX 3841957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13110063570 RX 280880 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 406 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1766940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13152505811 RX 4088366 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13099659383 RX 282508 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1665855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13172508339 RX 3843853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13124197638 RX 281009 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 270 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 13 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1767330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 168931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13156147331 RX 4090382 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13103288338 RX 282634 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1667366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13186675869 RX 3845773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13138332010 RX 281135 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1767718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 13159684925 RX 4092350 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13106811877 RX 282757 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1668870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13200771393 RX 3847717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13152394544 RX 281264 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1767899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 2421: ulsch_rounds 169078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 13161226303 RX 4094972 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13108342748 RX 283710 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1670367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13214858526 RX 3849699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13166448721 RX 281467 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1767975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 2421: ulsch_rounds 169117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 13161407570 RX 4097079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13108520437 RX 284437 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1671142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13221057768 RX 3853408 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13172616840 RX 283393 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1768361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 2421: ulsch_rounds 169180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13163735575 RX 4098597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13110842556 RX 284600 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1671979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 158970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13223956634 RX 3855328 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13175480519 RX 283519 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1768755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13167387292 RX 4100664 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13114482252 RX 284811 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1672856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13227078349 RX 3857272 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13178567900 RX 283648 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1769457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13174071477 RX 4102680 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13121148357 RX 284937 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1673656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13230102017 RX 3859168 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13181557529 RX 283777 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1770366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13182582014 RX 4104744 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13129637975 RX 285066 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1674436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13233343684 RX 3861088 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13184765973 RX 283903 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2393 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2132 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1771277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13191139239 RX 4106784 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13138173217 RX 285195 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1675211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13236543452 RX 3863032 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13187933432 RX 284032 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1772185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13199695695 RX 4108824 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13146709654 RX 285321 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1675979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13239673948 RX 3864928 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13191033180 RX 284161 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2141 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1773099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13208199430 RX 4110888 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13155190023 RX 285450 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1676748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13243204495 RX 3866848 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13194531290 RX 284287 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3048 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1774007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13216742111 RX 4112928 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13163712225 RX 285579 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1677512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13246326421 RX 3868792 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13197621690 RX 284416 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1774915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13225301129 RX 4114968 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13172251219 RX 285705 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1678273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13249506693 RX 3870688 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13200769868 RX 284545 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2275 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1775827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 169947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13233825456 RX 4117032 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13180753626 RX 285834 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1679059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13252762759 RX 3872608 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13203993678 RX 284671 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2427 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1776658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13241660049 RX 4119048 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13188569882 RX 285960 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1679840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13255942126 RX 3874552 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13207141836 RX 284800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2551 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1777052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13245379410 RX 4121064 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13192280522 RX 286086 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1680666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13258729453 RX 3876448 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13209894285 RX 284929 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3945 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1777445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13249021617 RX 4123080 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13195911236 RX 286212 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1681495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 159930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13261556909 RX 3878368 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13212686760 RX 285055 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1777836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13252695472 RX 4125096 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13199574513 RX 286338 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1682306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13264425756 RX 3880312 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13215520747 RX 285184 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4179 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1778223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13256438432 RX 4127112 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13203308246 RX 286464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1683207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13267595079 RX 3882208 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13218654165 RX 285313 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1778610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13260072416 RX 4129128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13206933706 RX 286590 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1684052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13270435959 RX 3884128 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13221459971 RX 285439 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1778997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13263731423 RX 4131096 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13210584140 RX 286713 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1684860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13273270916 RX 3886072 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13224261291 RX 285568 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1779383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13267375967 RX 4133112 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13214220142 RX 286839 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1685678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13276076831 RX 3887968 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13227032976 RX 285697 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3971 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1779780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13271113023 RX 4135128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13217943541 RX 286965 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1686519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13278935922 RX 3889888 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13229858103 RX 285823 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3973 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1780167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13274766783 RX 4137144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13221588738 RX 287091 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1687343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13281749933 RX 3891832 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13232637218 RX 285952 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1780554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13278477103 RX 4139160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13225289892 RX 287217 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1688171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13284598117 RX 3893728 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13235450469 RX 286081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4173 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1780941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 170952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13282143727 RX 4141128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13228947929 RX 287340 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1688994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13287427536 RX 3895648 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13238245390 RX 286207 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1781328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13285794925 RX 4143168 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13232590577 RX 287469 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1689834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13290311161 RX 3897592 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13241093203 RX 286336 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4060 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1781719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13289449196 RX 4145160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13236234307 RX 287592 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1690673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13293156202 RX 3899488 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13243903455 RX 286465 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1782111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13293170524 RX 4147200 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13239944474 RX 287721 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1691535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13296035995 RX 3901408 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13246747397 RX 286591 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4172 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1782499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13296836363 RX 4149192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13243601237 RX 287844 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1692353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 160971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13298819556 RX 3903352 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13249495856 RX 286720 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3963 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1782886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13300470347 RX 4151208 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13247226702 RX 287970 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1693207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13301682492 RX 3905248 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13252321969 RX 286849 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1783272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13304173451 RX 4153224 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13250921141 RX 288096 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1694050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13304584929 RX 3907168 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13255189028 RX 286975 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4112 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1783659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13307846603 RX 4155192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13254585693 RX 288219 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1694856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13307372051 RX 3909112 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13257941432 RX 287104 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3829 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1784052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13311559707 RX 4157184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13258286672 RX 288345 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1695681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13310166665 RX 3911008 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13260701301 RX 287233 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1784440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13315206154 RX 4159224 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13261924078 RX 288471 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1696503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13312993019 RX 3912928 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13263492297 RX 287359 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1784828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13318912250 RX 4161192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13265621011 RX 288594 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1697357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13315841854 RX 3914872 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13266305543 RX 287488 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4029 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1785214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13322589434 RX 4163208 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13269289590 RX 288720 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1698193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13318685954 RX 3916768 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13269115790 RX 287617 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5218 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1785602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 171955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13326237881 RX 4165224 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13272929490 RX 288846 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1699087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13321981135 RX 3918688 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13272375068 RX 287743 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1785990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13329948697 RX 4167192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13276630653 RX 288969 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1699909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13324766365 RX 3920632 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13275126105 RX 287872 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1786385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13333619097 RX 4169160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13280288514 RX 289092 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1700757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13327710791 RX 3922528 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13278034214 RX 288001 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4188 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1786771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13337302617 RX 4171176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13283963411 RX 289218 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1701565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13330507872 RX 3924448 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13280796972 RX 288127 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4045 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1787159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13340982601 RX 4173192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13287634289 RX 289344 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1702422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 161931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13333378512 RX 3926392 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13283632473 RX 288256 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1787545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13344666313 RX 4175160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13291309386 RX 289467 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1703251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13336208331 RX 3928288 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13286427940 RX 288385 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1787932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13348325320 RX 4177176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13294959819 RX 289593 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1704112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13339111936 RX 3930208 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13289296055 RX 288511 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4158 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1788325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13352060200 RX 4179192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13298683017 RX 289719 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1704966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13342002329 RX 3932152 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13292150782 RX 288640 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1788714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13355746119 RX 4181160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13302359323 RX 289842 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1705807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13344817409 RX 3934048 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13294929892 RX 288769 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3916 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1789102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13359413431 RX 4183152 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13306017554 RX 289968 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1706636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13347633078 RX 3935968 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13297710043 RX 288895 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4006 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1789488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13363116535 RX 4185144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13309712001 RX 290091 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1707448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13350432291 RX 3937912 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13300476341 RX 289024 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4115 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1789875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13366755958 RX 4187160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13313342902 RX 290217 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1708277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13353324010 RX 3939808 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13303332515 RX 289153 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1790263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 172953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13370395685 RX 4189176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13316973600 RX 290343 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1709095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13356144325 RX 3941728 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13306119100 RX 289279 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1790658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13374064996 RX 4191144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13320630372 RX 290466 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1709930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13359007268 RX 3943672 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13308947131 RX 289408 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4033 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1791046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13377784340 RX 4193184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13324340529 RX 290595 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1710742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13361840756 RX 3945568 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13311746493 RX 289537 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4110 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1791434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13381425540 RX 4195176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13327972701 RX 290718 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1711568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13364678645 RX 3947488 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13314549315 RX 289663 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1791820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13385167812 RX 4197144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13331706240 RX 290841 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1712392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13367495076 RX 3949432 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13317331855 RX 289792 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3908 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1792207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13388800707 RX 4199160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13335330616 RX 290967 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1713208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 162971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13370319477 RX 3951328 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13320122831 RX 289921 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4253 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1792600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13392483555 RX 4201176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13339001883 RX 291093 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1714047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13373258594 RX 3953248 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13323027946 RX 290047 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4045 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1792990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13396182307 RX 4203144 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13342690020 RX 291216 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1714867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13376103489 RX 3955192 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13325838198 RX 290176 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1793378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13399895315 RX 4205160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13346393854 RX 291342 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1715708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13379007271 RX 3957088 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13328706288 RX 290305 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4103 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1793914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13404935453 RX 4207176 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13351422187 RX 291468 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1716538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13382021835 RX 3959008 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13331684006 RX 290431 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2589 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1794820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13413554218 RX 4209240 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13360019832 RX 291597 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1717321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13385378692 RX 3960952 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13335008547 RX 290560 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1795727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13422109651 RX 4211256 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13368555252 RX 291723 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1718084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13388527758 RX 3962848 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13338125598 RX 290689 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1796638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 173959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13430636955 RX 4213320 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13377061603 RX 291852 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1718840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13391765423 RX 3964768 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13341330077 RX 290815 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2306 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2154 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1797546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13439171108 RX 4215384 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13385574804 RX 291981 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1719607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13394952697 RX 3966712 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13344485725 RX 290944 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2027 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1798457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13447762254 RX 4217400 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13394143891 RX 292107 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1720380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13398104406 RX 3968608 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13347603782 RX 291073 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2085 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1799369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13456314536 RX 4219464 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13402673696 RX 292236 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1721141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13401256800 RX 3970528 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13350724313 RX 291199 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2213 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1800277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13464830543 RX 4221528 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13411169765 RX 292365 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1721899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13404384916 RX 3972472 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13353821587 RX 291328 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1801184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13473366008 RX 4223544 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13419685260 RX 292491 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1722672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 163931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13407546481 RX 3974368 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13356949518 RX 291457 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1802535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13486062224 RX 4225608 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13432351765 RX 292620 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1723177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13410952727 RX 3976288 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13360335885 RX 291580 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1804036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13500085424 RX 4227672 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13446342133 RX 292749 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1723561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13414510017 RX 3978160 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13363878114 RX 291703 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 503 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 23 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1805536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13514142542 RX 4229688 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13460366340 RX 292875 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1723947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164167/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13418177246 RX 3980056 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13367535463 RX 291826 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1807032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13528178921 RX 4231752 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13474369876 RX 293004 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1724333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13421665333 RX 3981976 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13371010143 RX 291955 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 340 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1808530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13542152820 RX 4233816 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13488310566 RX 293133 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1724722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13425277132 RX 3983896 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13374608971 RX 292078 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 139 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1810030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13556185107 RX 4235832 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13502310002 RX 293259 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1725108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13428931773 RX 3985816 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13378252239 RX 292204 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 37 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1811526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 174983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13570214766 RX 4237896 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13516306827 RX 293388 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1725496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13432438298 RX 3987688 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13381742807 RX 292327 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1813020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13584209094 RX 4239960 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13530268399 RX 293517 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1725881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13436017975 RX 3989560 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13385308830 RX 292453 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 87 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 21 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1814520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13598215461 RX 4241976 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13544241963 RX 293643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1726267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13439533394 RX 3991432 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13388808986 RX 292579 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1816020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13612270387 RX 4244040 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13558263501 RX 293772 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1726654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13443079170 RX 3993376 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13392342071 RX 292705 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1817514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13626232075 RX 4246104 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13572192504 RX 293901 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1727044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13446803842 RX 3995272 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13396056065 RX 292825 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 63 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1819011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13640185894 RX 4248120 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13586113650 RX 294027 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1727429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13450320707 RX 3997168 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13399558251 RX 292948 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1820514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13654210504 RX 4250184 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13600105416 RX 294156 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1727815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 164958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13453782973 RX 3999040 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13403003277 RX 293071 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 259 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1822012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13668248293 RX 4252248 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13614110346 RX 294285 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1728201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13457451901 RX 4000936 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13406663475 RX 293197 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1823514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13682306821 RX 4254264 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13628135964 RX 294411 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1728586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13460957340 RX 4002880 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13410154782 RX 293320 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1825020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13696372505 RX 4256328 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13642168223 RX 294540 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1728975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13464453296 RX 4004776 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13413632420 RX 293440 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1826528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13710580352 RX 4258392 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13656342843 RX 294669 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1729362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13467922784 RX 4006672 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13417086915 RX 293563 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1828031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 175922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13724690018 RX 4260408 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13670419490 RX 294795 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1729749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13471441615 RX 4008544 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13420591094 RX 293686 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1829538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13738773638 RX 4262472 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13684470140 RX 294924 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1730134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13474941901 RX 4010440 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13424074205 RX 293809 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1831039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13752849062 RX 4264536 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13698512629 RX 295053 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1730520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13478492136 RX 4012312 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13427611938 RX 293932 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1832541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13766934983 RX 4266552 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13712565594 RX 295179 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1730906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13482033151 RX 4014184 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13431140718 RX 294058 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1834044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13780968060 RX 4268616 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13726565352 RX 295308 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1731294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13485488281 RX 4016104 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13434577115 RX 294181 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1835550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13795063521 RX 4270680 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13740627815 RX 295437 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1731681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13488975133 RX 4017976 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13438046399 RX 294307 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1837050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13809206784 RX 4272696 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13754737999 RX 295563 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1732070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13492446365 RX 4019800 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13441503268 RX 294427 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1838548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13823229852 RX 4274760 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13768728239 RX 295692 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1732455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13496048393 RX 4021720 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13445092794 RX 294553 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1840048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13837242747 RX 4276824 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13782708323 RX 295821 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1732841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 165984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13499739350 RX 4023664 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13448773796 RX 294679 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1841548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13851313113 RX 4278840 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13796745767 RX 295947 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1733227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13503432098 RX 4025584 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13452457688 RX 294802 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 424 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 32 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1843045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13865316964 RX 4280904 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13810716348 RX 296076 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1733618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13506975977 RX 4027480 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13455986202 RX 294925 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1844547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13879310212 RX 4282968 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13824676819 RX 296205 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1734002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13510451445 RX 4029400 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13459444299 RX 295051 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1846043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 176946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13893300703 RX 4284984 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13838634563 RX 296331 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1734391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13513962134 RX 4031248 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13462940369 RX 295174 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1847538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13907365753 RX 4287048 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13852666720 RX 296460 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1734777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13517548685 RX 4033096 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13466515855 RX 295297 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 82 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 16 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1849034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13921348243 RX 4289112 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13866616479 RX 296589 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1735162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13521030913 RX 4034968 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13469980844 RX 295417 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1850531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177202/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13935345566 RX 4291128 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13880580551 RX 296715 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1735550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13524582177 RX 4036864 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13473515935 RX 295543 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1852032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13949421374 RX 4293192 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13894623414 RX 296844 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1735939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13528089112 RX 4038736 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13477005932 RX 295666 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1853527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13963406615 RX 4295256 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13908575914 RX 296973 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1736325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13531792216 RX 4040608 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13480700377 RX 295789 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1855027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13977359477 RX 4297272 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13922496088 RX 297099 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1736711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13535526245 RX 4042528 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13484424577 RX 295915 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 930 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 30 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1856526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 13991361875 RX 4299336 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13936465702 RX 297228 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1737097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13539242405 RX 4044424 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13488132051 RX 296038 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 40 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1858025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14005410161 RX 4301400 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13950481110 RX 297357 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1737483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 166927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13542728720 RX 4046296 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13491604905 RX 296161 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1859523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14019377532 RX 4303416 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13964415285 RX 297483 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1737872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13546214931 RX 4048216 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13495072613 RX 296287 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1861029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14033466273 RX 4305480 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13978471044 RX 297612 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1738260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13549703371 RX 4050088 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13498544970 RX 296410 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1862536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14047657287 RX 4307544 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 13992628871 RX 297741 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1738646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13553196157 RX 4051984 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13502023192 RX 296536 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1864040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 177970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14061769449 RX 4309560 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14006708016 RX 297867 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1739031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13556686800 RX 4053904 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13505498064 RX 296662 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1865545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14075836603 RX 4311624 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14020741742 RX 297996 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1739416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13560216869 RX 4055824 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13509012689 RX 296785 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1866502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14084906037 RX 4313688 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14029787607 RX 298125 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1740177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13563436963 RX 4057720 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13512201155 RX 296911 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2084 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2162 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1867414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14093428364 RX 4315704 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14038287518 RX 298251 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1740935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13566605562 RX 4059616 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13515339445 RX 297040 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2100 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1868322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14101959989 RX 4317768 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14046799177 RX 298380 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1741698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13569767918 RX 4061536 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13518471306 RX 297166 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2012 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1869230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14110540927 RX 4319832 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14055359060 RX 298509 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1742456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13572885907 RX 4063480 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13521558732 RX 297295 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2426 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1870137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14119111786 RX 4321848 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14063909863 RX 298635 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1743237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13576450823 RX 4065376 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13525089471 RX 297424 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2839 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2181 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1871045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14127605647 RX 4323912 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14072383829 RX 298764 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1744007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13579651486 RX 4067296 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13528256915 RX 297550 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2241 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1871959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14136139337 RX 4325976 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14080894097 RX 298893 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1744774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13582880764 RX 4069240 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13531454044 RX 297679 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2240 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1872867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14144730084 RX 4327992 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14089464268 RX 299019 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1745527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 167963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13586037308 RX 4071136 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13534578520 RX 297808 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2110 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1874048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14155798482 RX 4330056 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14100506765 RX 299148 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1746128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13589358417 RX 4073008 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13537875546 RX 297931 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1875550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14169884595 RX 4332120 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14114559916 RX 299277 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1746514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13592871976 RX 4074880 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13541374358 RX 298054 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1877046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 178994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14183901006 RX 4334136 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14128543516 RX 299403 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1746900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13596360490 RX 4076752 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13544847323 RX 298177 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1878547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14197915116 RX 4336200 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14142524820 RX 299532 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1747285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13599800887 RX 4078576 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13548269553 RX 298300 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1880050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14211943138 RX 4338264 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14156519533 RX 299661 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1747675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13603442055 RX 4080424 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13551895870 RX 298423 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1881556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14226136519 RX 4340280 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14170679726 RX 299787 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1748061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 13606955306 RX 4082344 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13555395789 RX 298549 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1883062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 14240197867 RX 4342452 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14184708151 RX 300057 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1748183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 20 +UE c22c: ulsch_rounds 168481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13607962740 RX 4084848 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13556392436 RX 299481 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1883795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14245312749 RX 4346153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14189791538 RX 301899 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1748321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: ulsch_rounds 168526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 13608507244 RX 4086933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13556932883 RX 300211 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1884637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14248120380 RX 4348193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14192563784 RX 302028 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1748707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13611401072 RX 4088647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13559819675 RX 300389 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1885465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14250922393 RX 4350233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14195331038 RX 302154 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1749093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13615091312 RX 4090666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13563501278 RX 300597 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1886317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14253807406 RX 4352297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14198179857 RX 302283 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1749482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13618839600 RX 4092538 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13567238849 RX 300717 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4000 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1887160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14256621608 RX 4354337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14200958987 RX 302412 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1749871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13622563968 RX 4094458 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13570953033 RX 300843 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4053 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1887991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14259505484 RX 4356377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14203807305 RX 302538 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1750257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13626241152 RX 4096330 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13574621610 RX 300969 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4055 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1888812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 179954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14262331104 RX 4358441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14206597315 RX 302667 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1750642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 168996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13629941568 RX 4098250 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13578313378 RX 301092 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1889634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14265159229 RX 4360481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14209391290 RX 302796 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1751028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13633670976 RX 4100122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13582034069 RX 301215 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4013 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1890471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14268019567 RX 4362521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14212216337 RX 302922 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1751417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13637323536 RX 4102066 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13585676591 RX 301341 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1891284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14270818115 RX 4364585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14214980677 RX 303051 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1751803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13641044224 RX 4103938 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13589388097 RX 301467 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4099 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1892125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14273660424 RX 4366625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14217786538 RX 303180 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1752193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13644801536 RX 4105858 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13593134670 RX 301590 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3812 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4110 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1892977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14276533999 RX 4368665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14220623521 RX 303306 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1752579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13648504832 RX 4107754 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13596829311 RX 301713 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4263 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1893819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14279460998 RX 4370729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14223513816 RX 303435 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1752965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13652162432 RX 4109650 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13600478349 RX 301836 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1894672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14282397602 RX 4372769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14226415957 RX 303564 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1753350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13655888960 RX 4111594 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13604196173 RX 301962 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5240 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1895576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14285649279 RX 4374809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14229629433 RX 303690 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1753740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169631/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13659633024 RX 4113490 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13607929523 RX 302085 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3947 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1896385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14288461572 RX 4376873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14232408603 RX 303819 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1754127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13663323760 RX 4115362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13611611138 RX 302208 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4038 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1897219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14291337346 RX 4378913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14235248515 RX 303948 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1754515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13667038912 RX 4117282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13615316132 RX 302334 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1898054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14294192337 RX 4380953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14238066202 RX 304074 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1754901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13670800576 RX 4119226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13619069019 RX 302457 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1898907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 180978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14297024039 RX 4383017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14240861669 RX 304203 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1755287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 169948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13674497152 RX 4121098 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13622756951 RX 302577 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3976 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4058 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1899739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14299925695 RX 4385057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14243728247 RX 304332 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1755673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13678206976 RX 4123042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13626458102 RX 302703 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1900575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14302775220 RX 4387097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14246542975 RX 304458 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1756064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13681936480 RX 4124914 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13630175943 RX 302826 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3949 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1901411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14305630953 RX 4389161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14249363661 RX 304587 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1756450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13685685088 RX 4126858 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13633915798 RX 302952 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4099 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4022 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1902224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14308513565 RX 4391201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14252212410 RX 304716 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1756836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13689355744 RX 4128754 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13637577863 RX 303075 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1903044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14311372455 RX 4393241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14255036025 RX 304842 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1757221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13693056352 RX 4130626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13641269821 RX 303198 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1903886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14314214880 RX 4395305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14257843403 RX 304971 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1757607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13696811488 RX 4132546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13645016193 RX 303321 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1904715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14317029441 RX 4397345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14260622057 RX 305100 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1757995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13700469888 RX 4134442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13648665036 RX 303447 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4030 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1905543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14319870394 RX 4399385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14263428354 RX 305226 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1758383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13704161120 RX 4136362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13652346650 RX 303570 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4281 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1906470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14323262391 RX 4401449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14266782585 RX 305355 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1758770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13707908416 RX 4138258 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13656084214 RX 303693 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1907303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14326152838 RX 4403489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14269638799 RX 305484 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1759157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13711631792 RX 4140106 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13659798397 RX 303816 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4160 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1908140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 181916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14329031695 RX 4405529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14272483207 RX 305610 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1759543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13715282672 RX 4142002 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13663440727 RX 303942 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4058 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1908966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14331922200 RX 4407593 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14275339421 RX 305739 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1759928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13718989808 RX 4143922 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13667139199 RX 304065 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1909831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14334822617 RX 4409633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14278203120 RX 305868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1760317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 170979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13722727232 RX 4145842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13670866415 RX 304188 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4169 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1910681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14337756176 RX 4411673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14281100850 RX 305994 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1760704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13726352496 RX 4147762 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13674482685 RX 304314 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4111 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4224 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1911515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14340666042 RX 4413737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14283976300 RX 306123 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1761092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13730060928 RX 4149682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13678180969 RX 304437 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1912350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14343510832 RX 4415777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14286786587 RX 306252 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1761478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13733816256 RX 4151578 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13681927532 RX 304560 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4174 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1913200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14346485182 RX 4417817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14289725848 RX 306378 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1761864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13737519552 RX 4153498 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13685622171 RX 304683 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1913999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14349709813 RX 4419881 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14292916999 RX 306507 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1762754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13746004177 RX 4155394 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13694086482 RX 304809 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2216 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2013 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1914756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14352834542 RX 4421921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14296010373 RX 306636 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1763658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13754514940 RX 4157338 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13702577317 RX 304938 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1915523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14355974835 RX 4423961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14299118582 RX 306762 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1764562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13762998118 RX 4159234 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13711040636 RX 305067 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2131 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1916293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14359202296 RX 4426141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14302312822 RX 306891 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1765463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13771565974 RX 4161246 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13719588470 RX 305193 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2146 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1917089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14362800775 RX 4428181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14305879174 RX 307020 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1766372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13780098609 RX 4163190 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13728098680 RX 305322 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1917864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 182941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14366096087 RX 4430221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14309141511 RX 307146 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1767276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13788573067 RX 4165086 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13736552810 RX 305451 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2328 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1918658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14369343867 RX 4432285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14312354912 RX 307275 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1768181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13797085237 RX 4167006 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13745045053 RX 305577 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2364 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1919441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14372529749 RX 4434325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14315506049 RX 307404 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1769084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 171938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13805648098 RX 4168950 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13753587887 RX 305706 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2096 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1920006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14375891064 RX 4436317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14318843290 RX 307527 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1770357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13817589616 RX 4170846 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13765501441 RX 305835 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1920395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14379425751 RX 4438333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14322364276 RX 307653 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1771864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13831805146 RX 4172766 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13779683731 RX 305961 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1920782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14382936764 RX 4440349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14325861799 RX 307779 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1773371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13845972418 RX 4174710 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13793817854 RX 306090 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1921169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14386464430 RX 4442317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14329376271 RX 307902 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1774881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13860128615 RX 4176606 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13807938960 RX 306219 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1921555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14389998939 RX 4444333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14332896984 RX 308028 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1776385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13874216138 RX 4178526 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13821993505 RX 306345 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1921951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14393482207 RX 4446253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14336362206 RX 308148 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1777888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13888373870 RX 4180470 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13836118129 RX 306474 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1922338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14397004639 RX 4448221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14339871866 RX 308271 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1779394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13902529556 RX 4182366 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13850240699 RX 306603 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1922725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14400570339 RX 4450213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14343423495 RX 308397 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1780900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13916631353 RX 4184286 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13864309482 RX 306729 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1923110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14404174900 RX 4452229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14347014893 RX 308523 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1782412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13930758629 RX 4186230 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13878403681 RX 306858 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1923497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 183939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14407619054 RX 4454173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14350443005 RX 308643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1783920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13944914697 RX 4188126 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13892524675 RX 306987 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1923890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14411314653 RX 4456165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14354125418 RX 308769 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1785423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13958939499 RX 4190046 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13906516632 RX 307113 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1924283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14414789823 RX 4458109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14357584644 RX 308889 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1786929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13973203668 RX 4191990 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13920747471 RX 307242 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1924671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14418376059 RX 4460125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14361156704 RX 309015 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1788438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 172978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 13987404990 RX 4193886 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13934915574 RX 307371 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1925057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14421898976 RX 4462141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14364663812 RX 309141 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1789943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14001503010 RX 4195806 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13948980604 RX 307497 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1925444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14425455085 RX 4464157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14368208646 RX 309267 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1791449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14015684616 RX 4197750 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13963129048 RX 307626 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1925831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14429007171 RX 4466125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14371747375 RX 309390 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1792957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14029815600 RX 4199646 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13977226964 RX 307755 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1926227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14432532759 RX 4468141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14375255730 RX 309516 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1794463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14043964374 RX 4201566 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 13991342635 RX 307881 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1926616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14436073385 RX 4470157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14378780641 RX 309642 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1795971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14058035133 RX 4203510 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14005380436 RX 308010 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1927004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14439614358 RX 4472173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14382307909 RX 309768 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1797482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14072249640 RX 4205406 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14019561690 RX 308139 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1927391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14443184671 RX 4474141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14385866549 RX 309891 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1798987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14086415502 RX 4207326 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14033694417 RX 308265 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1927777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14446789530 RX 4476157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14389458298 RX 310017 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1800499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173618/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14100533941 RX 4209270 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14047777841 RX 308394 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 10 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1928166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 184937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14450325475 RX 4478125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14392980622 RX 310140 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1802005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14114695963 RX 4211166 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14061906730 RX 308523 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1928560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14453895475 RX 4480141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14396535472 RX 310266 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1803510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14128862209 RX 4213086 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14076039832 RX 308649 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 62 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1928946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14457479085 RX 4482109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14400108323 RX 310389 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1805016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14143047781 RX 4215030 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14090192223 RX 308778 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 80 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 65 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1929334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14461024376 RX 4484077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14403639263 RX 310512 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1806521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 173938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14157108106 RX 4216926 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14104219620 RX 308907 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1929721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14464563056 RX 4486093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14407167288 RX 310638 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1808028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14171273905 RX 4218846 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14118352274 RX 309033 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 53 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1930107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14468155773 RX 4488085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14410746815 RX 310764 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1809536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14185356884 RX 4220790 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14132400324 RX 309162 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 104 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1930504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14471692159 RX 4490101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14414264165 RX 310890 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1811038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14199391862 RX 4222686 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14146402449 RX 309291 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 35 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1930893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14475205640 RX 4492093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14417762182 RX 311013 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1812543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14213531804 RX 4224606 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14160509304 RX 309417 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 64 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1931280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14478724884 RX 4494061 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14421266463 RX 311136 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1814050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14227657538 RX 4226550 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14174601973 RX 309546 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1931667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14482289981 RX 4496029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14424819154 RX 311259 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1815559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14241832748 RX 4228446 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14188744014 RX 309675 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1932054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14485873041 RX 4498045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14428388209 RX 311385 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1817067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14255937202 RX 4230366 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14202814474 RX 309801 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1932442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14489434318 RX 4499965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14431937183 RX 311505 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1818571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14270117206 RX 4232310 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14216961325 RX 309930 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 113 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1932837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 185931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14493000784 RX 4501981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14435487766 RX 311631 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1820077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14284280509 RX 4234206 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14231091500 RX 310059 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1933223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14496630090 RX 4503949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14439106593 RX 311754 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1821582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14298383776 RX 4236126 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14245161753 RX 310185 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 964 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 34 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1933611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14500263481 RX 4505965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14442730965 RX 311880 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1823086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14312538949 RX 4238070 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14259283820 RX 310314 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 48 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1934102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14503973937 RX 4508005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14446426951 RX 312009 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1824457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14325421664 RX 4239966 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14272135899 RX 310443 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1934895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14507170930 RX 4510045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14449589949 RX 312135 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1825360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 174977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14333997424 RX 4241886 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14280690629 RX 310569 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2032 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1935658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14510326177 RX 4512109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14452711496 RX 312264 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1826264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14342494939 RX 4243830 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14289168256 RX 310698 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2220 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1936443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14513474749 RX 4514149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14455828637 RX 312393 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1827167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14351043655 RX 4245726 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14297696980 RX 310827 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2195 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1937210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14516674407 RX 4516189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14458994594 RX 312519 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1828070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14359578739 RX 4247646 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14306212101 RX 310953 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2195 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1937991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14519874484 RX 4518253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14462162068 RX 312648 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1828976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14368090494 RX 4249590 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14314702948 RX 311082 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2186 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2305 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1938773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14523104345 RX 4520293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14465358671 RX 312777 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1829882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14376565944 RX 4251486 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14323157080 RX 311211 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2149 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1939566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14526307662 RX 4522333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14468529695 RX 312903 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1830785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14385127716 RX 4253406 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14331698838 RX 311337 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2168 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1940320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14529457236 RX 4524397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14471646786 RX 313032 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1831690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14393640975 RX 4255350 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14340192182 RX 311466 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2186 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1940842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 186945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14532846658 RX 4526317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14475013302 RX 313152 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1833013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175618/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14406076176 RX 4257246 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14352598282 RX 311595 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 260 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1941229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14536413493 RX 4528333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14478566984 RX 313278 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1834522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14420217273 RX 4259166 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14366706289 RX 311721 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1941615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14540036337 RX 4530349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14482178244 RX 313404 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1836036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14434366289 RX 4261110 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14380819721 RX 311850 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 346 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1942005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14543691588 RX 4532341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14485821009 RX 313530 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1837540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14448461813 RX 4263006 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14394882255 RX 311979 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 89 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 104 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1942397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14547226461 RX 4534285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14489340365 RX 313650 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1839040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 175937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14462561045 RX 4264926 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14408948502 RX 312105 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 153 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1942785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14550826939 RX 4536253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14492927561 RX 313773 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1840551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14476763969 RX 4266870 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14423118183 RX 312234 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1943170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14554383907 RX 4538269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14496468557 RX 313899 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1842057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14490838565 RX 4268766 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14437159830 RX 312363 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 17 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1943557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14557859780 RX 4540237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14499930519 RX 314022 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1843567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14505043856 RX 4270686 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14451331898 RX 312489 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1943944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14561413214 RX 4542253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14503470209 RX 314148 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1845075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14519144871 RX 4272630 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14465399411 RX 312618 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1944337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14564946047 RX 4544269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14506984723 RX 314274 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1846583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14533254798 RX 4274526 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14479476297 RX 312747 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1944725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14568545035 RX 4546237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14510569124 RX 314397 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1848089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14547351540 RX 4276446 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14493540052 RX 312873 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 42 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1945113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14572069999 RX 4548253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14514079317 RX 314523 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1849590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14561395989 RX 4278390 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14507551627 RX 313002 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 549 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1945500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 187943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14575709528 RX 4550269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14517709018 RX 314649 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1851097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14575556925 RX 4280286 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14521679432 RX 313131 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 6 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1945886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14579375928 RX 4552213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14521363166 RX 314772 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1852613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14589681047 RX 4282206 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14535768025 RX 313257 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 35 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1946274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14582973235 RX 4554205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14524949395 RX 314895 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1854120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14603853566 RX 4284150 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14549907387 RX 313386 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 278 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1946667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14586634307 RX 4556221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14528598445 RX 315021 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1855620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14617905437 RX 4286046 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14563926360 RX 313515 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 12 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1947054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14590306178 RX 4558285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14532261717 RX 315150 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1857128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14632075397 RX 4287966 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14578063175 RX 313641 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 149 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1947443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14593955121 RX 4560253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14535901611 RX 315273 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1858633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 176978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14646262124 RX 4289910 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14592216728 RX 313770 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 48 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1947830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14597592834 RX 4562269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14539529846 RX 315399 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1860137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14660385041 RX 4291806 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14606306596 RX 313899 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 83 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1948215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14601189391 RX 4564285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14543113890 RX 315525 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1861645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14674445381 RX 4293726 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14620332528 RX 314025 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 41 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1948609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14604740772 RX 4566253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14546649831 RX 315648 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1863155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14688650672 RX 4295670 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14634504590 RX 314154 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 14 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1948998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14608326339 RX 4568269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14550221371 RX 315774 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1864663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14702826968 RX 4297566 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14648647728 RX 314283 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 86 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1949385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14611818371 RX 4570285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14553698593 RX 315900 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1866167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14716940411 RX 4299486 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14662728151 RX 314409 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1949772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14615458518 RX 4572253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14557326335 RX 316023 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1867678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14731096166 RX 4301430 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14676850771 RX 314538 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 103 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 50 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1950158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 188943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14619027944 RX 4574269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14560884860 RX 316149 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1869183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14745258555 RX 4303326 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14690979542 RX 314667 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 73 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1950545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14622560493 RX 4576237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14564404398 RX 316272 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1870690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14759423265 RX 4305246 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14705111123 RX 314793 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 79 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1950940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14626185747 RX 4578253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14568013498 RX 316398 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1872194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14773510788 RX 4307190 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14719165679 RX 314922 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 172 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1951327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 14629676339 RX 4580221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14571491500 RX 316521 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1873696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14787658023 RX 4309086 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14733279830 RX 315051 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1951514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 2421: ulsch_rounds 189256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: MAC: TX 14631290785 RX 4582867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14573095480 RX 317472 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1875201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 14801803212 RX 4311114 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14747391919 RX 315323 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1951614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: ulsch_rounds 189297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 14631634908 RX 4584858 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14573434924 RX 318205 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1875966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 177961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14807669701 RX 4314667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14753226464 RX 317169 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1952001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 2421: MAC: TX 14634429880 RX 4586616 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14576223062 RX 318383 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1876807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14810518124 RX 4316563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14756036771 RX 317298 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1952392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14638079096 RX 4588683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14579861745 RX 318591 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1877640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14813340261 RX 4318483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14758823376 RX 317424 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4023 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1952782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14641810296 RX 4590651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14583582259 RX 318714 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1878481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14816186215 RX 4320427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14761633628 RX 317553 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1953170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14645469580 RX 4592667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14587232503 RX 318840 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1879321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14819054714 RX 4322323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14764466110 RX 317682 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3951 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1953557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14649149260 RX 4594683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14590903568 RX 318966 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1880127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14821861864 RX 4324243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14767240799 RX 317808 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5076 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1953944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14652840715 RX 4596699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14594586386 RX 319092 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1881029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14825124008 RX 4326187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14770465600 RX 317937 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4055 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1954330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14656537483 RX 4598667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14598274508 RX 319215 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1881856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14827956913 RX 4328083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14773263976 RX 318066 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3961 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2231 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1955136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 189957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14664180569 RX 4600731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14605897753 RX 319344 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1882659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14831054958 RX 4330003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14776328171 RX 318192 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1956041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14672752580 RX 4602747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14614449730 RX 319470 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1883430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14834257048 RX 4331947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14779498138 RX 318321 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2333 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1956949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14681305262 RX 4604811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14622982396 RX 319599 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1884199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14837498764 RX 4333843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14782707644 RX 318450 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2248 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1957860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14689801700 RX 4606875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14631457455 RX 319728 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1884982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14840756022 RX 4335763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14785931489 RX 318576 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2415 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2176 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1958768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14698344189 RX 4608891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14639979463 RX 319854 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1885757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 178921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14843977459 RX 4337707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14789121208 RX 318705 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2213 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1959678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14706907062 RX 4610955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14648520824 RX 319983 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1886542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14847222203 RX 4339603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14792334128 RX 318834 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2299 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1960590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14715465872 RX 4613019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14657057147 RX 320112 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1887326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14850670694 RX 4341523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14795750623 RX 318960 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2194 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1961498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14723946485 RX 4615035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14665517895 RX 320238 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1888091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14853854075 RX 4343467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14798902271 RX 319089 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2255 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1962230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14730862058 RX 4617099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14672415843 RX 320367 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1888884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14856893072 RX 4345363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14801907656 RX 319218 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4137 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1962617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14734515626 RX 4619067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14676060850 RX 320490 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1889721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14859765550 RX 4347283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14804745065 RX 319344 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1963006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14738164569 RX 4621083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14679700742 RX 320616 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1890558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14862617602 RX 4349227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14807562702 RX 319473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4046 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1963392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14741880729 RX 4623099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14683408220 RX 320742 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1891400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14865525445 RX 4351123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14810436700 RX 319602 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4456 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1963779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 190972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14745534105 RX 4625067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14687053030 RX 320865 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1892293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14868719496 RX 4353043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14813591877 RX 319728 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4448 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1964168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14749291113 RX 4627083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14690799793 RX 320991 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1893097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14871548204 RX 4354987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14816386263 RX 319857 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1964560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14752926296 RX 4629051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14694423984 RX 321114 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1893921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14874397678 RX 4356883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14819200926 RX 319986 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4056 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3992 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1964948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14756639304 RX 4631067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14698127816 RX 321240 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1894779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14877235445 RX 4358803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14822002326 RX 320112 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1965334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14760296904 RX 4633035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14701776855 RX 321363 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1895592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14880118693 RX 4360747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14824851100 RX 320241 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1965722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14763945351 RX 4635051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14705416753 RX 321489 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1896481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 179961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14883326255 RX 4362643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14828021513 RX 320370 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5116 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4136 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1966108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14767635591 RX 4637067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14709098360 RX 321615 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1897312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14886248757 RX 4364563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14830907367 RX 320496 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1966503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14771312903 RX 4639035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14712763118 RX 321738 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1898166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14889167434 RX 4366507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14833789791 RX 320625 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4035 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1966891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14775036775 RX 4641051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14716477309 RX 321864 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1899023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14892045251 RX 4368403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14836630164 RX 320754 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1967279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14778704087 RX 4643091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14720135541 RX 321993 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1899858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14894942779 RX 4370323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14839491835 RX 320880 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4097 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1967665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14782420247 RX 4645083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14723843024 RX 322116 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1900681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14897750971 RX 4372267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14842266544 RX 321009 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1968053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14786080469 RX 4647099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14727494668 RX 322242 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1901516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14900645638 RX 4374163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14845126178 RX 321138 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1968442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 191973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14789746804 RX 4649115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14731151431 RX 322368 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1902333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14903431300 RX 4376083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14847878141 RX 321264 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3948 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4196 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1968835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14793434707 RX 4651083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14734827738 RX 322491 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1903176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14906394464 RX 4378027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14850806938 RX 321393 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1969223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14797082243 RX 4653099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14738466232 RX 322617 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1904040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14909491419 RX 4379923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14853868179 RX 321522 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1969609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14800791875 RX 4655115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14742167194 RX 322743 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1904893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14912390019 RX 4381843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14856730326 RX 321648 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1969996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14804465027 RX 4657083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14745831741 RX 322866 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1905739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14915307221 RX 4383787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14859611739 RX 321777 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4133 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1970382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14808181379 RX 4659099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14749539409 RX 322992 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1906588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 180921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14918159483 RX 4385683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14862426407 RX 321906 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4069 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1970778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14811831937 RX 4661115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14753177455 RX 323118 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1907427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14920980784 RX 4387603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14865212992 RX 322032 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3846 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1971167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14815498464 RX 4663131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14756834408 RX 323244 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1908247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14923760579 RX 4389547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14867958036 RX 322161 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1971555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14819165392 RX 4665099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14760492256 RX 323367 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1909072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14926562150 RX 4391443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14870725330 RX 322290 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3886 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4023 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1971941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14822875216 RX 4667115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14764193410 RX 323493 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1909917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14929422606 RX 4393363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14873550387 RX 322416 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1972328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14826514447 RX 4669107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14767824110 RX 323619 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1910738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14932190336 RX 4395307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14876283575 RX 322545 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4002 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1972716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14830188287 RX 4671147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14771488858 RX 323745 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1911595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14935086501 RX 4397203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14879142718 RX 322674 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4063 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4023 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1973111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 192973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14833889327 RX 4673115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14775176807 RX 323868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1912439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14937957611 RX 4399123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14881976692 RX 322800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4163 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1973498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14837594927 RX 4675107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14778873744 RX 323994 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1913290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14940845407 RX 4401067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14884828500 RX 322929 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1973885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14841239775 RX 4677099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14782509555 RX 324117 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1914138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14943746445 RX 4402963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14887695103 RX 323058 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4168 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1974272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14844971679 RX 4679115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14786232742 RX 324243 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1915021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14947010608 RX 4404883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14890923304 RX 323184 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5154 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1974660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14848560285 RX 4681131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14789812913 RX 324369 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1915829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14949855856 RX 4406827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14893733521 RX 323313 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4016 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1975052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14852234636 RX 4683147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14793476198 RX 324495 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1916643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14952711283 RX 4408723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14896555569 RX 323442 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3988 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1975442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14855952972 RX 4685115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14797183873 RX 324618 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1917484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 181960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14955582911 RX 4410643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14899390990 RX 323568 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4187 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1975830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14859599227 RX 4687131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14800821082 RX 324744 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1918332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14958479561 RX 4412587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14902251580 RX 323697 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4089 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1976217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14863298491 RX 4689147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14804511692 RX 324870 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1919184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14961321274 RX 4414483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14905057426 RX 323826 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1976603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14866949371 RX 4691139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14808154025 RX 324996 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1920004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14964108239 RX 4416403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14907809349 RX 323952 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1976990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14870687803 RX 4693179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14811883720 RX 325122 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1920857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14967012184 RX 4418347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14910676403 RX 324081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4149 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1977384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14874324170 RX 4695147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14815508110 RX 325245 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1921668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14969816955 RX 4420243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14913448053 RX 324210 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4095 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1977772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 193976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14877997818 RX 4697163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14819172664 RX 325371 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1922537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14972797926 RX 4422163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14916392731 RX 324336 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1978159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14881695082 RX 4699179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14822860792 RX 325497 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1923399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14975814219 RX 4424107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14919372447 RX 324465 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1978546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14885381290 RX 4701147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14826538372 RX 325620 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1924234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14978660963 RX 4426003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14922184141 RX 324594 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4029 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1978933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14889053353 RX 4703163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14830201838 RX 325746 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1925046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14981487557 RX 4427923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14924975102 RX 324720 bytes + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3366 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1979731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14896532476 RX 4705227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14837661982 RX 325875 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1925851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14984626533 RX 4429867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14928080212 RX 324849 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2205 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1980637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14905038949 RX 4707243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14846148537 RX 326001 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1926639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14987813866 RX 4431763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14931235865 RX 324978 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2120 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2130 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1981544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14913587662 RX 4709307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14854677253 RX 326130 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1927407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 182920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14990989694 RX 4433683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14934379647 RX 325104 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2160 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1982455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14922179705 RX 4711371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14863247229 RX 326259 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1928182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14994157139 RX 4435627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14937515533 RX 325233 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1983363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14930716577 RX 4713387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14871764119 RX 326385 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1928946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 14997377987 RX 4437523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14940705823 RX 325362 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2412 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1984276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14939234537 RX 4715451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14880259187 RX 326514 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1929705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15000584762 RX 4439443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14943880226 RX 325488 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2166 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2111 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1985185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14947791859 RX 4717515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14888795503 RX 326643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1930487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15003775504 RX 4441387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14947039334 RX 325617 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2265 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1986092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14956367965 RX 4719531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14897351551 RX 326769 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1931262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15006975653 RX 4443283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14950206798 RX 325746 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2173 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1987162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 194993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14966316090 RX 4721595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14907275377 RX 326898 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1931935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15010265004 RX 4445203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14953466311 RX 325872 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1110 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 71 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1988672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14980427235 RX 4723659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14921353486 RX 327027 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1932324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15013821794 RX 4447099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14957009327 RX 325998 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 347 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1990178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 14994495111 RX 4725675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14935388417 RX 327153 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1932709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15017450667 RX 4448971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14960626527 RX 326121 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1991688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15008642308 RX 4727739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14949502035 RX 327282 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1933098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15020949304 RX 4450819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14964108677 RX 326244 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1993187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15022781794 RX 4729803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14963608454 RX 327411 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1933484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15024458585 RX 4452763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14967604128 RX 326370 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 603 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1994691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15036867844 RX 4731819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14977661532 RX 327537 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1933873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15028187289 RX 4454587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14971322149 RX 326490 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1996194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15050937061 RX 4733883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 14991697818 RX 327666 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1934259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15031771323 RX 4456483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14974893661 RX 326613 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1997693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15064991491 RX 4735947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15005719352 RX 327795 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1934645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 183949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15035276422 RX 4458379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14978384091 RX 326739 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 1999188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15078971293 RX 4737963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15019666423 RX 327921 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1935030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15038728633 RX 4460275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14981821135 RX 326862 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2000692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15092982062 RX 4740027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15033643888 RX 328050 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1935418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15042275256 RX 4462147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14985351056 RX 326985 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2002192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15107046989 RX 4742091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15047675901 RX 328179 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1935804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15045804863 RX 4464043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14988867500 RX 327108 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2003687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 195932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15121079207 RX 4744107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15061675277 RX 328305 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1936193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15049282489 RX 4465939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14992328108 RX 327231 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2005184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15135072386 RX 4746171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15075635702 RX 328434 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1936578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15052706688 RX 4467811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14995735758 RX 327354 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2006685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15149121698 RX 4748235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15089652130 RX 328563 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1936964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15056248932 RX 4469683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 14999261817 RX 327477 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2008182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15163186493 RX 4750251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15103684013 RX 328689 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1937350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15059879170 RX 4471531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15002881288 RX 327597 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2009678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15177153927 RX 4752315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15117618247 RX 328818 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1937741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15063407666 RX 4473355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15006391599 RX 327720 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2011174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15191090913 RX 4754379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15131522588 RX 328947 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1938125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15066894210 RX 4475227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15009862196 RX 327843 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2012674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15205136448 RX 4756395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15145535246 RX 329073 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1938512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15070436994 RX 4477171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15013391357 RX 327972 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2014169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15219116442 RX 4758459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15159482519 RX 329202 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1938898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15073953235 RX 4478971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15016892220 RX 328095 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 30 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 48 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2015668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15233110839 RX 4760523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15173444139 RX 329331 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1939283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15077483551 RX 4480867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15020408373 RX 328218 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2017170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15247121479 RX 4762539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15187421482 RX 329457 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1939672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 184964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15081017573 RX 4482715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15023923640 RX 328344 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 40 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2018667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15261200803 RX 4764603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15201467870 RX 329586 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1940059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15084543784 RX 4484539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15027436672 RX 328464 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 653 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2020165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15275203198 RX 4766667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15215437484 RX 329715 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1940444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15088233843 RX 4486435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15031117126 RX 328587 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2021668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 196956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15289266976 RX 4768683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15229468334 RX 329841 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1940830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15091792947 RX 4488331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15034661829 RX 328710 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2023175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15303366214 RX 4770747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15243534577 RX 329970 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1941216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15095358030 RX 4490203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15038212149 RX 328833 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 19 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2024679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15317493097 RX 4772811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15257628408 RX 330099 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1941602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15098920187 RX 4492003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15041762572 RX 328953 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 139 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 295 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2026188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15331569407 RX 4774827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15271671257 RX 330225 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1941990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15102526124 RX 4493899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15045355171 RX 329076 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2027693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15345693347 RX 4776891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15285762144 RX 330354 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1942376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15106175930 RX 4495819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15048994383 RX 329202 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2029195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15359831492 RX 4778955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15299867217 RX 330483 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1942765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15109681171 RX 4497667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15052484744 RX 329325 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 17 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2030699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15373917734 RX 4780971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15313920479 RX 330609 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1943150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15113263584 RX 4499539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15056052957 RX 329448 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 137 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 185 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2032201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15387969734 RX 4783035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15327939577 RX 330738 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1943536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15116900323 RX 4501459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15059675809 RX 329574 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 69 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2033701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15402080549 RX 4785099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15342017385 RX 330867 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1943922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15120448446 RX 4503307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15063211872 RX 329697 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 74 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2035202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15416105523 RX 4787115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15356009032 RX 330993 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1944310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15124007734 RX 4505227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15066756643 RX 329820 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 87 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 60 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2036702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15430092114 RX 4789179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15369962863 RX 331122 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1944696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 185981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15127546994 RX 4507123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15070281293 RX 329946 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2038205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15444162804 RX 4791243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15384000615 RX 331251 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1945086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15131155653 RX 4509043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15073874810 RX 330072 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 146 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2039633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 197980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15457631743 RX 4793259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15397437569 RX 331377 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1945518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15134703056 RX 4510939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15077407926 RX 330198 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2040542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15466236604 RX 4795323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15406020836 RX 331506 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1946313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15137922259 RX 4512835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15080594636 RX 330327 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2193 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2095 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2041450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15474816823 RX 4797387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15414579519 RX 331635 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1947093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15141115983 RX 4514755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15083757188 RX 330453 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2312 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2042362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15483376544 RX 4799403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15423117230 RX 331761 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1947873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15144376027 RX 4516699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15086985389 RX 330582 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2469 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2043270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15491893832 RX 4801467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15431614583 RX 331890 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1948650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15147661720 RX 4518595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15090236321 RX 330711 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2246 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2296 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2044182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15500444087 RX 4803531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15440141903 RX 332019 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1949410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15150912696 RX 4520515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15093456576 RX 330837 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2279 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2045092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15509013488 RX 4805547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15448689784 RX 332145 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1950168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15154102023 RX 4522459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15096615724 RX 330966 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2048 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2046000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15517570314 RX 4807611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15457226100 RX 332274 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1950941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15157292730 RX 4524355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15099775317 RX 331095 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2219 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2046914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15526053903 RX 4809675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15465686856 RX 332403 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1951690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15160486512 RX 4526275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15102938796 RX 331221 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2158 SDU rejected, SDU buffer full +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 80 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.76, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 20 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.19, ue sched algo nr_proportional_fair_wbcqi_dl +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2048222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15538336182 RX 4811691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15477940394 RX 332529 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1952216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15163866389 RX 4528195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15106296499 RX 331350 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2049726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15552403929 RX 4813755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15491975202 RX 332658 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1952602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 186937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15167412010 RX 4530091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15109828049 RX 331473 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2051231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 198919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15566524396 RX 4815819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15506062127 RX 332787 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1952991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15170923568 RX 4532011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15113324475 RX 331602 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2052736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15580601551 RX 4817835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15520106329 RX 332913 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1953376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15174413766 RX 4533859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15116798634 RX 331722 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2054244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15594692086 RX 4819899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15534163868 RX 333042 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1953766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15177981020 RX 4535779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15120347927 RX 331848 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2055748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15608877337 RX 4821963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15548315947 RX 333171 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1954151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15181509864 RX 4537675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15123864054 RX 331971 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2057246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15622940854 RX 4823979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15562346557 RX 333297 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1954537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15184964763 RX 4539523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15127302288 RX 332094 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2058750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15636977927 RX 4826043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15576350264 RX 333426 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1954922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15188549822 RX 4541347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15130873508 RX 332214 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 255 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2060252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15651056231 RX 4828107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15590395618 RX 333555 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1955311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15192218102 RX 4543267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15134530092 RX 332340 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 40 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2061747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 15665062145 RX 4830209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15604368742 RX 333758 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1955558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE c22c: ulsch_rounds 187562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 15194401426 RX 4545932 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15136701496 RX 333321 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 18 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2062655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 2421: ulsch_rounds 199619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: MAC: TX 15673270988 RX 4833802 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15612549024 RX 335531 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1955583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: ulsch_rounds 187594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15194428318 RX 4547971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15136723828 RX 333964 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2063510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15676159126 RX 4836010 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15615400302 RX 335796 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1955969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE c22c: ulsch_rounds 187658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15196912007 RX 4549543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15139201311 RX 334195 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2064333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15679005674 RX 4838074 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15618210519 RX 335925 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1956355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15200560829 RX 4551541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15142841584 RX 334401 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2065162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15681873287 RX 4840090 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15621043452 RX 336051 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1956740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15204281021 RX 4553461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15146553088 RX 334527 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4134 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2065997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 199965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15684729962 RX 4842154 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15623865677 RX 336180 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1957129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15208038029 RX 4555405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15150299842 RX 334650 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4239 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2066879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15687995825 RX 4844218 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15627096434 RX 336309 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1957517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 187980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15211742317 RX 4557301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15153994488 RX 334773 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4810 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4091 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2067742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15690905019 RX 4846234 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15629967974 RX 336435 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1957904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15215413277 RX 4559221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15157656360 RX 334899 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4084 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2068592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15693757011 RX 4848298 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15632785691 RX 336564 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1958289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15219139997 RX 4561165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15161374378 RX 335022 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2069496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15697033992 RX 4850362 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15636025833 RX 336693 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1958675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15222869405 RX 4563061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15165095071 RX 335148 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5190 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4170 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2070338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15699947456 RX 4852378 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15638903806 RX 336819 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1959065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15226561437 RX 4564957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15168776493 RX 335271 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2071199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15702901956 RX 4854442 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15641821228 RX 336948 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1959452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15230276093 RX 4566877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15172481490 RX 335394 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2072083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15706087234 RX 4856506 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15644969436 RX 337077 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1959839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15234038637 RX 4568773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15176234763 RX 335517 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4205 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2072932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15709029465 RX 4858522 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15647875572 RX 337203 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1960225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15237735405 RX 4570645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15179922886 RX 335643 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4098 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2073740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15711841728 RX 4860586 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15650653651 RX 337332 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1960611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15241458093 RX 4572589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15183636872 RX 335766 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2074564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15714716541 RX 4862650 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15653495070 RX 337461 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1960996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15245184813 RX 4574485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15187354889 RX 335889 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2075414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15717649295 RX 4864666 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15656392785 RX 337587 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1961387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15248923229 RX 4576381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15191082106 RX 336012 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4131 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2076250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 200989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15720525376 RX 4866730 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15659234154 RX 337716 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1961773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15252593693 RX 4578325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15194743984 RX 336138 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2077081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15723373172 RX 4868794 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15662046884 RX 337845 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1962159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 188935/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15256294797 RX 4580221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15198435940 RX 336261 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4266 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2077928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15726291698 RX 4870810 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15664929794 RX 337971 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1962545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15260050317 RX 4582165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15202182695 RX 336387 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4001 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2078772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15729191528 RX 4872874 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15667793458 RX 338100 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1962931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15263707917 RX 4584037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15205831725 RX 336510 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4087 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4139 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2079605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15732108405 RX 4874938 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15670676834 RX 338229 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1963317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15267411021 RX 4585957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15209526173 RX 336633 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4034 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2080450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15735002680 RX 4876954 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15673536002 RX 338355 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1963706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15271159309 RX 4587877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15213263741 RX 336759 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4134 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2081302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15737920996 RX 4879018 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15676418942 RX 338484 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1964092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15274869133 RX 4589749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15216964890 RX 336879 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2082123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15740723516 RX 4881082 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15679187182 RX 338613 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1964481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15278534749 RX 4591693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15220620445 RX 337005 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3936 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3898 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2082936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15743517595 RX 4883098 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15681946095 RX 338739 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1964866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15282241885 RX 4593589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15224318920 RX 337128 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2083768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15746328386 RX 4885162 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15684721800 RX 338868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1965252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15285964573 RX 4595509 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15228032910 RX 337254 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2084586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15749167828 RX 4887226 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15687527566 RX 338997 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1965640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15289590525 RX 4597405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15231649373 RX 337377 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4066 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4130 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2085421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 201928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15752078502 RX 4889242 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15690403532 RX 339123 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1966026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15293298157 RX 4599277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15235347848 RX 337500 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4123 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2086252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15754959802 RX 4891306 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15693250859 RX 339252 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1966416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15297062189 RX 4601173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15239101129 RX 337623 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4018 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2087104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15757871440 RX 4893370 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15696126389 RX 339381 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1966802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15300758765 RX 4603045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15242789057 RX 337746 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4110 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2087944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15760750092 RX 4895386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15698970762 RX 339507 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1967188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 189966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15304442477 RX 4604965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15246464150 RX 337869 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4027 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2088810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15763634497 RX 4897450 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15701819676 RX 339636 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1967573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15308182253 RX 4606909 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15250195198 RX 337995 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2089653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15766520245 RX 4899514 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15704670978 RX 339765 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1967964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15311887837 RX 4608805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15253889647 RX 338118 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2090475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15769355300 RX 4901530 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15707469364 RX 339891 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1968350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15315545053 RX 4610749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15257538298 RX 338244 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4033 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4009 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2091313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15772216549 RX 4903594 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15710294992 RX 340020 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1968737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15319285821 RX 4612621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15261269352 RX 338367 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4112 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2092180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15775120445 RX 4905658 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15713161575 RX 340149 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1969123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15323034813 RX 4614517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15265009596 RX 338490 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2093028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15778001789 RX 4907674 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15716006929 RX 340275 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1969509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15326737725 RX 4616389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15268703843 RX 338616 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2093910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15781265026 RX 4909738 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15719234119 RX 340404 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1969895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15330440829 RX 4618333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15272398287 RX 338739 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5076 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4000 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2094742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15784134747 RX 4911802 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15722068133 RX 340533 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1970285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15334202669 RX 4620205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15276148884 RX 338859 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2095570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 202952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15786952428 RX 4913818 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15724850227 RX 340659 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1970671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15337918829 RX 4622125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15279856357 RX 338985 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2096404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15789774504 RX 4915882 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15727637793 RX 340788 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1971057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15341595629 RX 4624045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15283524553 RX 339111 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2097243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15792672234 RX 4917946 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15730500466 RX 340917 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1971442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15345322349 RX 4625941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15287242570 RX 339231 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4107 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4199 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2098070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15795579777 RX 4919962 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15733373037 RX 341043 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1971828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15349058285 RX 4627861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15290969781 RX 339357 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2098894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15798396107 RX 4922026 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15736155101 RX 341172 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1972216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 190999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15352723021 RX 4629757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15294624950 RX 339480 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4038 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2099712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15801195543 RX 4924090 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15738919431 RX 341301 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1972603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15356424621 RX 4631677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15298316911 RX 339603 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3776 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4116 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2100569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15804107458 RX 4926106 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15741794946 RX 341427 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1972990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15360167389 RX 4633573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15302050449 RX 339726 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4099 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2101401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15807019201 RX 4928170 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15744672894 RX 341556 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1973378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15363897789 RX 4635517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15305771145 RX 339852 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4131 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2102246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15809887063 RX 4930234 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15747505872 RX 341685 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1973764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15367542333 RX 4637413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15309407151 RX 339978 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2103091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15812838783 RX 4932250 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15750422873 RX 341811 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1974149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15371262333 RX 4639333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15313118463 RX 340101 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4212 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4125 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2103921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15815741438 RX 4934314 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15753290427 RX 341940 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1974538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15374986701 RX 4641229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15316832656 RX 340227 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3969 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2104732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15818534098 RX 4936378 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15756047828 RX 342069 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1974925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15378638269 RX 4643125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15320475179 RX 340350 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2105552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 203976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15821393567 RX 4938394 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15758872935 RX 342195 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1975314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15382334333 RX 4645021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15324160628 RX 340473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4136 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2106399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15824316667 RX 4940458 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15761760241 RX 342324 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1975700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15386082941 RX 4646965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15327900486 RX 340599 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4477 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2107261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15827422992 RX 4942522 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15764831400 RX 342453 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1976086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15389772989 RX 4648837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15331581906 RX 340722 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4377 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2108108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15830314053 RX 4944538 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15767686107 RX 342579 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1976472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15393450173 RX 4650757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15335250484 RX 340848 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2108937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15833190499 RX 4946602 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15770527491 RX 342708 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1976861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 191950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15397185213 RX 4652581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15338974833 RX 340968 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4032 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2109773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15836065940 RX 4948666 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15773367428 RX 342837 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1977248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15400921453 RX 4654477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15342701852 RX 341091 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4507 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2110603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15839103702 RX 4950682 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15776369849 RX 342963 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1977637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15404554429 RX 4656349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15346324835 RX 341217 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3910 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2111426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15841927582 RX 4952746 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15779159834 RX 343092 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1978022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15408268093 RX 4658245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15350029818 RX 341337 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3970 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2112243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15844766951 RX 4954810 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15781965675 RX 343221 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1978408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15412069117 RX 4660189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15353821980 RX 341460 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3915 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2113063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15847615346 RX 4956826 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15784780373 RX 343347 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1978794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15415726717 RX 4662061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15357471014 RX 341583 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2113886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15850416871 RX 4958890 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15787547652 RX 343476 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1979185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15419439021 RX 4664029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15361172179 RX 341709 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2114712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 204915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15853212818 RX 4960954 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15790310530 RX 343605 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1979570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15423185325 RX 4665901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15364909741 RX 341832 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3870 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2115538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15856083709 RX 4962970 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15793146001 RX 343731 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1979957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15426941149 RX 4667773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15368656301 RX 341955 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2116356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15858907884 RX 4965034 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15795935455 RX 343860 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1980343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15430585501 RX 4669669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15372292113 RX 342078 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2117209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15861891304 RX 4967098 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15798883503 RX 343989 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1980728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15434318749 RX 4671589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15376016646 RX 342204 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2118066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15864947224 RX 4969114 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15801904264 RX 344115 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1981118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15438095645 RX 4673461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15379782762 RX 342327 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4049 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4091 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2118919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15867841264 RX 4971178 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15804762996 RX 344244 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1981506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15441747517 RX 4675381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15383425094 RX 342450 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4084 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2119745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15870708264 RX 4973242 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15807595994 RX 344373 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1981892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 192979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15445437757 RX 4677253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15387106700 RX 342576 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3951 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2120597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15873608002 RX 4975258 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15810459613 RX 344499 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1982277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15449190589 RX 4679197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15390850776 RX 342699 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4241 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2121456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15876543096 RX 4977322 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15813358349 RX 344628 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1982663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15452893885 RX 4681117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15394545412 RX 342825 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4254 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2122276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15879443800 RX 4979386 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15816225458 RX 344757 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1983049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15456570685 RX 4682989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15398213603 RX 342948 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2123171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15882643667 RX 4981402 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15819388521 RX 344883 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1983437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15460285645 RX 4684933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15401918404 RX 343074 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2124015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15885551497 RX 4983466 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15822259545 RX 345012 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1983824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15464028605 RX 4686805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15405652132 RX 343197 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4146 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2124830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 205939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15888357959 RX 4985530 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15825030709 RX 345141 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1984214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15467655357 RX 4688725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15409268398 RX 343323 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2125646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15891175263 RX 4987546 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15827814781 RX 345267 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1984599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15471349245 RX 4690621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15412953649 RX 343443 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2126505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15894070421 RX 4989610 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15830673488 RX 345396 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1984985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15475091709 RX 4692517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15416687375 RX 343566 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4065 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2127321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15896860320 RX 4991674 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15833430438 RX 345525 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1985371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15478795005 RX 4694413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15420382008 RX 343692 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2128135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15899696806 RX 4993690 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15836232219 RX 345651 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1985761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15482460925 RX 4696333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15424037371 RX 343815 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2129031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15902828665 RX 4995754 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15839325563 RX 345780 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1986146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15486194173 RX 4698205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15427761903 RX 343938 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2129880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15905727444 RX 4997818 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15842189162 RX 345909 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1986536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 193929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15489912317 RX 4700077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15431469389 RX 344061 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4101 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2130716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15908611264 RX 4999834 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15845037485 RX 346035 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1986922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15493589501 RX 4701973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15435137962 RX 344184 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2131550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15911476262 RX 5001898 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15847867439 RX 346164 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1987307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15497302973 RX 4703893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15438842758 RX 344310 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2132381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15914291863 RX 5003962 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15850649538 RX 346293 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1987694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15501052461 RX 4705813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15442582997 RX 344433 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4000 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2133225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15917175362 RX 5005978 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15853496880 RX 346419 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1988083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15504744189 RX 4707709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15446264610 RX 344556 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4020 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2134061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15920003632 RX 5008042 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15856289323 RX 346548 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1988469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15508434237 RX 4709581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15449946025 RX 344679 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5101 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2134970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 206963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15923354057 RX 5010106 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15859601557 RX 346677 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1988857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15512182029 RX 4711477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15453683591 RX 344802 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4432 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2135826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15926300224 RX 5012122 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15862511183 RX 346803 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1989243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15515904909 RX 4713421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15457397776 RX 344928 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3974 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4203 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2136654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15929215582 RX 5014186 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15865391592 RX 346932 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1989629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15519608205 RX 4715293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15461092418 RX 345051 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2137483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15932046094 RX 5016250 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15868188529 RX 347061 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1990017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15523336413 RX 4717213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15464810436 RX 345174 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3988 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2138300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15934901881 RX 5018266 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15871009140 RX 347187 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1990406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15527099949 RX 4719109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15468563715 RX 345297 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4077 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2139158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15937910087 RX 5020330 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15873981040 RX 347316 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1990792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15530770605 RX 4720981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15472225780 RX 345420 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4431 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2139988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15940732895 RX 5022394 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15876767545 RX 347445 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1991178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15534454317 RX 4722949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15475900872 RX 345546 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4940 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2140882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15943920202 RX 5024410 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15879918752 RX 347571 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1991563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 194959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15538181037 RX 4724797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15479618886 RX 345669 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4137 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2141737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15946854515 RX 5026474 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15882817563 RX 347700 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1991949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15541936365 RX 4726741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15483365449 RX 345795 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4107 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2142559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15949657494 RX 5028538 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15885585338 RX 347829 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1992339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15545576365 RX 4728637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15486994951 RX 345921 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2143373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15952408258 RX 5030554 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15888302209 RX 347955 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1992724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15549303085 RX 4730557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15490712965 RX 346044 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2144199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15955277439 RX 5032618 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15891136183 RX 348084 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1993113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15553027453 RX 4732429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15494427150 RX 346167 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2145027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 207987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15958103468 RX 5034682 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15893926638 RX 348213 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1993499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15556697917 RX 4734325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15498089022 RX 346290 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3820 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2145855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15960925961 RX 5036698 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15896713694 RX 348339 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1993885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15560401021 RX 4736245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15501783468 RX 346416 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4005 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2146692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15963766196 RX 5038762 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15899519525 RX 348468 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1994270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15564134269 RX 4738165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15505508001 RX 346539 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2147528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15966593443 RX 5040826 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15902312979 RX 348597 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1994660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15567806717 RX 4740109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15509169879 RX 346665 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2148371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15969467380 RX 5042842 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15905150438 RX 348723 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1995046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15571483901 RX 4742029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15512838454 RX 346788 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4074 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4026 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2149208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15972339100 RX 5044906 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15907987376 RX 348852 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1995434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15575205581 RX 4743877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15516549962 RX 346911 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4035 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2150053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15975206459 RX 5046970 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15910819933 RX 348981 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1995820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15578941517 RX 4745797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15520277172 RX 347037 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2150885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15978128387 RX 5048986 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15913707224 RX 349107 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1996206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15582579533 RX 4747717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15523906659 RX 347163 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4192 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2151702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15980968088 RX 5051050 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15916513005 RX 349236 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1996592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 195993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15586313277 RX 4749613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15527631189 RX 347283 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2152523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15983812240 RX 5053114 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15919321810 RX 349365 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1996982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15590064061 RX 4751533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15531371245 RX 347409 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2153346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15986656196 RX 5055130 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15922132127 RX 349491 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1997370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15593755293 RX 4753429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15535052857 RX 347532 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2154161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 208925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15989526436 RX 5057194 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15924969060 RX 349620 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1997757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15597459085 RX 4755397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15538747493 RX 347658 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2154992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15992431474 RX 5059258 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15927840139 RX 349749 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1998142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15601198669 RX 4757293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15542478344 RX 347781 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2155825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15995240915 RX 5061274 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15930614868 RX 349875 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1998528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15604908493 RX 4759189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15546179493 RX 347907 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2156652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 15998089302 RX 5063338 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15933429080 RX 350004 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1998918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15608581133 RX 4761133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15549841562 RX 348033 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3977 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2157507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16000951034 RX 5065402 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15936254653 RX 350133 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1999304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15612327933 RX 4763005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15553579126 RX 348156 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2158454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16004529356 RX 5067418 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15939793673 RX 350259 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 1999691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15616096813 RX 4764901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15557338723 RX 348279 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4496 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2159272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16007281975 RX 5069482 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15942512051 RX 350388 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2000077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15619787053 RX 4766773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15561020329 RX 348402 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4042 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2160093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16010133465 RX 5071546 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15945328687 RX 350517 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2000463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15623490349 RX 4768693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15564714965 RX 348528 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4000 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4089 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2160928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16013043656 RX 5073562 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15948203691 RX 350643 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2000848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15627223405 RX 4770613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15568439302 RX 348651 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4169 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2161781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16015974788 RX 5075626 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15951098447 RX 350772 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2001239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 196949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15630916125 RX 4772557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15572120920 RX 348777 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2162614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16018844629 RX 5077690 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15953934389 RX 350901 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2001625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15634612893 RX 4774453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15575809043 RX 348900 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4021 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2163443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16021707077 RX 5079706 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15956763421 RX 351027 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2002012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15638321021 RX 4776373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15579507522 RX 349026 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4052 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4030 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2164287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 209949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16024567865 RX 5081770 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15959589024 RX 351156 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2002398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15642069821 RX 4778293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15583247566 RX 349149 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2165130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16027484822 RX 5083834 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15962471403 RX 351285 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2002784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15645701309 RX 4780213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15586870540 RX 349275 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4104 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2166000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16030622836 RX 5085850 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15965573659 RX 351411 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2003169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15649421501 RX 4782085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15590582042 RX 349398 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4823 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2166824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16033463030 RX 5087914 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15968379445 RX 351540 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2003558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15653171981 RX 4783981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15594322292 RX 349521 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2167645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16036330881 RX 5089978 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15971213915 RX 351669 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2003945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15656862717 RX 4785877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15598003903 RX 349644 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2168493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16039174590 RX 5091994 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15974022239 RX 351795 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2004334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15660515085 RX 4787821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15601646233 RX 349770 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2169319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16041997622 RX 5094058 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15976809255 RX 351924 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2004719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15664228749 RX 4789741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15605351215 RX 349893 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3997 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4651 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2170191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16045101225 RX 5096122 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15979875979 RX 352053 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2005105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15667938573 RX 4791661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15609052362 RX 350019 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2170996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16047905996 RX 5098138 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15982647172 RX 352179 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2005493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15671616557 RX 4793557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15612720753 RX 350142 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4086 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2171823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16050714705 RX 5100202 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15985422342 RX 352308 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2005879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15675337245 RX 4795429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15616432259 RX 350265 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3881 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4242 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2172648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16053662679 RX 5102266 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15988336389 RX 352437 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2006268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 197981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15679100781 RX 4797325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15620185533 RX 350388 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2173494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16056604603 RX 5104282 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15991242555 RX 352563 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2006654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15682758381 RX 4799245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15623834570 RX 350514 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4249 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2174328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 210973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 16059484782 RX 5106346 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15994087354 RX 352692 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2007039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15686458797 RX 4801165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15627526335 RX 350640 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2175046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 2421: ulsch_rounds 211059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 2421: MAC: TX 16061966875 RX 5108914 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15996536244 RX 353370 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2007425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15690200877 RX 4803085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15631259678 RX 350763 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3888 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 641 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2175064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: ulsch_rounds 211082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 16061973833 RX 5110682 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15996536661 RX 353697 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2007816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15693932765 RX 4805167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15634980377 RX 351111 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2175077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 211095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 16061975654 RX 5112160 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15996536661 RX 353697 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2008203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15697577613 RX 4807141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15638616188 RX 351306 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2175090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 211108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 16061977217 RX 5113638 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15996536661 RX 353697 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2008564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE c22c: MAC: TX 15701083351 RX 4809091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15642112532 RX 351500 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2175855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 2421: ulsch_rounds 211182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16064254007 RX 5116174 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 15998805242 RX 354552 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2008771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15702749717 RX 4812617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15643767392 RX 353367 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2177356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16074306180 RX 5118214 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16008832600 RX 354681 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2009157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15706338681 RX 4814441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15647344716 RX 353487 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2178851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16088270556 RX 5120254 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16022764278 RX 354807 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2009542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15709746395 RX 4816337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15650735220 RX 353610 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2180351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16102247530 RX 5122318 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16036708026 RX 354936 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2009933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15713273569 RX 4818233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15654243665 RX 353736 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 23 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2181852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16116264202 RX 5124358 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16050691880 RX 355065 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2010319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15716989921 RX 4820129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15657951331 RX 353859 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2183354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16130389483 RX 5126398 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16064784112 RX 355191 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2010705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 198946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15720451770 RX 4822025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15661400115 RX 353985 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2184859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16144447054 RX 5128462 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16078808771 RX 355320 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2011090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15723885824 RX 4823897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15664815724 RX 354108 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2186368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16158580534 RX 5130502 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16092909165 RX 355449 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2011476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15727318668 RX 4825697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15668231452 RX 354228 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2187876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16172765297 RX 5132542 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16107060286 RX 355575 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2011862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15730848713 RX 4827569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15671748485 RX 354354 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2189380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 211950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16186890515 RX 5134606 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16121152450 RX 355704 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2012249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15734315502 RX 4829489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15675198869 RX 354477 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2190883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16200913844 RX 5136646 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16135142937 RX 355833 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2012637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15737873426 RX 4831337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15678738393 RX 354597 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2192384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16215015572 RX 5138686 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16149211669 RX 355959 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2013024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15741429663 RX 4833209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15682281294 RX 354720 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2193884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16229080499 RX 5140750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16163243682 RX 356088 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2013409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15745023056 RX 4835105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15685864518 RX 354846 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2195390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16243142039 RX 5142790 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16177272308 RX 356217 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2013793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15748511668 RX 4837001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15689338402 RX 354969 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2196893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16257228648 RX 5144830 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16191325459 RX 356343 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2014182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15751974408 RX 4838945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15692782270 RX 355092 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2198389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16271291139 RX 5146894 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16205355048 RX 356472 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2014568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15755422929 RX 4840817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15696215329 RX 355215 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2199889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16285328673 RX 5148934 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16219359720 RX 356601 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2014955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15758853727 RX 4842641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15699626395 RX 355338 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2201391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16299362562 RX 5150974 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16233360746 RX 356727 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2015339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15762314543 RX 4844513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15703069618 RX 355461 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2202890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16313422623 RX 5153038 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16247387906 RX 356856 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2015724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 199961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15765833873 RX 4846385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15706574526 RX 355584 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2204388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16327446972 RX 5155078 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16261379419 RX 356985 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2016110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15769314088 RX 4848209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15710040219 RX 355704 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2205887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16341405256 RX 5157118 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16275304517 RX 357111 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2016500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15772907992 RX 4850129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15713619145 RX 355830 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2207387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 212974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16355463847 RX 5159182 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16289330207 RX 357240 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2016886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15776577919 RX 4852025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15717279406 RX 355953 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2208881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16369472704 RX 5161222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16303306279 RX 357369 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2017274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15780099704 RX 4853897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15720785826 RX 356076 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2210377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16383481306 RX 5163262 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16317282099 RX 357495 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2017658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15783491846 RX 4855673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15724160043 RX 356196 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2211878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16397491450 RX 5165326 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16331259438 RX 357624 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2018044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15786946487 RX 4857545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15727596469 RX 356319 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2213378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16411566152 RX 5167366 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16345300715 RX 357753 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2018431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15790427696 RX 4859417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15731062805 RX 356442 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2214874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16425521249 RX 5169406 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16359223141 RX 357879 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2018820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15793853005 RX 4861361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15734469651 RX 356568 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2216371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16439470205 RX 5171470 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16373139427 RX 358008 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2019205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15797374679 RX 4863209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15737975494 RX 356694 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2217874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16453520927 RX 5173510 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16387157248 RX 358137 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2019591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15800867459 RX 4865129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15741452576 RX 356820 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2219370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16467531002 RX 5175550 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16401134528 RX 358263 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2019975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15804317994 RX 4867025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15744886930 RX 356943 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2220872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16481583386 RX 5177614 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16415154018 RX 358392 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2020357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15807844545 RX 4868945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15748400165 RX 357069 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2222378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16495662126 RX 5179654 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16429199305 RX 358521 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2020746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 200981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15811367891 RX 4870841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15751908000 RX 357195 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2223884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16509855315 RX 5181694 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16443359304 RX 358647 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2021133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15814885313 RX 4872737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15755410950 RX 357318 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2225391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 213998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16523972856 RX 5183758 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16457443803 RX 358776 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2021521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15818566291 RX 4874609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15759079785 RX 357444 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2226895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16538039706 RX 5185798 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16471477723 RX 358905 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2021907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15822253261 RX 4876529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15762755810 RX 357567 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2228396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16552122042 RX 5187838 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16485527103 RX 359031 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2022293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15825746117 RX 4878425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15766235146 RX 357690 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2229898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16566207963 RX 5189902 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16499580057 RX 359160 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2022679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15829192942 RX 4880297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15769666849 RX 357813 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2231403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16580255533 RX 5191942 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16513594245 RX 359289 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2023067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15832655931 RX 4882145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15773111272 RX 357936 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2232909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16594357522 RX 5193982 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16527663220 RX 359415 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2023454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15836125265 RX 4883993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15776562618 RX 358059 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2234408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16608503536 RX 5196046 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16541776150 RX 359544 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2023843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15839601266 RX 4885841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15780023868 RX 358182 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2235908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16622534734 RX 5198086 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16555774507 RX 359673 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2024228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15843042459 RX 4887713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15783447614 RX 358305 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2237409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16636545070 RX 5200126 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16569752031 RX 359799 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2024614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15846575298 RX 4889561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15786963002 RX 358425 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2238909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16650628492 RX 5202190 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16583802500 RX 359928 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2025000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15850082089 RX 4891505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15790456307 RX 358551 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2240406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16664619287 RX 5204230 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16597760053 RX 360057 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2025390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15853544098 RX 4893353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15793900756 RX 358674 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2241908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 214936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16678612727 RX 5206270 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16611720716 RX 360183 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2025775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 201995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15856972445 RX 4895201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15797312300 RX 358797 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2243405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16692633299 RX 5208334 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16625708473 RX 360312 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2026164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15860546577 RX 4897121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15800872799 RX 358923 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2244898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16706676971 RX 5210374 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16639719294 RX 360441 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2026550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15864204177 RX 4898969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15804521840 RX 359046 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2246396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16720673927 RX 5212414 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16653683478 RX 360567 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2026935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15867788128 RX 4900865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15808092032 RX 359172 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2247894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16734681939 RX 5214478 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16667658205 RX 360696 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2027322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15871273555 RX 4902761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15811559752 RX 359298 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2249392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16748738928 RX 5216518 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16681682305 RX 360825 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2027712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15874778634 RX 4904657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15815050014 RX 359421 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2250888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16762708362 RX 5218558 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16695619027 RX 360951 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2028098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15878199467 RX 4906505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15818452799 RX 359547 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2252387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16776650535 RX 5220622 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16709528536 RX 361080 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2028484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15881711723 RX 4908353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15821946053 RX 359667 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2253886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16790672325 RX 5222662 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16723517506 RX 361209 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2028870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15885202697 RX 4910201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15825422560 RX 359793 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2255382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16804688928 RX 5224806 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16737501300 RX 361407 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2029256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15888708269 RX 4912121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15828914504 RX 359916 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2256881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16818666796 RX 5226846 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16751445944 RX 361533 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2029644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15892166958 RX 4913969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15832355355 RX 360042 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2258387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16832749009 RX 5228910 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16765495191 RX 361662 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2030032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15895897886 RX 4915865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15836076120 RX 360165 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2259888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 215965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16846889905 RX 5230950 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16779603015 RX 361791 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2030417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 202934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15899402391 RX 4917737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15839567805 RX 360288 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2261392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16860987922 RX 5232990 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16793668037 RX 361917 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2030801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15902863670 RX 4919657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15843013753 RX 360414 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2262896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16875045668 RX 5235054 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16807692386 RX 362046 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2031185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15906435278 RX 4921553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15846572432 RX 360540 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2264404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16889168459 RX 5237094 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16821782124 RX 362175 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2031571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15909984878 RX 4923449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15850107658 RX 360666 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2265905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16903240602 RX 5239134 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16835820848 RX 362301 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2031959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15913479832 RX 4925321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15853587951 RX 360789 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2267413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16917329664 RX 5241198 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16849876921 RX 362430 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2032344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15917206552 RX 4927169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15857305969 RX 360912 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2268917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16931423715 RX 5243238 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16863937977 RX 362559 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2032734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15920911640 RX 4929089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15861000419 RX 361038 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2270418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16945557891 RX 5245278 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16878039098 RX 362685 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2033120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15924562712 RX 4930985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15864642941 RX 361161 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2271919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16959638754 RX 5247342 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16892087003 RX 362814 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2033505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15928085117 RX 4932809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15868151844 RX 361284 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2273422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16973666419 RX 5249382 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16906081337 RX 362943 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2033892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15931579167 RX 4934705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15871628700 RX 361407 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 48 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2274920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 16987722127 RX 5251422 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16920104156 RX 363069 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2034281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15935257839 RX 4936577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15875297289 RX 361530 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2276417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17001735979 RX 5253486 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16934085208 RX 363198 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2034667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15938718080 RX 4938449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15878743572 RX 361653 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2277917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 216989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17015701705 RX 5255526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16948018222 RX 363327 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2035056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15942198821 RX 4940297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15882205385 RX 361773 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2279419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17029761706 RX 5257566 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16962045307 RX 363453 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2035442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 203954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15945707255 RX 4942193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15885699238 RX 361902 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2280910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17043791104 RX 5259630 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16976041884 RX 363582 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2035828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15949183064 RX 4944041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15889162294 RX 362022 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2282410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17057818637 RX 5261670 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 16990036091 RX 363711 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2036212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15952629350 RX 4945865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15892591153 RX 362145 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2283909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17071807787 RX 5263710 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17003992472 RX 363837 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2036600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15956144325 RX 4947761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15896087230 RX 362268 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 187 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2285406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17085892358 RX 5265774 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17018044101 RX 363966 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2036988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15959785971 RX 4949657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15899718457 RX 362394 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2286900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17099840990 RX 5267814 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17031960076 RX 364095 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2037374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15963506659 RX 4951601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15903429962 RX 362517 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 7 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2288399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17113804220 RX 5269854 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17045890591 RX 364221 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2037760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15967170296 RX 4953473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15907082856 RX 362640 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2289900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17127801500 RX 5271918 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17059855087 RX 364350 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2038146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15970581458 RX 4955345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15910477172 RX 362763 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2291394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17141819556 RX 5273958 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17073839848 RX 364479 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2038536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15974052041 RX 4957193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15913931682 RX 362886 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2292894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17155817922 RX 5275998 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17087805433 RX 364605 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2038923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15977516657 RX 4959041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15917377832 RX 363009 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2294395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 217927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17169828258 RX 5278062 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17101782955 RX 364734 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2039308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15980982132 RX 4960961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15920826577 RX 363135 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2295897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17183960067 RX 5280102 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17115881709 RX 364863 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2039694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15984460490 RX 4962833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15924290500 RX 363261 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2297399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17198036898 RX 5282142 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17129925595 RX 364989 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2040079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15987994586 RX 4964681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15927810107 RX 363381 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2298904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17212102086 RX 5284206 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17143957856 RX 365118 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2040462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 204971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15991605859 RX 4966625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15931408181 RX 363507 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2300411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17226243904 RX 5286246 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17158066118 RX 365247 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2040852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15995123367 RX 4968473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15934910567 RX 363630 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2301913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17240303713 RX 5288286 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17172093017 RX 365373 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2041238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 15998603350 RX 4970321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15938376020 RX 363750 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2303418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17254361092 RX 5290350 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17186117481 RX 365502 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2041625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16002090402 RX 4972193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15941845987 RX 363873 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2304928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17268504877 RX 5292390 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17200228161 RX 365631 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2042011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16005573457 RX 4974017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15945310862 RX 363996 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2306427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17282644363 RX 5294430 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17214334582 RX 365757 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2042397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16009031295 RX 4975889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15948755045 RX 364119 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2307929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17296719002 RX 5296494 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17228375786 RX 365886 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2042782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16012458970 RX 4977785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15952167837 RX 364245 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2309432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17310775163 RX 5298534 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17242399044 RX 366015 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2043172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16015956210 RX 4979657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15955647441 RX 364365 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2310933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17324857115 RX 5300574 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17256448039 RX 366141 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2043560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16019467333 RX 4981601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15959143497 RX 364491 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2312427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 218951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17338832948 RX 5302638 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17270391155 RX 366270 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2043947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16022946795 RX 4983497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15962607441 RX 364614 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2313930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17352843605 RX 5304678 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17284368993 RX 366399 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2044332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16026346504 RX 4985345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15965990140 RX 364737 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2315430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17366895476 RX 5306718 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17298387972 RX 366525 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2044718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16029930289 RX 4987217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15969563392 RX 364860 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2316928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17380948992 RX 5308782 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17312408115 RX 366654 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2045106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16033426041 RX 4989137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15973043735 RX 364986 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2318423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17394934041 RX 5310822 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17326360426 RX 366783 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2045494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 205988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16036983986 RX 4991033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15976584803 RX 365112 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2319923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17408973240 RX 5312862 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17340366766 RX 366909 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2045883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16040468606 RX 4992953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15980051953 RX 365238 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2321421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17423042196 RX 5314926 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17354402800 RX 367038 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2046269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16043965029 RX 4994801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15983532327 RX 365358 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2322915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17437004973 RX 5316966 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17368332882 RX 367167 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2046655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16047452182 RX 4996721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15987003034 RX 365484 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2324411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17450941959 RX 5319006 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17382237229 RX 367293 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2047040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16050886024 RX 4998545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15990418919 RX 365604 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2325912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17464975126 RX 5321070 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17396237055 RX 367422 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2047431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16054496517 RX 5000417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15994015220 RX 365727 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2327408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17478972145 RX 5323110 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17410201300 RX 367551 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2047817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16058027119 RX 5002241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 15997532598 RX 365847 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2328906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17492962573 RX 5325150 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17424158975 RX 367677 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2048203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16061533364 RX 5004065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16001021411 RX 365970 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2330409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 219975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17506994095 RX 5327214 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17438157643 RX 367806 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2048589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16065035794 RX 5005913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16004507546 RX 366093 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2331908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17521081357 RX 5329254 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17452211947 RX 367935 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2048975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16068502307 RX 5007785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16007959489 RX 366219 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2333406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17535090088 RX 5331294 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17466187885 RX 368061 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2049360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16071935838 RX 5009681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16011376710 RX 366342 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2334909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17549137529 RX 5333358 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17480201944 RX 368190 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2049751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16075454543 RX 5011529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16014878325 RX 366465 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2336416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17563243487 RX 5335398 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17494274884 RX 368319 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2050136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 206922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16079060264 RX 5013449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16018471179 RX 366591 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2337921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17577380675 RX 5337438 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17508378995 RX 368445 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2050524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16082588618 RX 5015321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16021984989 RX 366714 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2339428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17591452712 RX 5339502 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17522418085 RX 368574 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2050909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16086321866 RX 5017169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16025709525 RX 366837 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2340595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 2421: ulsch_rounds 220582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 2421: MAC: TX 17602389819 RX 5342608 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17533325633 RX 369878 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2050998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 19 +UE c22c: ulsch_rounds 207126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 16086993628 RX 5019622 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16026373247 RX 367772 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2341314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17605042331 RX 5345323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17535941694 RX 370743 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2051306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE c22c: ulsch_rounds 207205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16088949209 RX 5021995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16028321481 RX 368641 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2342140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17607907400 RX 5347387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17538773165 RX 370872 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2051692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16092656619 RX 5024018 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16032019730 RX 368852 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2342958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17610763465 RX 5349403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17541595273 RX 370998 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2052081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16096407099 RX 5025914 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16035759980 RX 368978 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2343780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 220929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17613578051 RX 5351467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17544374393 RX 371127 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2052468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16100052139 RX 5027834 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16039395978 RX 369101 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2344630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17616400810 RX 5353531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17547160998 RX 371256 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2052853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16103746027 RX 5029730 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16043081233 RX 369224 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3969 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4114 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2345490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17619322507 RX 5355547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17550047868 RX 371382 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2053239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16107475051 RX 5031650 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16046801548 RX 369350 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2346320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17622151652 RX 5357611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17552842324 RX 371511 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2053628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16111192891 RX 5033546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16050509224 RX 369473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4033 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2347189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17625070112 RX 5359675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17555724703 RX 371640 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2054014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16114837243 RX 5035442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16054145037 RX 369596 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4250 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2348016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17627889131 RX 5361691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17558508740 RX 371766 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2054402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16118584843 RX 5037362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16057882417 RX 369722 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3877 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2348851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17630768346 RX 5363755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17561352647 RX 371895 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2054788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 207924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16122320779 RX 5039282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16061609628 RX 369845 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2349670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17633621396 RX 5365819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17564172342 RX 372024 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2055174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16125997963 RX 5041226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16065278203 RX 369971 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4188 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2350496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17636460411 RX 5367835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17566976681 RX 372150 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2055559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16129718155 RX 5043122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16068989705 RX 370094 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3985 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2351320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17639311882 RX 5369899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17569793902 RX 372279 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2055950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16133469435 RX 5045018 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16072729763 RX 370217 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2352155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17642160270 RX 5371963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17572607083 RX 372408 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2056337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16137153643 RX 5046938 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16076404859 RX 370343 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4184 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2352987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17645070130 RX 5373979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17575482603 RX 372534 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2056724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16140837851 RX 5048834 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16080079960 RX 370466 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2353840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 221953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17647994751 RX 5376043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17578371967 RX 372663 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2057109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16144590491 RX 5050778 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16083823842 RX 370589 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4158 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2354678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17650913591 RX 5378107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17581256324 RX 372792 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2057495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16148352347 RX 5052674 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16087576924 RX 370712 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4033 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2355524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17653789506 RX 5380123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17584096241 RX 372918 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2057882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16152030027 RX 5054570 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16091245502 RX 370838 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4144 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2356367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17656656779 RX 5382187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17586928723 RX 373047 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2058271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16155752203 RX 5056514 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16094957010 RX 370961 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4298 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4084 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2357223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17659664683 RX 5384251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17589902005 RX 373176 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2058657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16159494475 RX 5058362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16098690541 RX 371084 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2358044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17662515137 RX 5386267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17592718150 RX 373302 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2059044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16163158907 RX 5060282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16102345900 RX 371207 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4015 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2358883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17665322414 RX 5388331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17595489910 RX 373431 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2059430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16166868731 RX 5062154 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16106047051 RX 371333 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2359722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17668146998 RX 5390395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17598280921 RX 373560 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2059815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 208958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16170582395 RX 5064098 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16109752039 RX 371456 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4029 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4012 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2360544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17671028709 RX 5392411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17601128263 RX 373686 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2060204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16174319627 RX 5065946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16113479070 RX 371579 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2361377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17673854220 RX 5394475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17603919289 RX 373815 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2060591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16177951227 RX 5067866 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16117101665 RX 371702 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2362307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17677219795 RX 5396539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17607247905 RX 373944 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2060979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16181685963 RX 5069786 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16120826207 RX 371828 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4382 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2363146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17680034227 RX 5398555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17610027070 RX 374070 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2061365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16185428427 RX 5071706 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16124559935 RX 371951 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2363988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 222977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17682934263 RX 5400619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17612891190 RX 374199 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2061751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16189105227 RX 5073650 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16128228126 RX 372077 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2364885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17686116717 RX 5402683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17616037931 RX 374328 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2062137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16192769355 RX 5075570 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16131883678 RX 372200 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2365699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17688942890 RX 5404699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17618828932 RX 374454 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2062525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16196491035 RX 5077442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16135595189 RX 372320 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3998 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3959 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2366522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17691775456 RX 5406763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17621627383 RX 374583 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2062911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16200181275 RX 5079362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16139276799 RX 372446 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3985 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2367353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17694649574 RX 5408827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17624467300 RX 374712 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2063301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16203866779 RX 5081282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16142951713 RX 372572 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2368209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17697573559 RX 5410843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17627354115 RX 374838 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2063686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16207599835 RX 5083178 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16146676052 RX 372695 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4284 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2369042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17700478917 RX 5412907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17630225169 RX 374967 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2064072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16211361883 RX 5085074 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16150429327 RX 372818 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3980 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2369851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17703322035 RX 5414971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17633035907 RX 375096 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2064458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16214999707 RX 5086946 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16154058626 RX 372941 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4087 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2370699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17706255180 RX 5416987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17635933642 RX 375222 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2064848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 209990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16218702795 RX 5088842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16157750590 RX 373064 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4254 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2371564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17709231380 RX 5419051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17638874335 RX 375351 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2065234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16222458315 RX 5090738 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16161497346 RX 373187 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4163 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3943 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2372381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17712069718 RX 5421115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17641680176 RX 375480 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2065622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16226175659 RX 5092634 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16165205015 RX 373310 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3963 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2373217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 223916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17714948089 RX 5423131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17644524499 RX 375606 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2066008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16229826539 RX 5094530 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16168847341 RX 373436 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4435 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2374079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17717955144 RX 5425195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17647496369 RX 375735 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2066393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16233579371 RX 5096450 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16172591411 RX 373559 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2374943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17720900481 RX 5427259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17650404533 RX 375864 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2066782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16237349435 RX 5098394 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16176351201 RX 373685 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4193 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4053 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2375764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17723731303 RX 5429275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17653201482 RX 375990 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2067170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16241034139 RX 5100290 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16180026299 RX 373808 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2376591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17726540542 RX 5431339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17655976156 RX 376119 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2067555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16244741275 RX 5102162 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16183724772 RX 373931 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4033 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2377404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17729441229 RX 5433403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17658842709 RX 376248 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2067941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16248503323 RX 5104082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16187478046 RX 374054 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2378244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17732262397 RX 5435419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17661629284 RX 376374 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2068327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16252206619 RX 5106026 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16191172685 RX 374180 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3972 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4234 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2379086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17735179027 RX 5437483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17664512159 RX 376503 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2068713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16255851163 RX 5107898 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16194808687 RX 374303 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2379910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17738038689 RX 5439547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17667337301 RX 376632 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2069101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16259598955 RX 5109818 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16198546254 RX 374429 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2380735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17740852921 RX 5441563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17670116426 RX 376758 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2069488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 210942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16263322139 RX 5111714 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16202260246 RX 374552 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3948 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4280 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2381603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17743826094 RX 5443627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17673052668 RX 376887 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2069877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16266987755 RX 5113658 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16205915802 RX 374678 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4060 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2382438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17746694285 RX 5445691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17675885175 RX 377016 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2070262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16270688363 RX 5115530 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16209607752 RX 374801 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2383268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 224940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17749555415 RX 5447707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17678711799 RX 377142 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2070648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16274456747 RX 5117426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16213367350 RX 374927 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4079 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2384103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17752407366 RX 5449771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17681528955 RX 377271 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2071034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16278127211 RX 5119322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16217029216 RX 375050 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3976 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2384904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17755210640 RX 5451835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17684299679 RX 377400 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2071423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16281812411 RX 5121290 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16220704318 RX 375176 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4180 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2385806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17758528949 RX 5453851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17687581287 RX 377526 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2071809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16285533099 RX 5123210 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16224415816 RX 375299 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5169 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2386661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17761449815 RX 5455915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17690467196 RX 377655 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2072199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16289205547 RX 5125106 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16228077697 RX 375422 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4064 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2387533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17764638053 RX 5457979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17693619825 RX 377784 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2072585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16292856619 RX 5126978 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16231720211 RX 375545 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2388354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17767418627 RX 5459995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17696364854 RX 377910 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2072970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16296596395 RX 5128874 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16235451263 RX 375671 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2389207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17770345087 RX 5462059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17699254678 RX 378039 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2073356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16300358443 RX 5130770 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16239204534 RX 375794 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2390042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17773231927 RX 5464123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17702106992 RX 378168 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2073747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16304038107 RX 5132690 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16242873117 RX 375920 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4162 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4142 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2390876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17776146386 RX 5466139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17704986903 RX 378294 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2074133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16307741211 RX 5134538 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16246567564 RX 376043 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2391730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17779067494 RX 5468203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17707872787 RX 378423 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2074521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 211973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16311469419 RX 5136458 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16250285590 RX 376166 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4151 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2392563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17781951679 RX 5470267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17710721656 RX 378552 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2074907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16315153131 RX 5138354 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16253960679 RX 376289 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2393429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 225964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17784879037 RX 5472283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17713611946 RX 378678 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2075293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16318849707 RX 5140250 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16257648608 RX 376412 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4287 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3955 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2394277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17787751576 RX 5474347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17716448884 RX 378807 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2075680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16322583947 RX 5142194 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16261373139 RX 376538 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2395110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17790600073 RX 5476411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17719262145 RX 378936 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2076069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16326354011 RX 5144042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16265132932 RX 376661 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2395929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17793392370 RX 5478427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17722018534 RX 379062 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2076456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16330018635 RX 5145914 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16268788486 RX 376784 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3942 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3985 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2396744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17796252890 RX 5480491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17724844097 RX 379191 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2076841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16333751691 RX 5147786 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16272512828 RX 376907 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4917 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2397645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17799475236 RX 5482555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17728029420 RX 379320 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2077227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16337513739 RX 5149682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16276266102 RX 377030 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2398483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17802359081 RX 5484571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17730877738 RX 379446 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2077613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16341203979 RX 5151554 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16279947712 RX 377153 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2399311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17805175329 RX 5486635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17733658821 RX 379575 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2078004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16344883451 RX 5153522 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16283616107 RX 377279 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3944 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5314 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2400222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17808534897 RX 5488699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17736980473 RX 379704 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2078390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16348610667 RX 5155394 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16287334128 RX 377402 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4099 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2401070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17811393108 RX 5490715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17739802606 RX 379830 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2078776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16352340075 RX 5157290 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16291054822 RX 377528 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2401893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17814249538 RX 5492779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17742623262 RX 379959 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2079162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16355991147 RX 5159162 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16294697342 RX 377654 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3956 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2402728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17817115974 RX 5494843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17745452825 RX 380088 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2079547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 212999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16359717675 RX 5161082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16298415164 RX 377777 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2403586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 226988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17820006094 RX 5496859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17748309144 RX 380214 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2079933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16363473195 RX 5162978 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16302161918 RX 377903 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2404436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17822917722 RX 5498923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17751184138 RX 380343 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2080323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16367152363 RX 5164898 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16305830501 RX 378026 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4225 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2405260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17825785262 RX 5500987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17754018653 RX 380472 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2080709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16370836075 RX 5166818 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16309505594 RX 378152 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4012 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2406094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17828606195 RX 5503003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17756803691 RX 380598 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2081098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16374558251 RX 5168690 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16313217105 RX 378272 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4127 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2406927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17831469139 RX 5505067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17759633234 RX 380727 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2081484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16378254827 RX 5170634 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16316905036 RX 378398 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2407751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17834377802 RX 5507131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17762507222 RX 380856 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2081870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16381873259 RX 5172530 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16320514982 RX 378521 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2408582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17837235605 RX 5509147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17765329340 RX 380982 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2082256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16385613531 RX 5174426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16324246030 RX 378644 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3973 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2409412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17840060348 RX 5511211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17768118884 RX 381111 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2082645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16389370539 RX 5176346 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16327992793 RX 378770 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4239 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2410281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17843028866 RX 5513275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17771052182 RX 381240 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2083033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16393041995 RX 5178242 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16331654668 RX 378893 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4170 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2411105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17845936958 RX 5515291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17773927682 RX 381366 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2083420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16396756651 RX 5180186 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16335359651 RX 379019 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4133 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3967 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2411938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17848810897 RX 5517355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17776767594 RX 381495 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2083806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16400499115 RX 5182082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16339093376 RX 379145 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4149 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2412786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 227927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17851752056 RX 5519419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17779672724 RX 381624 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2084192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 213954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16404169579 RX 5183978 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16342755246 RX 379271 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4068 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2413582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17854546148 RX 5521435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17782433539 RX 381750 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2084579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16407840347 RX 5185898 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16346416932 RX 379394 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2414415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17857408073 RX 5523499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17785259077 RX 381879 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2084967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16411601195 RX 5187770 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16350167529 RX 379517 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4002 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2415235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17860232345 RX 5525563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17788049607 RX 382008 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2085356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16415332091 RX 5189714 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16353888232 RX 379643 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4000 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2416061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17863114659 RX 5527579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17790898381 RX 382134 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2085742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16419021947 RX 5191634 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16357569452 RX 379769 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2416891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17865960334 RX 5529643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17793707642 RX 382263 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2086127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16422755003 RX 5193530 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16361293792 RX 379892 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4019 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2417733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17868882115 RX 5531707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17796595058 RX 382392 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2086513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16426517051 RX 5195402 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16365047064 RX 380015 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4009 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2418567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17871772434 RX 5533723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17799450771 RX 382518 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2086905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16430203547 RX 5197322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16368721972 RX 380141 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4235 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2419400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17874636143 RX 5535787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17802279288 RX 382647 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2087291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16433893403 RX 5199218 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16372403198 RX 380267 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2420242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17877455600 RX 5537851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17805062884 RX 382776 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2087676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16437633179 RX 5201138 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16376134244 RX 380390 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3929 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4073 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2421089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17880303555 RX 5539867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17807876110 RX 382902 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2088062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16441356059 RX 5203058 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16379848429 RX 380516 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2421927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17883199306 RX 5541931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17810736735 RX 383031 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2088448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16445006747 RX 5204906 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16383490564 RX 380639 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2422761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 228951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17886134989 RX 5543995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17813638896 RX 383160 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2088833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16448733467 RX 5206802 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16387208584 RX 380765 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4171 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2423608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17889048453 RX 5546011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17816517380 RX 383286 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2089223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 214984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16452484251 RX 5208722 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16390948636 RX 380888 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4103 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4167 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2424460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17891962175 RX 5548075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17819395408 RX 383415 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2089609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16456181019 RX 5210666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16394636757 RX 381014 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4055 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2425302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17894967470 RX 5550139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17822366167 RX 383544 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2089998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16459866219 RX 5212562 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16398311859 RX 381137 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4374 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2426202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17898198801 RX 5552155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17825560362 RX 383670 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2090383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16463586219 RX 5214506 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16402023171 RX 381263 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4940 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2427039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17901027053 RX 5554219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17828354402 RX 383799 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2090769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16467269931 RX 5216378 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16405698259 RX 381386 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2427897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17903987854 RX 5556283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17831279744 RX 383928 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2091156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16470928027 RX 5218346 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16409347291 RX 381512 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2428764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17907018303 RX 5558299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17834274280 RX 384054 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2091544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16474636651 RX 5220218 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16413045770 RX 381632 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3986 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2429565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17909818323 RX 5560363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17837041559 RX 384183 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2091933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16478386747 RX 5222195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16416785633 RX 381814 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3923 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4126 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2430405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17912707066 RX 5562427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17839894333 RX 384312 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2092319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16482057211 RX 5224115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16420447506 RX 381940 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2431232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17915513239 RX 5564443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17842663580 RX 384438 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2092704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16485757819 RX 5226011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16424139465 RX 382066 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2432070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17918368146 RX 5566507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17845484216 RX 384567 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2093090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16489506619 RX 5227907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16427879515 RX 382189 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4079 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4024 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2432922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 229975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17921231740 RX 5568571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17848311851 RX 384696 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2093480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16493205179 RX 5229827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16431567451 RX 382312 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2433748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17924101942 RX 5570587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17851147768 RX 384822 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2093867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 215943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16496856747 RX 5231747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16435209970 RX 382438 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2434628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17927255669 RX 5572651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17854264819 RX 384951 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2094255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16500598011 RX 5233643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16438941020 RX 382561 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4053 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2435466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17930119842 RX 5574715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17857094407 RX 385080 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2094641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16504359867 RX 5235563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16442694099 RX 382684 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4005 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4060 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2436309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17933032637 RX 5576731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17859972871 RX 385206 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2095027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16508017467 RX 5237459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16446343128 RX 382807 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4301 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2437143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17936004181 RX 5578795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17862910625 RX 385335 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2095412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16511744187 RX 5239355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16450061143 RX 382930 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2437985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17938921208 RX 5580859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17865793525 RX 385464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2095803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16515502187 RX 5241251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16453807910 RX 383053 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2438810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17941716735 RX 5582875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17868556408 RX 385590 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2096189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16519224875 RX 5243123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16457521903 RX 383176 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3952 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2439616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17944514197 RX 5584939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17871320703 RX 385719 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2096576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16522902363 RX 5245043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16461190288 RX 383302 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3933 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2440452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17947371070 RX 5587003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17874142846 RX 385848 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2096961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16526642139 RX 5246963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16464921332 RX 383428 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2441293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17950237997 RX 5589019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17876974922 RX 385974 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2097347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16530384411 RX 5248859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16468654872 RX 383551 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4012 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4077 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2442121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17953111990 RX 5591083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17879814794 RX 386103 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2097734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16534029259 RX 5250803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16472290682 RX 383677 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4085 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2442961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 230999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17955979460 RX 5593147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17882647787 RX 386232 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2098123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16537744907 RX 5252699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16475995686 RX 383800 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2443798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17958781900 RX 5595163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17885415076 RX 386358 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2098509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16541520011 RX 5254643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16479761986 RX 383926 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2444647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17961692277 RX 5597227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17888290591 RX 386487 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2098897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 216975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16545178603 RX 5256515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16483411019 RX 384049 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4128 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4131 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2445539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17964862464 RX 5599291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17891423478 RX 386616 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2099282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16548885547 RX 5258483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16487109294 RX 384175 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2446384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17967765278 RX 5601307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17894290467 RX 386742 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2099668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16552608043 RX 5260355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16490823103 RX 384298 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2447237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17970632476 RX 5603371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17897123019 RX 386871 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2100057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16556312827 RX 5262275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16494517750 RX 384424 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4108 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2448068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17973518786 RX 5605435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17899974311 RX 387000 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2100443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16559950651 RX 5264195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16498147046 RX 384550 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2448901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17976387889 RX 5607451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17902808766 RX 387126 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2100832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16563672635 RX 5266139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16501858358 RX 384673 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4146 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2449735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17979292661 RX 5609515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17905679840 RX 387255 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2101218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16567408571 RX 5268059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16505585570 RX 384799 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3969 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2450573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17982208266 RX 5611579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17908558259 RX 387384 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2101604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16571079227 RX 5269931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16509247635 RX 384922 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4227 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2451400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17985048799 RX 5613595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17911364085 RX 387510 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2101989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16574786363 RX 5271851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16512946113 RX 385045 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4139 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2452253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 231937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17987979260 RX 5615659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17914258876 RX 387639 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2102378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16578523595 RX 5273795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16516673136 RX 385171 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4081 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2453110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 17990848010 RX 5617723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17917091423 RX 387768 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2102764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE c22c: MAC: TX 16582194059 RX 5275667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16520335006 RX 385294 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2453216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 19 +UE 2421: ulsch_rounds 232063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 17991132829 RX 5620145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17917364829 RX 388675 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2103153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 16585892315 RX 5277783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16524023126 RX 385565 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 992 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2453229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 232076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 17991134976 RX 5621653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17917364829 RX 388675 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2103538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 217943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16589625371 RX 5279831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16527747462 RX 385842 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2453242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 232089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 17991136539 RX 5623161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17917364829 RX 388675 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2103924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: MAC: TX 16593354779 RX 5281703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16531468160 RX 385965 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2453810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE 2421: ulsch_rounds 232151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 17992696515 RX 5625494 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17918918302 RX 389517 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2104128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16594945693 RX 5285585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16533045567 RX 387903 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2455309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 2421: ulsch_rounds 232237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18001677887 RX 5627558 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17927876823 RX 389646 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2104518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16598463054 RX 5287433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16536546879 RX 388026 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2456804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18015590539 RX 5629598 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17941756874 RX 389775 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2104905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16602096716 RX 5289377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16540168442 RX 388149 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2458303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18029644969 RX 5631638 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17955778432 RX 389901 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2105292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16605551528 RX 5291201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16543607910 RX 388272 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2459799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18043622212 RX 5633702 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17969722945 RX 390030 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2105678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16609009258 RX 5293097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16547048932 RX 388398 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2461298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18057616609 RX 5635742 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17983684571 RX 390159 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2106063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16612484509 RX 5294921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16550507707 RX 388518 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2462800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18071640470 RX 5637782 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 17997675125 RX 390285 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2106451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16616007979 RX 5296865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16554013996 RX 388644 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2464296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18085709105 RX 5639846 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18011710859 RX 390414 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2106839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16619557825 RX 5298665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16557550084 RX 388761 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2465793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18099694283 RX 5641886 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18025663287 RX 390543 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2107217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16622986968 RX 5300537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16560963495 RX 388881 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2467296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 232919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18113745005 RX 5643926 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18039681123 RX 390669 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2107604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16626579423 RX 5302457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16564541664 RX 389010 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2468800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18127832720 RX 5645990 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18053735870 RX 390798 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2107989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16630072002 RX 5304353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16568017199 RX 389136 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2470306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18141960629 RX 5648030 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18067830710 RX 390927 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2108375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 218975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16633698150 RX 5306297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16571633758 RX 389259 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2471814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18156026442 RX 5650070 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18081863102 RX 391053 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2108763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16637439414 RX 5308169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16575364808 RX 389382 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 294 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2473321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18170190960 RX 5652134 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18095994476 RX 391182 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2109150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16641010584 RX 5310041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16578922649 RX 389505 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2474823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18184322961 RX 5654174 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18110093417 RX 391311 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2109539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16644473894 RX 5311889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16582369053 RX 389628 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2476327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18198402675 RX 5656214 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18124140172 RX 391437 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2109923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16647933610 RX 5313785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16585813734 RX 389751 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2477831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18212469141 RX 5658278 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18138173701 RX 391566 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2110307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16651482620 RX 5315657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16589347886 RX 389874 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2479329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18226578546 RX 5660318 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18152250116 RX 391695 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2110692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16654985384 RX 5317553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16592837698 RX 389997 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2480831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18240607489 RX 5662358 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18166245716 RX 391821 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2111080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16658472123 RX 5319425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16596307441 RX 390123 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2482330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18254570527 RX 5664422 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18180176042 RX 391950 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2111465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16662066552 RX 5321297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16599889159 RX 390246 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2483834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18268670914 RX 5666462 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18194243424 RX 392079 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2111854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16665592350 RX 5323193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16603399772 RX 390375 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 491 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2485329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 233943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18282735580 RX 5668502 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18208275186 RX 392205 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2112240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16669243422 RX 5325113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16607042289 RX 390501 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2486827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18296719480 RX 5670566 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18222226336 RX 392334 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2112625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16672874057 RX 5326985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16610661506 RX 390624 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2488326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18310744682 RX 5672606 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18236218246 RX 392463 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2113012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16676440982 RX 5328905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16614214140 RX 390747 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2489822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18324785924 RX 5674646 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18250226631 RX 392589 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2113402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 219995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16679894851 RX 5330777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16617650776 RX 390870 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2491320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18338776352 RX 5676710 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18264184303 RX 392718 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2113787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16683340751 RX 5332649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16621079293 RX 390993 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2492820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18352743551 RX 5678750 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18278118781 RX 392847 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2114175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16686852237 RX 5334521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16624572362 RX 391116 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2494316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18366799322 RX 5680790 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18292141669 RX 392973 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2114561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16690327549 RX 5336369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16628031690 RX 391239 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2495810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18380794931 RX 5682854 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18306104517 RX 393102 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2114947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16693802677 RX 5338241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16631491675 RX 391362 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2497309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18394759743 RX 5684894 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18320036134 RX 393231 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2115335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16697323841 RX 5340089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16634994542 RX 391482 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2498809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18408772638 RX 5686934 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18334016217 RX 393357 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2115722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16700850014 RX 5341961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16638503101 RX 391605 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2500306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18422819130 RX 5688998 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18348029849 RX 393486 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2116108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16704341657 RX 5343785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16641979955 RX 391725 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2501804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18436814805 RX 5691038 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18361992759 RX 393615 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2116493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16707889606 RX 5345681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16645512639 RX 391851 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2503304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 234967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18450782196 RX 5693078 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18375927425 RX 393741 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2116879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16711640600 RX 5347577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16649254413 RX 391974 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 453 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2504807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18464917782 RX 5695142 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18390029944 RX 393870 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2117265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16715190779 RX 5349473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16652793360 RX 392100 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2506311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18478975528 RX 5697182 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18404054291 RX 393999 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2117654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16718791467 RX 5351345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16656380368 RX 392220 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 174 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2507819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18493077646 RX 5699222 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18418123402 RX 394125 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2118040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 220931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16722251235 RX 5353241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16659823364 RX 392343 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2509329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18507241207 RX 5701286 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18432253812 RX 394254 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2118429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16725755855 RX 5355113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16663310845 RX 392466 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2510829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18521390998 RX 5703326 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18446370512 RX 394383 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2118815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16729227508 RX 5357033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16666769086 RX 392586 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2512334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18535467961 RX 5705366 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18460414517 RX 394509 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2119200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16732721799 RX 5358833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16670246823 RX 392709 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2513838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18549534427 RX 5707430 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18474448049 RX 394638 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2119586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16736282025 RX 5360777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16673793709 RX 392832 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2515338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18563609102 RX 5709470 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18488489319 RX 394767 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2119976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16739867058 RX 5362625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16677364718 RX 392955 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2516840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18577682159 RX 5711510 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18502529447 RX 394893 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2120360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16743316474 RX 5364545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16680799544 RX 393081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2518342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18591694991 RX 5713574 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18516509463 RX 395022 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2120749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16746935698 RX 5366465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16684405325 RX 393204 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1659 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2519843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18605783471 RX 5715614 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18530564981 RX 395151 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2121135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16750606354 RX 5368361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16688067389 RX 393327 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2521339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 235991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18619832906 RX 5717654 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18544581546 RX 395277 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2121521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16754289874 RX 5370209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16691742289 RX 393450 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2522840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18633851352 RX 5719718 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18558566672 RX 395406 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2121907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16758036674 RX 5372105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16695479851 RX 393570 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 541 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2524341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18647887608 RX 5721758 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18572570065 RX 395535 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2122297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16761787650 RX 5374001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16699220106 RX 393696 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2525837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18661941906 RX 5723798 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18586591477 RX 395661 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2122685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16765383657 RX 5375873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16702805399 RX 393819 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2527332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18675901035 RX 5725862 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18600517923 RX 395790 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2123071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 221953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16768837109 RX 5377769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16706241705 RX 393942 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2528831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18689884041 RX 5727902 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18614468189 RX 395919 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2123457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16772316829 RX 5379665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16709704499 RX 394068 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2530332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18703939881 RX 5729942 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18628491124 RX 396045 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2123843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16775853643 RX 5381537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16713227954 RX 394191 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2531822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18717935725 RX 5732006 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18642453743 RX 396174 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2124232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16779290263 RX 5383385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16716649760 RX 394311 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2533322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18731927755 RX 5734046 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18656413002 RX 396303 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2124619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16782847706 RX 5385209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16720191330 RX 394431 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2534822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18745947370 RX 5736086 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18670399793 RX 396429 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2125006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16786296221 RX 5387105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16723622361 RX 394554 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2536319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18759993862 RX 5738150 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18684413418 RX 396558 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2125391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16789795968 RX 5389001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16727107191 RX 394677 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2537815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 236931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18773949151 RX 5740190 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18698336029 RX 396687 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2125776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16793409964 RX 5390873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16730709989 RX 394800 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2539318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18787954561 RX 5742230 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18712308641 RX 396813 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2126162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16796960929 RX 5392769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16734244871 RX 394926 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 437 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2540819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18801980816 RX 5744294 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18726301569 RX 396942 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2126554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16800622307 RX 5394665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16737893030 RX 395052 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2542319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18816072047 RX 5746334 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18740359834 RX 397071 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2126940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16804060241 RX 5396465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16741316977 RX 395172 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2543826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18830137556 RX 5748374 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18754392406 RX 397197 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2127325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16807527492 RX 5398385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16744766601 RX 395298 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2545336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18844310700 RX 5750438 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18768531890 RX 397326 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2127711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16810976522 RX 5400209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16748198342 RX 395418 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2546839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18858459534 RX 5752478 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18782647637 RX 397455 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2128097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 222967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16814526421 RX 5402081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16751734766 RX 395544 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2548347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18872579763 RX 5754518 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18796734811 RX 397581 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2128482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16818009420 RX 5403977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16755200842 RX 395670 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2549849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18886609987 RX 5756582 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18810731691 RX 397710 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2128870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16821624249 RX 5405849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16758800475 RX 395790 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2551350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18900711715 RX 5758622 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18824800424 RX 397839 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2129256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16825264535 RX 5407673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16762431801 RX 395910 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2552851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18914746690 RX 5760662 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18838802539 RX 397965 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2129645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16828960599 RX 5409569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16766117244 RX 396036 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2554358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18928833064 RX 5762726 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18852855936 RX 398094 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2130031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16832683479 RX 5411489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16769831423 RX 396159 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 338 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 325 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2555860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 237955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18942958345 RX 5764766 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18866948175 RX 398223 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2130417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16836340887 RX 5413433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16773480264 RX 396285 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2557355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18956993810 RX 5766806 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18880950311 RX 398349 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2130804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16840005127 RX 5415305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16777135433 RX 396408 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2558856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18971022257 RX 5768870 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18894945913 RX 398478 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2131192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16843536364 RX 5417201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16780649323 RX 396531 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2560361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18985099220 RX 5770910 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18908989916 RX 398607 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2131582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16847054846 RX 5419073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16784149042 RX 396657 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2561856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 18999118766 RX 5772950 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18922976646 RX 398733 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2131968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16850516222 RX 5420993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16787596142 RX 396780 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2563355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19013113163 RX 5775014 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18936938282 RX 398862 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2132353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16854008303 RX 5422889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16791071615 RX 396903 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2564854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19027089257 RX 5777054 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18950881641 RX 398991 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2132738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16857505554 RX 5424761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16794552874 RX 397026 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2566355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19041194013 RX 5779094 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18964952930 RX 399117 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2133127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 223989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16861001035 RX 5426609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16798032130 RX 397146 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2567847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19055168820 RX 5781158 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18978895014 RX 399246 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2133512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16864478340 RX 5428457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16801494576 RX 397266 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2569344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19069174863 RX 5783198 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 18992868274 RX 399375 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2133900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16867997653 RX 5430353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16804997200 RX 397389 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2570847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19083225585 RX 5785238 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19006886100 RX 399501 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2134286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16871493252 RX 5432273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16808475408 RX 397515 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2572343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19097281356 RX 5787302 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19020908979 RX 399630 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2134672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16874893876 RX 5434121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16811861452 RX 397638 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2573840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 238979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19111207782 RX 5789342 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19034802774 RX 399759 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2135057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16878343692 RX 5436017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16815296249 RX 397764 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2575340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19125165145 RX 5791382 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19048726980 RX 399885 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2135449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16881937668 RX 5437865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16818874291 RX 397887 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2576842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19139244538 RX 5793446 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19062773420 RX 400014 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2135835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16885460748 RX 5439809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16822383710 RX 398013 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2578337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19153224532 RX 5795486 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19076720688 RX 400143 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2136221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16888964662 RX 5441705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16825873049 RX 398139 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2579841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19167284854 RX 5797526 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19090748092 RX 400269 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2136606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16892443521 RX 5443577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16829335136 RX 398262 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2581348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19181429788 RX 5799590 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19104859926 RX 400398 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2136992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16895897829 RX 5445425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16832772168 RX 398385 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2582851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19195574957 RX 5801630 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19118971520 RX 400527 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2137379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16899345831 RX 5447321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16836205577 RX 398511 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2584357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19209661136 RX 5803670 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19133024724 RX 400653 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2137766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 224927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16902847127 RX 5449121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16839690560 RX 398631 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2585862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19223726708 RX 5805734 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19147057357 RX 400782 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2138153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16906326526 RX 5451041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16843151601 RX 398757 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2587363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19237828628 RX 5807774 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19161126284 RX 400911 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2138541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16909828001 RX 5452937 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16846638810 RX 398880 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2588867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19251901622 RX 5809814 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19175166337 RX 401037 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2138926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16913340788 RX 5454785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16850137680 RX 399003 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2590371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 239917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19265943449 RX 5811878 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19189175278 RX 401166 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2139312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16916836879 RX 5456681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16853618025 RX 399126 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2591879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19280108655 RX 5813918 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19203306840 RX 401295 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2139701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16920464081 RX 5458577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16857233851 RX 399252 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2593376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19294220619 RX 5815958 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19217385805 RX 401421 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2140088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16923954614 RX 5460497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16860711745 RX 399378 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2594877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19308236202 RX 5818022 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19231368565 RX 401550 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2140476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16927442112 RX 5462345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16864181691 RX 399501 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2596378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19322277897 RX 5820062 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19245377385 RX 401679 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2140861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16930947105 RX 5464241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16867671262 RX 399627 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2597875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19336324581 RX 5822102 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19259391190 RX 401805 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2141247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16934449421 RX 5466113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16871158309 RX 399750 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2599374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19350312450 RX 5824166 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19273346312 RX 401934 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2141632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16937928301 RX 5468081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16874621698 RX 399876 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2600877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19364307640 RX 5826206 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19287308253 RX 402063 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2142022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16941376523 RX 5469977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16878052375 RX 400002 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2602375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19378384405 RX 5828246 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19301352086 RX 402189 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2142409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16944849064 RX 5471801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16881509785 RX 400122 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2603868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19392401965 RX 5830310 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19315336857 RX 402318 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2142798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 225948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16948388739 RX 5473649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16885034517 RX 400245 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2605365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19406375368 RX 5832350 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19329277549 RX 402447 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2143182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16951921310 RX 5475521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16888552726 RX 400368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2606862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19420422052 RX 5834390 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19343291369 RX 402573 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2143568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16955379850 RX 5477441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16891996296 RX 400494 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2608358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 240941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19434443710 RX 5836454 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19357280223 RX 402702 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2143954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16958874628 RX 5479265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16895477502 RX 400614 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2609855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19448387528 RX 5838494 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19371190890 RX 402831 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2144344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16962364675 RX 5481137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16898948179 RX 400737 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2611355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19462328423 RX 5840534 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19385099123 RX 402957 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2144730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16965990760 RX 5483009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16902561363 RX 400860 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2612855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19476406406 RX 5842598 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19399144169 RX 403086 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2145117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16969497636 RX 5484905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16906054469 RX 400983 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2614351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19490396897 RX 5844638 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19413101904 RX 403215 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2145503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16972969212 RX 5486777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16909510867 RX 401109 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2615849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19504367741 RX 5846678 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19427040027 RX 403341 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2145888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16976406661 RX 5488697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16912931621 RX 401235 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2617355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 2421: MAC: TX 19518479121 RX 5848742 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19441117883 RX 403470 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2146244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE c22c: MAC: TX 16979544416 RX 5490714 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16916054608 RX 401554 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2618148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: MAC: TX 19525135269 RX 5852515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19447743478 RX 405371 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2146316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 19 +UE c22c: ulsch_rounds 226705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 16979774743 RX 5493626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16916275779 RX 402958 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2618985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19528044048 RX 5854579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19450617922 RX 405500 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2146702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 16982970816 RX 5495410 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16919463723 RX 403145 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2619819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19530866436 RX 5856643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19453405458 RX 405629 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2147089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 16986720304 RX 5497330 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16923203967 RX 403268 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3969 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2620686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19533733787 RX 5858659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19456237940 RX 405755 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2147475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 226940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 16990404016 RX 5499274 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16926879056 RX 403394 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4138 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2621516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19536597369 RX 5860723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19459066542 RX 405884 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2147860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 16994104624 RX 5501170 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16930571015 RX 403517 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3978 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2622343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 241984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19539402868 RX 5862787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19461838232 RX 406013 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2148249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 16997835328 RX 5503042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16934291526 RX 403637 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2623172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19542199405 RX 5864803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19464599087 RX 406139 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2148635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17001492736 RX 5504938 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16937940364 RX 403763 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4170 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2624008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19545047629 RX 5866867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19467412283 RX 406268 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2149025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17005165376 RX 5506834 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16941602437 RX 403889 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2624846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19547903644 RX 5868931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19470233475 RX 406397 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2149410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17008885376 RX 5508730 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16945313749 RX 404012 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4036 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4060 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2625699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19550822975 RX 5870947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19473116420 RX 406523 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2149796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17012621312 RX 5510626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16949040967 RX 404132 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4100 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2626526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19553652357 RX 5873011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19475910370 RX 406652 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2150182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17016278912 RX 5512546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16952690001 RX 404258 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2627347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19556479291 RX 5875075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19478701376 RX 406781 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2150570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17019987536 RX 5514442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16956388480 RX 404381 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3973 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2628197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19559357160 RX 5877091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19481542800 RX 406907 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2150956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17023743056 RX 5516386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16960135232 RX 404507 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3937 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2629031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19562248343 RX 5879155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19484397502 RX 407036 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2151345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17027428064 RX 5518258 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16963810145 RX 404630 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4278 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2629874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19565152807 RX 5881219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19487265552 RX 407165 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2151731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17031098720 RX 5520226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16967472205 RX 404756 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2630720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19567987991 RX 5883235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19490065465 RX 407291 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2152116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17034845024 RX 5522122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16971209767 RX 404879 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4111 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2631556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 242922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19570865379 RX 5885299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19492908386 RX 407420 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2152503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 227971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17038581456 RX 5524018 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16974936982 RX 405002 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4069 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2632396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19573768937 RX 5887363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19495774954 RX 407549 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2152894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17042241344 RX 5525962 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16978585838 RX 405128 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4079 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2633243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19576653051 RX 5889379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19498623773 RX 407675 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2153279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17045974592 RX 5527834 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16982310375 RX 405254 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2634085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19579522444 RX 5891443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19501457742 RX 407804 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2153666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17049737136 RX 5529778 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16986063645 RX 405377 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4070 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2634933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19582360335 RX 5893507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19504259157 RX 407933 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2154052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17053446768 RX 5531674 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16989764604 RX 405500 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2635773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19585271778 RX 5895523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19507133150 RX 408059 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2154438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17057137008 RX 5533546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16993446209 RX 405623 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4064 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2636589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19588091040 RX 5897587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19509916696 RX 408188 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2154826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17060891328 RX 5535490 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 16997190291 RX 405746 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3893 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2637413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19590893295 RX 5899651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19512683950 RX 408317 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2155214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17064608672 RX 5537410 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17000897964 RX 405872 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4085 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2638279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19593864926 RX 5901667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19515618189 RX 408443 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2155601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17068266576 RX 5539306 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17004546811 RX 405998 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4723 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2639149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19596936548 RX 5903731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19518654211 RX 408572 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2155986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17071973712 RX 5541202 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17008245283 RX 406121 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4189 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2640022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19599813204 RX 5905795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19521494118 RX 408701 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2156372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17075755344 RX 5543122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17012018096 RX 406244 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3939 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2640866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19602700029 RX 5907811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19524345926 RX 408827 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2156758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17079399696 RX 5545042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17015653908 RX 406370 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2641697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 243946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19605564497 RX 5909875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19527174988 RX 408956 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2157146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 228927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17083108320 RX 5546938 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17019352387 RX 406493 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4168 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2642531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19608421270 RX 5911939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19529996105 RX 409085 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2157533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17086844752 RX 5548882 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17023079599 RX 406616 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4058 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2643402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19611332962 RX 5913955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19532871600 RX 409211 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2157922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17090536480 RX 5550778 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17026761209 RX 406739 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4039 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4084 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2644238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244202/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19614216918 RX 5916019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19535720409 RX 409340 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2158308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17094181024 RX 5552650 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17030397212 RX 406862 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4112 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2645081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19617133481 RX 5918083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19538603299 RX 409469 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2158693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17097914272 RX 5554570 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17034121744 RX 406985 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4182 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2645935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19620038678 RX 5920099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19541473852 RX 409595 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2159079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17101630432 RX 5556490 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17037829220 RX 407111 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4045 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2646744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19622810201 RX 5922163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19544210455 RX 409724 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2159468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17105302576 RX 5558386 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17041491287 RX 407234 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2647575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19625643956 RX 5924227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19547008816 RX 409853 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2159853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17109009712 RX 5560282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17045189756 RX 407360 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4046 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2648410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19628504607 RX 5926243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19549833913 RX 409979 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2160243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17112760496 RX 5562202 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17048929816 RX 407480 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2649251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19631327969 RX 5928307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19552620453 RX 410108 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2160629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17116418096 RX 5564074 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17052578852 RX 407603 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3924 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2650080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19634177585 RX 5930371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19555435146 RX 410237 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2161015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17120127920 RX 5565994 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17056280001 RX 407729 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2650919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19637026951 RX 5932387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19558248317 RX 410363 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2161402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17123868688 RX 5567938 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17060011050 RX 407852 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4387 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2651791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 244970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19640084639 RX 5934451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19561269093 RX 410492 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2161791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17127579616 RX 5569858 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17063711822 RX 407978 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4191 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4064 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2652637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19642949139 RX 5936515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19564098626 RX 410621 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2162178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 229960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17131250576 RX 5571754 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17067373698 RX 408101 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2653496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19646010066 RX 5938531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19567123738 RX 410747 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2162564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17134984320 RX 5573650 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17071098231 RX 408224 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2654391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19649300369 RX 5940595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19570378184 RX 410876 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2162950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17138739648 RX 5575522 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17074844794 RX 408350 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5284 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2655241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19652192092 RX 5942659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19573234438 RX 411005 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2163336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17142409920 RX 5577418 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17078506478 RX 408473 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4059 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2656070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19655075060 RX 5944675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19576082231 RX 411131 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2163725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17146140816 RX 5579314 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17082227179 RX 408596 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4054 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2656923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19657964062 RX 5946739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19578935451 RX 411260 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2164112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17149901168 RX 5581210 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17085977781 RX 408719 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4106 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2657772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19660819036 RX 5948803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19581755596 RX 411389 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2164498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17153623664 RX 5583106 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17089691580 RX 408842 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3853 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4119 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2658606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19663697028 RX 5950819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19584598923 RX 411515 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2164884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17157281072 RX 5585026 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17093340416 RX 408968 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2659465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19666570921 RX 5952883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19587437383 RX 411644 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2165269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17161001264 RX 5586898 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17097051920 RX 409091 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2660285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19669396312 RX 5954947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19590228294 RX 411773 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2165655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17164730480 RX 5588842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17100772425 RX 409217 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2661112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19672174517 RX 5956963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19592971931 RX 411899 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2166045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17168442096 RX 5590762 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17104473393 RX 409340 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3844 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2661952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 245994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19675058565 RX 5959027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19595820710 RX 412028 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2166431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17172132144 RX 5592682 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17108154810 RX 409463 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4094 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2662797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19677939292 RX 5961091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19598664542 RX 412157 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2166819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17175873408 RX 5594578 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17111885860 RX 409586 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4089 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2663625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19680819681 RX 5963107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19601509391 RX 412283 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2167205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 230991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17179537536 RX 5596474 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17115541415 RX 409712 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4125 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2664475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19683813653 RX 5965171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19604467798 RX 412412 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2167591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17183214528 RX 5598394 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17119209801 RX 409835 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4315 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4660 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2665366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19686971462 RX 5967235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19607589285 RX 412541 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2167976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17186947776 RX 5600266 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17122934330 RX 409958 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4221 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2666206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19689828768 RX 5969251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19610411403 RX 412667 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2168366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17190685696 RX 5602138 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17126661553 RX 410081 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2667034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19692708446 RX 5971315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19613255240 RX 412796 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2168753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17194317680 RX 5604082 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17130284530 RX 410207 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3956 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4151 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2667882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19695616205 RX 5973379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19616126264 RX 412925 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2169141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17198019584 RX 5605978 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17133976300 RX 410333 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2668709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19698400921 RX 5975395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19618874793 RX 413051 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2169527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17201755136 RX 5607850 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17137703129 RX 410456 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2669562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19701208042 RX 5977459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19621646032 RX 413180 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2169913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17205451904 RX 5609770 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17141391249 RX 410579 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2670385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19704002839 RX 5979523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19624406362 RX 413309 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2170301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17209123360 RX 5611666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17145053124 RX 410702 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3992 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3930 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2671252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 246933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19707020513 RX 5981539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19627388591 RX 413435 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2170689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17212890544 RX 5613586 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17148810040 RX 410828 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2672109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19709964450 RX 5983603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19630296615 RX 413564 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2171078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17216588800 RX 5615482 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17152498176 RX 410951 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3976 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2672947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19712888905 RX 5985667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19633184847 RX 413693 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2171464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17220265984 RX 5617426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17156166748 RX 411077 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4185 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2673812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19715803739 RX 5987683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19636063782 RX 413819 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2171849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 231942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17223992704 RX 5619322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17159884762 RX 411200 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4202 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2674673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19718725948 RX 5989747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19638951208 RX 413948 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2172235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17227748032 RX 5621218 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17163631322 RX 411323 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4160 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2675536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19721675478 RX 5991811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19641863713 RX 414077 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2172626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17231414640 RX 5623138 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17167286881 RX 411449 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4185 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2676368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19724616662 RX 5993827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19644770315 RX 414203 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2173012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17235124464 RX 5625010 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17170988040 RX 411572 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4103 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4147 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2677202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19727529226 RX 5995891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19647648809 RX 414332 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2173398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17238897184 RX 5626930 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17174751478 RX 411695 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3973 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2678053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19730379715 RX 5997955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19650462025 RX 414461 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2173784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17242619872 RX 5628778 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17178465464 RX 411818 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4048 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2678883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19733191542 RX 5999971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19653238231 RX 414587 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2174170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17246297056 RX 5630698 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17182134042 RX 411944 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2679744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19736062585 RX 6002035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19656075159 RX 414716 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2174555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17250023776 RX 5632642 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17185852058 RX 412067 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4061 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4183 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2680603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19738992781 RX 6004099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19658968418 RX 414845 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2174947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17253788608 RX 5634538 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17189605151 RX 412190 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2681439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 247957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19741806662 RX 6006115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19661747538 RX 414971 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2175333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17257419904 RX 5636434 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17193227938 RX 412313 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2682258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19744651607 RX 6008179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19664557815 RX 415100 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2175718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17261146624 RX 5638354 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17196945955 RX 412439 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3981 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4150 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2683111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19747571253 RX 6010243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19667440730 RX 415229 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2176104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17264876032 RX 5640274 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17200666654 RX 412559 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4052 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2683956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19750437435 RX 6012259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19670271750 RX 415355 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2176490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17268579136 RX 5642194 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17204361097 RX 412682 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4100 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2684806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19753364798 RX 6014323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19673163497 RX 415484 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2176876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 232974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17272223296 RX 5644066 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17207996722 RX 412805 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2685637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19756202598 RX 6016387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19675966324 RX 415613 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2177265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17275984640 RX 5645962 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17211747320 RX 412925 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3908 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4064 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2686491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19759071765 RX 6018403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19678798816 RX 415739 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2177653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17279708512 RX 5647906 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17215461505 RX 413051 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2687313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19761878131 RX 6020467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19681570461 RX 415868 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2178041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17283366720 RX 5649754 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17219110158 RX 413171 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2688153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19764804799 RX 6022531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19684460686 RX 415997 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2178426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17287060800 RX 5651626 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17222795602 RX 413294 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4057 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4174 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2689012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19767724386 RX 6024547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19687343631 RX 416123 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2178812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17290783680 RX 5653546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17226509785 RX 413417 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4250 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2689876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19770681998 RX 6026611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19690264592 RX 416252 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2179201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17294442768 RX 5655442 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17230158826 RX 413543 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2690724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19773562622 RX 6028675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19693109406 RX 416381 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2179588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17298139840 RX 5657362 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17233846763 RX 413669 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4022 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2691560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 248981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19776407960 RX 6030691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19695919683 RX 416507 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2179977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17301894464 RX 5659234 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17237590658 RX 413789 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3954 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2692390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19779182691 RX 6032755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19698660276 RX 416636 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2180363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17305623872 RX 5661130 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17241311365 RX 413915 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2693236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19781999228 RX 6034819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19701442405 RX 416765 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2180749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17309281280 RX 5663050 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17244960202 RX 414041 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2694076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19784861419 RX 6036835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19704268453 RX 416891 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2181134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17312994944 RX 5664970 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17248665189 RX 414164 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4057 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2694911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19787733335 RX 6038899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19707104475 RX 417020 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2181523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 233922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17316738896 RX 5666842 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17252398918 RX 414287 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3931 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2695815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19790997213 RX 6040963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19710329236 RX 417149 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2181910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17320436160 RX 5668738 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17256087043 RX 414413 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2696674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19793854638 RX 6042979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19713150363 RX 417275 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2182299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17324127696 RX 5670658 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17259768463 RX 414536 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3974 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2697492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19796670652 RX 6045043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19715932447 RX 417404 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2182684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17327887056 RX 5672554 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17263519056 RX 414659 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4060 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2698348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19799605925 RX 6047107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19718831163 RX 417533 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2183070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17331609936 RX 5674450 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17267233235 RX 414782 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2699191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19802460826 RX 6049123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19721648775 RX 417659 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2183456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17335306704 RX 5676394 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17270921349 RX 414908 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4055 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2700046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19805371826 RX 6051187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19724524315 RX 417788 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2183847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17339036400 RX 5678242 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17274639377 RX 415031 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4139 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2700884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 249920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19808263947 RX 6053251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19727381015 RX 417917 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2184233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17342791920 RX 5680162 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17278386131 RX 415154 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4008 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2701722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19811126656 RX 6055267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19730208550 RX 418043 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2184619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17346469104 RX 5682058 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17282054708 RX 415277 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4429 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2702580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19814117223 RX 6057331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19733164549 RX 418172 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2185005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17350152816 RX 5683978 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17285729798 RX 415400 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4612 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2703456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19817247914 RX 6059395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19736259415 RX 418301 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2185390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17353899120 RX 5685874 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17289467361 RX 415526 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5207 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4166 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2704352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19820574084 RX 6061411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19739548398 RX 418427 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2185779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17357584128 RX 5687770 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17293142267 RX 415649 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4059 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2705192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19823483832 RX 6063475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19742423402 RX 418556 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2186166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17361255280 RX 5689666 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17296804341 RX 415772 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4160 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2706021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19826384680 RX 6065539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19745290506 RX 418685 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2186553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 234954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17364996048 RX 5691586 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17300535395 RX 415898 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4136 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2706874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19829265065 RX 6067555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19748134959 RX 418811 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2186940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17368738816 RX 5693506 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17304268929 RX 416018 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4002 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4113 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2707728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19832165439 RX 6069619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19750998583 RX 418940 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2187326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17372396224 RX 5695426 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17307917770 RX 416144 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4228 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2708592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19835087941 RX 6071683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19753885899 RX 419069 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2187711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17376096832 RX 5697322 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17311609727 RX 416267 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3948 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2709443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19838009466 RX 6073781 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19756771728 RX 419195 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2188100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17379827728 RX 5699218 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17315330428 RX 416390 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4140 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2710263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19840885095 RX 6075845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19759612651 RX 419324 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2188487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17383466048 RX 5701162 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17318959731 RX 416516 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4152 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 5024 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2711149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 250944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19844148560 RX 6077909 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19762840892 RX 419453 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2188876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17387157776 RX 5703034 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17322641341 RX 416636 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4047 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2711992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19847011632 RX 6079925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19765669394 RX 419579 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2189261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17390904080 RX 5704978 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17326378898 RX 416762 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3996 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2712838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19849863312 RX 6081989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19768484082 RX 419708 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2189647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17394626960 RX 5706850 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17330093077 RX 416885 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4132 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4142 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2713677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19852801882 RX 6084053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19771389167 RX 419837 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2190033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17398304144 RX 5708698 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17333761649 RX 417008 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2714541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19855988304 RX 6086069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19774537285 RX 419963 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2190422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17402026128 RX 5710618 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17337472972 RX 417134 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4924 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2715450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19859285739 RX 6088133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19777796693 RX 420092 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2190809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17405762560 RX 5712538 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17341200186 RX 417257 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4346 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2716298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19862173639 RX 6090197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19780648476 RX 420221 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2191198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17409415120 RX 5714458 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17344842710 RX 417383 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4044 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2717154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19865044932 RX 6092213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19783480958 RX 420347 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2191583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 235984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17413148368 RX 5716306 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17348567244 RX 417506 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4055 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2717996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19867918073 RX 6094277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19786317951 RX 420476 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2191969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17416890640 RX 5718226 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17352300774 RX 417629 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4136 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2718831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19870824746 RX 6096341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19789188960 RX 420605 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2192356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17420614016 RX 5720146 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17356014950 RX 417755 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3995 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2719663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19873632012 RX 6098357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19791960640 RX 420731 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2192746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17424293184 RX 5722042 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17359683538 RX 417878 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4083 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2720496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19876544728 RX 6100421 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19794839029 RX 420860 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2193131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17428045824 RX 5723962 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17363427424 RX 418001 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2721355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 251968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19879398909 RX 6102485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19797656731 RX 420989 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2193518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17431795312 RX 5725810 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17367167664 RX 418124 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2722202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19882303069 RX 6104501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19800524290 RX 421115 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2193904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17435465968 RX 5727730 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17370829723 RX 418250 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4032 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4074 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2723040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19885177622 RX 6106565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19803364738 RX 421244 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2194289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17439186160 RX 5729674 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17374541225 RX 418373 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4182 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2723872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19888081285 RX 6108629 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19806234260 RX 421373 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2194678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17442916864 RX 5731570 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17378261731 RX 418496 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2724690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19890981926 RX 6110645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19809099296 RX 421499 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2195066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17446601568 RX 5733466 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17381936829 RX 418622 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4101 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2725532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19894027655 RX 6112709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19812109668 RX 421628 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2195454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17450279744 RX 5735410 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17385605415 RX 418748 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4572 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4140 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2726394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19896980087 RX 6114773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19815026644 RX 421757 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2195839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17454012800 RX 5737282 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17389329749 RX 418871 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2727213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19899742933 RX 6116789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19817755446 RX 421883 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2196225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 236937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17457768320 RX 5739178 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17393076506 RX 418997 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4019 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2728063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19902671663 RX 6118853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19820649661 RX 422012 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2196611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 237017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17461412864 RX 5741122 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17396712511 RX 419120 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4102 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2728926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19905502943 RX 6120917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19823444127 RX 422141 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2196999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 237095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17465114960 RX 5742994 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17400404475 RX 419243 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4036 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2729776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19908371557 RX 6122933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19826277690 RX 422267 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2197385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 237173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17468857424 RX 5744866 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17404138206 RX 419366 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2730623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19911301016 RX 6124997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19829172446 RX 422396 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2197775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 237254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17472516816 RX 5746810 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17407787054 RX 419492 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 4200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 2421: ulsch_rounds 252990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 2421: MAC: TX 19913650623 RX 6127490 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831489894 RX 423087 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2198161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 237334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE c22c: MAC: TX 17476174416 RX 5748730 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17411436087 RX 419615 bytes + +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 3999 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/GenerativeAIExamples/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 2421: ulsch_rounds 253012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913657649 RX 6129341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2198546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 237420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 17479927248 RX 5750810 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17415180155 RX 419963 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913659474 RX 6130703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2198932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE c22c: ulsch_rounds 237501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 17483643600 RX 5752794 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17418887817 RX 420160 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913660914 RX 6132171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE c22c: ulsch_rounds 237577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE c22c: MAC: TX 17486408942 RX 5755546 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642365 RX 421036 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913662465 RX 6133649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE c22c: ulsch_rounds 237601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486414486 RX 5757315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913664028 RX 6135127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486416002 RX 5758783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913665603 RX 6136605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486417601 RX 5760261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913667178 RX 6137967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486419200 RX 5761739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913668618 RX 6139435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486420799 RX 5763217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913670169 RX 6140913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486422398 RX 5764579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913671732 RX 6142391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486423874 RX 5766047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913673307 RX 6143869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486425473 RX 5767525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913674870 RX 6145231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486427072 RX 5769003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913676310 RX 6146699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486428671 RX 5770481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913677861 RX 6148177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486430270 RX 5771843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913679424 RX 6149655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486431746 RX 5773311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913680987 RX 6151133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486433345 RX 5774789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913682550 RX 6152495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486434944 RX 5776267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913683990 RX 6153963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486436543 RX 5777745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913685541 RX 6155441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486438142 RX 5779107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913687104 RX 6156919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486439618 RX 5780575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913688667 RX 6158397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486441217 RX 5782053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913690230 RX 6159759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486442816 RX 5783531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913691670 RX 6161227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486444415 RX 5785009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913693221 RX 6162705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486446014 RX 5786371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913694784 RX 6164183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486447490 RX 5787839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913696347 RX 6165661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486449089 RX 5789317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913697910 RX 6167023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486450688 RX 5790795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913699350 RX 6168491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486452287 RX 5792273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913700913 RX 6169969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486453886 RX 5793635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913702488 RX 6171447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486455362 RX 5795103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913704051 RX 6172925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486456961 RX 5796581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913705614 RX 6174287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486458560 RX 5798059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913707054 RX 6175755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486460159 RX 5799537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913708605 RX 6177233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486461758 RX 5800899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913710168 RX 6178711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 237998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486463234 RX 5802367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913711731 RX 6180189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486464833 RX 5803845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913713294 RX 6181551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486466432 RX 5805323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913714734 RX 6183019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486468031 RX 5806801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913716285 RX 6184497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486469630 RX 5808163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913717848 RX 6185975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486471106 RX 5809631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913719411 RX 6187453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486472705 RX 5811109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913720974 RX 6188815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486474304 RX 5812587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913722414 RX 6190283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486475903 RX 5814065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913723965 RX 6191761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486477502 RX 5815427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913725528 RX 6193239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486478978 RX 5816895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913727091 RX 6194717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486480577 RX 5818373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913728654 RX 6196079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486482176 RX 5819851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913730094 RX 6197547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486483775 RX 5821329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913731645 RX 6199025 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486485374 RX 5822691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913733208 RX 6200503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486486850 RX 5824159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913734771 RX 6201981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486488449 RX 5825637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913736334 RX 6203343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486490048 RX 5827115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913737786 RX 6204811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486491647 RX 5828593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2731999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913739337 RX 6206289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486493246 RX 5829955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913740900 RX 6207767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486494722 RX 5831423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913742463 RX 6209245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486496321 RX 5832901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913744026 RX 6210607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486497920 RX 5834379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913745466 RX 6212075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486499519 RX 5835857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913747017 RX 6213553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486501118 RX 5837219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913748580 RX 6215031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486502594 RX 5838687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913750143 RX 6216509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486504193 RX 5840165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913751706 RX 6217871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2199989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486505792 RX 5841643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913753146 RX 6219339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486507391 RX 5843121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913754697 RX 6220817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486508990 RX 5844483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913756260 RX 6222295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486510466 RX 5845951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913757823 RX 6223773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486512065 RX 5847429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913759386 RX 6225135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486513664 RX 5848907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913760826 RX 6226603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486515263 RX 5850385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913762377 RX 6228081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486516862 RX 5851747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913763940 RX 6229559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486518338 RX 5853215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913765503 RX 6231037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486519937 RX 5854693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913767066 RX 6232399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486521536 RX 5856171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913768506 RX 6233867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486523135 RX 5857649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913770057 RX 6235345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486524734 RX 5859011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913771632 RX 6236823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486526210 RX 5860479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913773195 RX 6238301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486527809 RX 5861957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913774758 RX 6239663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486529408 RX 5863435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 253997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913776198 RX 6241131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486531007 RX 5864913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913777749 RX 6242609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486532606 RX 5866275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913779312 RX 6244087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486534082 RX 5867743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913780887 RX 6245565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486535681 RX 5869221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913782450 RX 6246927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486537280 RX 5870699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913783890 RX 6248395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486538879 RX 5872177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913785441 RX 6249873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486540478 RX 5873539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913787004 RX 6251351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486541954 RX 5875007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913788567 RX 6252829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486543553 RX 5876485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913790130 RX 6254191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486545152 RX 5877963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913791570 RX 6255659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486546751 RX 5879441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913793121 RX 6257137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486548350 RX 5880803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913794684 RX 6258615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486549826 RX 5882271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913796247 RX 6260093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486551425 RX 5883749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913797810 RX 6261455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486553024 RX 5885227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913799250 RX 6262923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486554623 RX 5886705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254202/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913800801 RX 6264401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486556222 RX 5888067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913802364 RX 6265879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486557698 RX 5889535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913803927 RX 6267357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486559297 RX 5891013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913805490 RX 6268719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486560896 RX 5892491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913806930 RX 6270187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486562495 RX 5893969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913808481 RX 6271665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486564094 RX 5895331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913810044 RX 6273143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486565570 RX 5896799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913811607 RX 6274621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486567169 RX 5898277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913813170 RX 6275983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486568768 RX 5899755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913814610 RX 6277451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486570367 RX 5901233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913816173 RX 6278929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486571966 RX 5902595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913817736 RX 6280407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486573442 RX 5904063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913819299 RX 6281885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486575041 RX 5905541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913820862 RX 6283247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486576640 RX 5907019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913822314 RX 6284715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486578239 RX 5908497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913823865 RX 6286193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486579838 RX 5909859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913825428 RX 6287671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486581314 RX 5911327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913826991 RX 6289149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486582913 RX 5912805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913828554 RX 6290511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486584512 RX 5914283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913829994 RX 6291979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 238997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486586111 RX 5915761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913831545 RX 6293457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486587710 RX 5917123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913833108 RX 6294935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486589186 RX 5918591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913834671 RX 6296413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486590785 RX 5920069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913836234 RX 6297775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486592384 RX 5921547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913837674 RX 6299243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486593983 RX 5923025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913839225 RX 6300721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486595582 RX 5924387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913840788 RX 6302199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486597058 RX 5925855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913842351 RX 6303677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486598657 RX 5927333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913843914 RX 6305039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486600256 RX 5928811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913845354 RX 6306507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486601855 RX 5930289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913846905 RX 6307985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486603454 RX 5931651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913848468 RX 6309463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486604930 RX 5933119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913850043 RX 6310941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486606529 RX 5934597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913851618 RX 6312303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486608128 RX 5936075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913853058 RX 6313771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486609727 RX 5937553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913854609 RX 6315249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486611326 RX 5938915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913856172 RX 6316727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486612802 RX 5940383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913857735 RX 6318205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486614401 RX 5941861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2732998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913859298 RX 6319567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486616000 RX 5943339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913860738 RX 6321035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486617599 RX 5944817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913862289 RX 6322513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486619198 RX 5946179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913863852 RX 6323991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486620674 RX 5947647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913865415 RX 6325469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486622273 RX 5949125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913866978 RX 6326831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486623872 RX 5950603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913868418 RX 6328299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486625471 RX 5952081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913869969 RX 6329777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486627070 RX 5953443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913871532 RX 6331255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2200987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486628546 RX 5954911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913873095 RX 6332733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486630145 RX 5956389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913874658 RX 6334095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486631744 RX 5957867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913876098 RX 6335563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486633343 RX 5959345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913877649 RX 6337041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486634942 RX 5960707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913879212 RX 6338519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486636418 RX 5962175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913880775 RX 6339997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486638017 RX 5963653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913882338 RX 6341359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486639616 RX 5965131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913883778 RX 6342827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486641215 RX 5966609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913885341 RX 6344305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486642814 RX 5967971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913886916 RX 6345783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486644290 RX 5969439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913888479 RX 6347261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486645889 RX 5970917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913890042 RX 6348623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486647488 RX 5972395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913891482 RX 6350091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486649087 RX 5973873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913893045 RX 6351569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486650686 RX 5975235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913894608 RX 6353047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486652162 RX 5976703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 254996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913896171 RX 6354525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486653761 RX 5978181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913897734 RX 6355887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486655360 RX 5979659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913899174 RX 6357355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486656959 RX 5981137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255034/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913900725 RX 6358833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486658558 RX 5982499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913902288 RX 6360311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486660034 RX 5983967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913903851 RX 6361789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486661633 RX 5985445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913905414 RX 6363151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486663232 RX 5986923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913906854 RX 6364619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486664831 RX 5988401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913908405 RX 6366097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486666430 RX 5989763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913909968 RX 6367575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486667906 RX 5991231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913911531 RX 6369053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486669505 RX 5992709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913913094 RX 6370415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486671104 RX 5994187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913914534 RX 6371883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486672703 RX 5995665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913916085 RX 6373361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486674302 RX 5997027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913917648 RX 6374839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486675778 RX 5998495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913919211 RX 6376317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486677377 RX 5999973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913920774 RX 6377679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486678976 RX 6001451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913922226 RX 6379147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486680575 RX 6002929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913923777 RX 6380625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486682174 RX 6004291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913925340 RX 6382103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486683650 RX 6005759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913926903 RX 6383581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486685249 RX 6007237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913928466 RX 6384943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486686848 RX 6008715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913929906 RX 6386411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486688447 RX 6010193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913931457 RX 6387889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486690046 RX 6011555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913933020 RX 6389367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486691522 RX 6013023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913934583 RX 6390845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486693121 RX 6014501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913936146 RX 6392207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486694720 RX 6015979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913937586 RX 6393675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486696319 RX 6017457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913939137 RX 6395153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486697918 RX 6018819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913940700 RX 6396631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486699394 RX 6020287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913942263 RX 6398109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486700993 RX 6021765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913943826 RX 6399471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486702592 RX 6023243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913945266 RX 6400939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486704191 RX 6024721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913946817 RX 6402417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486705790 RX 6026083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913948380 RX 6403895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486707266 RX 6027551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913949943 RX 6405373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 239995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486708865 RX 6029029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913951506 RX 6406735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486710464 RX 6030507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913952946 RX 6408203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486712063 RX 6031985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913954497 RX 6409681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486713662 RX 6033347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913956072 RX 6411159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486715138 RX 6034815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913957635 RX 6412637 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486716737 RX 6036293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913959198 RX 6413999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486718336 RX 6037771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913960638 RX 6415467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486719935 RX 6039249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913962189 RX 6416945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486721534 RX 6040611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913963752 RX 6418423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486723010 RX 6042079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913965327 RX 6419901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486724609 RX 6043557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913966890 RX 6421263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486726208 RX 6045035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913968330 RX 6422731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486727807 RX 6046513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913969881 RX 6424209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486729406 RX 6047875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913971444 RX 6425687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486730882 RX 6049343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913973007 RX 6427165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486732481 RX 6050821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913974570 RX 6428527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486734080 RX 6052299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913976010 RX 6429995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486735679 RX 6053777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913977561 RX 6431473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486737278 RX 6055139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2733996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913979124 RX 6432951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486738754 RX 6056607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913980687 RX 6434429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486740353 RX 6058085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913982250 RX 6435791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486741952 RX 6059563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913983690 RX 6437259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486743551 RX 6061041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913985241 RX 6438737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486745150 RX 6062403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913986804 RX 6440215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486746626 RX 6063871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913988367 RX 6441693 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486748225 RX 6065349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913989930 RX 6443055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486749824 RX 6066827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913991382 RX 6444523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486751423 RX 6068305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913992945 RX 6446001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2201999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486753022 RX 6069667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913994508 RX 6447479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486754498 RX 6071135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913996071 RX 6448957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486756097 RX 6072613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913997634 RX 6450319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486757696 RX 6074091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19913999074 RX 6451787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486759295 RX 6075569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914000637 RX 6453265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486760894 RX 6076931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914002200 RX 6454743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486762370 RX 6078399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914003763 RX 6456221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486763969 RX 6079877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914005326 RX 6457583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486765568 RX 6081355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914006778 RX 6459051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486767167 RX 6082833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914008329 RX 6460529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486768766 RX 6084195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914009892 RX 6462007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486770242 RX 6085663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914011455 RX 6463485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486771841 RX 6087141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914013018 RX 6464847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486773440 RX 6088619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914014458 RX 6466315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486775039 RX 6090097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 255994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914016009 RX 6467793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486776638 RX 6091459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914017572 RX 6469271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486778114 RX 6092927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914019135 RX 6470749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486779713 RX 6094405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914020698 RX 6472111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486781312 RX 6095883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914022138 RX 6473579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486782911 RX 6097361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914023689 RX 6475057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486784510 RX 6098723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914025252 RX 6476535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486785986 RX 6100191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914026815 RX 6478013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486787585 RX 6101669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914028390 RX 6479375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486789184 RX 6103147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914029830 RX 6480843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486790783 RX 6104625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914031381 RX 6482321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486792382 RX 6105987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914032944 RX 6483799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486793858 RX 6107455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914034519 RX 6485277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486795457 RX 6108933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914036094 RX 6486639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486797056 RX 6110411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914037534 RX 6488107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486798655 RX 6111889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914039085 RX 6489585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486800254 RX 6113251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914040648 RX 6491063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486801730 RX 6114719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914042211 RX 6492541 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486803329 RX 6116197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914043774 RX 6493903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486804928 RX 6117675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914045214 RX 6495371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486806527 RX 6119153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914046765 RX 6496849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486808126 RX 6120515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914048328 RX 6498327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486809602 RX 6121983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914049891 RX 6499805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486811201 RX 6123461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914051454 RX 6501167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486812800 RX 6124939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914052894 RX 6502635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486814399 RX 6126417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256314/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914054445 RX 6504113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486815998 RX 6127779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914056008 RX 6505591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486817474 RX 6129247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914057571 RX 6507069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486819073 RX 6130725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914059134 RX 6508431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486820672 RX 6132203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914060574 RX 6509899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486822271 RX 6133681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914062125 RX 6511377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486823870 RX 6135043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914063688 RX 6512855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486825346 RX 6136511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914065251 RX 6514333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486826945 RX 6137989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914066814 RX 6515695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486828544 RX 6139467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914068254 RX 6517163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486830143 RX 6140945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914069805 RX 6518641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 240993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486831742 RX 6142307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914071380 RX 6520119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486833218 RX 6143775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914072943 RX 6521597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486834817 RX 6145253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914074506 RX 6522959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486836416 RX 6146731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914075946 RX 6524427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486838015 RX 6148209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914077509 RX 6525905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486839614 RX 6149571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914079072 RX 6527383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486841090 RX 6151039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914080635 RX 6528861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486842689 RX 6152517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914082198 RX 6530223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486844288 RX 6153995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914083638 RX 6531691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486845887 RX 6155473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914085189 RX 6533169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486847486 RX 6156835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914086752 RX 6534647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486848962 RX 6158303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914088315 RX 6536125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486850561 RX 6159781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914089878 RX 6537487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486852160 RX 6161259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914091318 RX 6538955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486853759 RX 6162737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914092869 RX 6540433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486855358 RX 6164099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914094432 RX 6541911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486856834 RX 6165567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914095995 RX 6543389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486858433 RX 6167045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914097558 RX 6544751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486860032 RX 6168523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2734994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914098998 RX 6546219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486861631 RX 6170001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914100549 RX 6547697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486863230 RX 6171363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914102112 RX 6549175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486864706 RX 6172831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914103675 RX 6550653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486866305 RX 6174309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914105238 RX 6552015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486867904 RX 6175787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914106690 RX 6553483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486869503 RX 6177265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914108241 RX 6554961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486871102 RX 6178627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914109804 RX 6556439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486872578 RX 6180095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914111367 RX 6557917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486874177 RX 6181573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914112930 RX 6559279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2202997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486875776 RX 6183051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914114370 RX 6560747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486877375 RX 6184529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914115921 RX 6562225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486878974 RX 6185891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914117484 RX 6563703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486880450 RX 6187359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914119047 RX 6565181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486882049 RX 6188837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914120610 RX 6566543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486883648 RX 6190315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914122050 RX 6568011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486885247 RX 6191793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914123601 RX 6569489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486886846 RX 6193155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914125164 RX 6570967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486888322 RX 6194623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914126727 RX 6572445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486889921 RX 6196101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914128290 RX 6573807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486891520 RX 6197579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914129730 RX 6575275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486893119 RX 6199057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914131281 RX 6576753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486894718 RX 6200419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914132844 RX 6578231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486896194 RX 6201887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914134407 RX 6579709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486897793 RX 6203365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 256992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914135970 RX 6581071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486899392 RX 6204843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914137410 RX 6582539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486900991 RX 6206321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914138961 RX 6584017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486902590 RX 6207683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914140536 RX 6585495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486904066 RX 6209151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914142111 RX 6586973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486905665 RX 6210629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914143674 RX 6588335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486907264 RX 6212107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914145114 RX 6589803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486908863 RX 6213585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914146665 RX 6591281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486910462 RX 6214947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914148228 RX 6592759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486911938 RX 6216415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914149803 RX 6594237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486913537 RX 6217893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914151366 RX 6595599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486915136 RX 6219371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914152806 RX 6597067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486916735 RX 6220849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914154357 RX 6598545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486918334 RX 6222211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914155920 RX 6600023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486919810 RX 6223679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914157483 RX 6601501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486921409 RX 6225157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914159046 RX 6602863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486923008 RX 6226635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914160486 RX 6604331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486924607 RX 6228113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914162037 RX 6605809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486926206 RX 6229475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914163600 RX 6607287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486927682 RX 6230943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914165163 RX 6608765 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486929281 RX 6232421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914166726 RX 6610127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486930880 RX 6233899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914168166 RX 6611595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486932479 RX 6235377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914169717 RX 6613073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486934078 RX 6236739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914171280 RX 6614551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486935554 RX 6238207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914172843 RX 6616029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486937153 RX 6239685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914174406 RX 6617391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486938752 RX 6241163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914175846 RX 6618859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486940351 RX 6242641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914177409 RX 6620337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486941950 RX 6244003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914178972 RX 6621815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486943426 RX 6245471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914180535 RX 6623293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486945025 RX 6246949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914182098 RX 6624655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486946624 RX 6248427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914183538 RX 6626123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486948223 RX 6249905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914185101 RX 6627601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486949822 RX 6251267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914186664 RX 6629079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486951298 RX 6252735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914188227 RX 6630557 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486952897 RX 6254213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914189790 RX 6631919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 241992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486954496 RX 6255691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914191242 RX 6633387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486956095 RX 6257169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914192793 RX 6634865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486957694 RX 6258531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914194356 RX 6636343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486959170 RX 6259999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914195919 RX 6637821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486960769 RX 6261477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914197482 RX 6639183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486962368 RX 6262955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914198922 RX 6640651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486963967 RX 6264433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914200473 RX 6642129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486965566 RX 6265795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914202036 RX 6643607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486967042 RX 6267263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914203599 RX 6645085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486968641 RX 6268741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914205162 RX 6646447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486970240 RX 6270219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914206602 RX 6647915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486971839 RX 6271697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914208153 RX 6649393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486973438 RX 6273059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914209716 RX 6650871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486974914 RX 6274527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914211279 RX 6652349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486976513 RX 6276005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914212854 RX 6653711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486978112 RX 6277483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914214294 RX 6655179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486979711 RX 6278961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914215845 RX 6656657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486981310 RX 6280323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914217408 RX 6658135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486982786 RX 6281791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2735993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914218971 RX 6659613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486984385 RX 6283269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914220534 RX 6660975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486985984 RX 6284747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914221974 RX 6662443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486987583 RX 6286225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914223525 RX 6663921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486989182 RX 6287587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914225088 RX 6665399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486990658 RX 6289055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914226651 RX 6666877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486992257 RX 6290533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914228214 RX 6668239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486993856 RX 6292011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914229654 RX 6669707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486995455 RX 6293489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914231205 RX 6671185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486997054 RX 6294851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914232768 RX 6672663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2203995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17486998530 RX 6296319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914234331 RX 6674141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487000129 RX 6297797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914235894 RX 6675503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487001728 RX 6299275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914237334 RX 6676971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487003327 RX 6300753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914238885 RX 6678449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487004926 RX 6302115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914240448 RX 6679927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487006402 RX 6303583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914242011 RX 6681405 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487008001 RX 6305061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914243574 RX 6682767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487009600 RX 6306539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914245014 RX 6684235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487011199 RX 6308017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914246565 RX 6685713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487012798 RX 6309379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914248128 RX 6687191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487014274 RX 6310847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914249691 RX 6688669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487015873 RX 6312325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914251254 RX 6690031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487017472 RX 6313803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914252694 RX 6691499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487019071 RX 6315281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914254245 RX 6692977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487020670 RX 6316643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 257991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914255820 RX 6694455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487022146 RX 6318111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914257383 RX 6695933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487023745 RX 6319589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914258946 RX 6697295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487025344 RX 6321067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914260386 RX 6698763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487026943 RX 6322545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914261937 RX 6700241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487028542 RX 6323907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914263500 RX 6701719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487030018 RX 6325375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914265063 RX 6703197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487031617 RX 6326853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914266626 RX 6704559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487033216 RX 6328331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914268066 RX 6706027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487034815 RX 6329809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914269617 RX 6707505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487036414 RX 6331171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914271180 RX 6708983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487037890 RX 6332639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914272743 RX 6710461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487039489 RX 6334117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914274306 RX 6711823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487041088 RX 6335595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914275746 RX 6713291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487042687 RX 6337073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914277297 RX 6714769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487044286 RX 6338435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914278860 RX 6716247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487045762 RX 6339903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914280423 RX 6717725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487047361 RX 6341381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914281986 RX 6719087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487048960 RX 6342859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914283426 RX 6720555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487050559 RX 6344337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914284977 RX 6722033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487052158 RX 6345699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914286540 RX 6723511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487053634 RX 6347167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914288103 RX 6724989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487055233 RX 6348645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914289666 RX 6726351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487056832 RX 6350123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914291130 RX 6727819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487058431 RX 6351601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914292681 RX 6729297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487060030 RX 6352963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914294244 RX 6730775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487061506 RX 6354431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914295807 RX 6732253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487063105 RX 6355909 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914297382 RX 6733615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487064704 RX 6357387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914298822 RX 6735083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487066303 RX 6358865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258362/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914300373 RX 6736561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487067902 RX 6360227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914301936 RX 6738039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487069378 RX 6361695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914303499 RX 6739517 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487070977 RX 6363173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914305062 RX 6740879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487072576 RX 6364651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914306502 RX 6742347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487074175 RX 6366129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914308053 RX 6743825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487075774 RX 6367491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914309616 RX 6745303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 242990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487077250 RX 6368959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914311179 RX 6746781 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487078849 RX 6370437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914312742 RX 6748143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487080448 RX 6371915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914314182 RX 6749611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487082047 RX 6373393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914315733 RX 6751089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487083646 RX 6374755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914317296 RX 6752567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487085122 RX 6376223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914318859 RX 6754045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487086721 RX 6377701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914320422 RX 6755407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487088320 RX 6379179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914321862 RX 6756875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487089919 RX 6380657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914323413 RX 6758353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487091518 RX 6382019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914324976 RX 6759831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487092994 RX 6383487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914326551 RX 6761309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487094593 RX 6384965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914328114 RX 6762671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487096192 RX 6386443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914329554 RX 6764139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487097791 RX 6387921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258618/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914331105 RX 6765617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487099390 RX 6389283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258631/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914332668 RX 6767095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487100866 RX 6390751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914334243 RX 6768573 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487102465 RX 6392229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914335806 RX 6769935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487104064 RX 6393707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914337246 RX 6771403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487105663 RX 6395185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2736991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914338797 RX 6772881 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487107262 RX 6396547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914340360 RX 6774359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487108738 RX 6398015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914341923 RX 6775837 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487110337 RX 6399493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914343486 RX 6777199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487111936 RX 6400971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914344926 RX 6778667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487113535 RX 6402449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914346477 RX 6780145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487115134 RX 6403811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914348040 RX 6781623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487116610 RX 6405279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914349603 RX 6783101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487118209 RX 6406757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914351166 RX 6784463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487119808 RX 6408235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914352606 RX 6785931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2204994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487121407 RX 6409713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914354157 RX 6787409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487123006 RX 6411075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914355720 RX 6788887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487124482 RX 6412543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914357283 RX 6790365 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487126081 RX 6414021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914358846 RX 6791727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487127680 RX 6415499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914360286 RX 6793195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487129279 RX 6416977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914361849 RX 6794673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487130878 RX 6418339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258887/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914363412 RX 6796151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487132354 RX 6419807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914364975 RX 6797629 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487133953 RX 6421285 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914366538 RX 6798991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487135552 RX 6422763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914367978 RX 6800459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487137151 RX 6424241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914369529 RX 6801937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487138750 RX 6425603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914371092 RX 6803415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487140226 RX 6427071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914372655 RX 6804893 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487141825 RX 6428549 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914374218 RX 6806255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487143424 RX 6430027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 258989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914375658 RX 6807723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487145023 RX 6431505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914377209 RX 6809201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487146622 RX 6432867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914378772 RX 6810679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487148098 RX 6434335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914380335 RX 6812157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487149697 RX 6435813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914381898 RX 6813519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487151296 RX 6437291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914383338 RX 6814987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487152895 RX 6438769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914384889 RX 6816465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487154494 RX 6440131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914386452 RX 6817943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487155970 RX 6441599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914388015 RX 6819421 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487157569 RX 6443077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914389578 RX 6820783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487159168 RX 6444555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914391018 RX 6822251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487160767 RX 6446033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914392569 RX 6823729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487162366 RX 6447395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914394132 RX 6825207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487163842 RX 6448863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914395695 RX 6826685 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487165441 RX 6450341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914397258 RX 6828047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487167040 RX 6451819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914398698 RX 6829515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487168639 RX 6453297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914400249 RX 6830993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487170238 RX 6454659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914401812 RX 6832471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487171714 RX 6456127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914403375 RX 6833949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487173313 RX 6457605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914404950 RX 6835311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487174912 RX 6459083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914406390 RX 6836779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487176511 RX 6460561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914407941 RX 6838257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487178110 RX 6461923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914409504 RX 6839735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487179586 RX 6463391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914411067 RX 6841213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487181185 RX 6464869 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914412630 RX 6842575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487182784 RX 6466347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914414070 RX 6844043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487184383 RX 6467825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914415621 RX 6845521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487185982 RX 6469187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914417184 RX 6846999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487187458 RX 6470655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914418747 RX 6848477 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487189057 RX 6472133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914420310 RX 6849839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487190656 RX 6473611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914421750 RX 6851307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487192255 RX 6475089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914423301 RX 6852785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487193854 RX 6476451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259399/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914424864 RX 6854263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487195330 RX 6477919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914426427 RX 6855741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487196929 RX 6479397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914427990 RX 6857103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487198528 RX 6480875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914429430 RX 6858571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 243989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487200127 RX 6482353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914430981 RX 6860049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487201726 RX 6483715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914432544 RX 6861527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487203202 RX 6485183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914434107 RX 6863005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487204801 RX 6486661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914435670 RX 6864367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487206400 RX 6488139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914437110 RX 6865835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487207999 RX 6489617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914438661 RX 6867313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487209598 RX 6490979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914440248 RX 6868791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487211074 RX 6492447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914441811 RX 6870269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487212673 RX 6493925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914443374 RX 6871631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487214272 RX 6495403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914444814 RX 6873099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487215871 RX 6496881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914446377 RX 6874577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487217470 RX 6498243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914447940 RX 6876055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487218946 RX 6499711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914449503 RX 6877533 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487220545 RX 6501189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914451066 RX 6878895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487222144 RX 6502667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914452506 RX 6880363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487223743 RX 6504145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914454057 RX 6881841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487225342 RX 6505507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914455620 RX 6883319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487226818 RX 6506975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914457183 RX 6884797 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487228417 RX 6508453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2737990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914458746 RX 6886159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487230016 RX 6509931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914460186 RX 6887627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487231615 RX 6511409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914461737 RX 6889105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487233214 RX 6512771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914463300 RX 6890583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487234690 RX 6514239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914464863 RX 6892061 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487236289 RX 6515717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914466426 RX 6893423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487237888 RX 6517195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914467866 RX 6894891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487239487 RX 6518673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914469417 RX 6896369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487241086 RX 6520035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914470980 RX 6897847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487242562 RX 6521503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914472543 RX 6899325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2205992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487244161 RX 6522981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914474106 RX 6900687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487245760 RX 6524459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914475570 RX 6902155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487247359 RX 6525937 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914477121 RX 6903633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487248958 RX 6527299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914478684 RX 6905111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487250434 RX 6528767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914480247 RX 6906589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487252033 RX 6530245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914481810 RX 6907951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487253632 RX 6531723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914483250 RX 6909419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487255231 RX 6533201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914484801 RX 6910897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487256830 RX 6534563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914486364 RX 6912375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487258306 RX 6536031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914487927 RX 6913853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487259905 RX 6537509 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914489490 RX 6915215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487261504 RX 6538987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914490930 RX 6916683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487263103 RX 6540465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259962/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914492481 RX 6918161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487264702 RX 6541827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914494044 RX 6919639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487266178 RX 6543295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 259988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914495607 RX 6921117 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487267777 RX 6544773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914497170 RX 6922479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487269376 RX 6546251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914498610 RX 6923947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487270975 RX 6547729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914500161 RX 6925425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487272574 RX 6549091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914501724 RX 6926903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487274050 RX 6550559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914503287 RX 6928381 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487275649 RX 6552037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914504850 RX 6929743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487277248 RX 6553515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914506290 RX 6931211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487278847 RX 6554993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914507841 RX 6932689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487280446 RX 6556355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914509404 RX 6934167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487281922 RX 6557823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914510979 RX 6935645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487283521 RX 6559301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914512542 RX 6937007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487285120 RX 6560779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914513982 RX 6938475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487286719 RX 6562257 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914515533 RX 6939953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487288318 RX 6563619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260167/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914517096 RX 6941431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487289794 RX 6565087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914518659 RX 6942909 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487291393 RX 6566565 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914520222 RX 6944271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487292992 RX 6568043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914521662 RX 6945739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487294591 RX 6569521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914523213 RX 6947217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487296190 RX 6570883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914524776 RX 6948695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487297666 RX 6572351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914526339 RX 6950173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487299265 RX 6573829 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914527902 RX 6951535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487300864 RX 6575307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914529342 RX 6953003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487302463 RX 6576785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914530893 RX 6954481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487304062 RX 6578147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914532456 RX 6955959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487305538 RX 6579615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914534019 RX 6957437 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487307137 RX 6581093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914535582 RX 6958799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487308736 RX 6582571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914537022 RX 6960267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487310335 RX 6584049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914538573 RX 6961745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487311934 RX 6585411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914540136 RX 6963223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487313410 RX 6586879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914541699 RX 6964701 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487315009 RX 6588357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914543262 RX 6966063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487316608 RX 6589835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914544702 RX 6967531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487318207 RX 6591313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914546265 RX 6969009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487319806 RX 6592675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914547828 RX 6970487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487321282 RX 6594143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914549391 RX 6971965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 244987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487322881 RX 6595621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914550954 RX 6973327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487324480 RX 6597099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914552394 RX 6974795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487326079 RX 6598577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260474/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914553957 RX 6976273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487327678 RX 6599939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914555520 RX 6977751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487329154 RX 6601407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914557083 RX 6979229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487330753 RX 6602885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914558646 RX 6980591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487332352 RX 6604363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914560086 RX 6982059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487333951 RX 6605841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914561637 RX 6983537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487335550 RX 6607203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914563200 RX 6985015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487337026 RX 6608671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914564763 RX 6986493 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487338625 RX 6610149 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914566326 RX 6987855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487340224 RX 6611627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914567766 RX 6989323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487341823 RX 6613105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914569317 RX 6990801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487343422 RX 6614467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914570880 RX 6992279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487344898 RX 6615935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914572443 RX 6993757 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487346497 RX 6617413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914574006 RX 6995119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487348096 RX 6618891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914575446 RX 6996587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487349695 RX 6620369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914576997 RX 6998065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487351294 RX 6621731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2738988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914578560 RX 6999543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487352770 RX 6623199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914580123 RX 7001021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487354369 RX 6624677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914581686 RX 7002383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487355968 RX 6626155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914583126 RX 7003851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487357567 RX 6627633 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914584677 RX 7005329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487359166 RX 6628995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914586240 RX 7006807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487360642 RX 6630463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914587803 RX 7008285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487362241 RX 6631941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914589378 RX 7009647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487363840 RX 6633419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914590818 RX 7011115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487365439 RX 6634897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914592369 RX 7012593 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2206991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487367038 RX 6636259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914593932 RX 7014071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487368514 RX 6637727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914595495 RX 7015549 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487370113 RX 6639205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914597070 RX 7016911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487371712 RX 6640683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914598510 RX 7018379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487373311 RX 6642161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914600061 RX 7019857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487374910 RX 6643523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914601624 RX 7021335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487376386 RX 6644991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914603187 RX 7022813 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487377985 RX 6646469 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914604750 RX 7024175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487379584 RX 6647947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914606190 RX 7025643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487381183 RX 6649425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914607741 RX 7027121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487382782 RX 6650787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260935/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914609304 RX 7028599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487384258 RX 6652255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914610867 RX 7030077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487385857 RX 6653733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914612430 RX 7031439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487387456 RX 6655211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914613870 RX 7032907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487389055 RX 6656689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914615421 RX 7034385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487390654 RX 6658051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 260999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914616984 RX 7035863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487392130 RX 6659519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914618547 RX 7037341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487393729 RX 6660997 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914620110 RX 7038703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487395328 RX 6662475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914621550 RX 7040171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487396927 RX 6663953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914623101 RX 7041649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487398526 RX 6665315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914624688 RX 7043127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487400002 RX 6666783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914626251 RX 7044605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487401601 RX 6668261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914627814 RX 7045967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487403200 RX 6669739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914629254 RX 7047435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487404799 RX 6671217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914630805 RX 7048913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487406398 RX 6672579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914632368 RX 7050391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487407874 RX 6674047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914633931 RX 7051869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487409473 RX 6675525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914635494 RX 7053231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487411072 RX 6677003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914636934 RX 7054699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487412671 RX 6678481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914638485 RX 7056177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487414270 RX 6679843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914640048 RX 7057655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487415746 RX 6681311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914641611 RX 7059133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487417345 RX 6682789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914643174 RX 7060495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487418944 RX 6684267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914644614 RX 7061963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487420543 RX 6685745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914646165 RX 7063441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487422142 RX 6687107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914647728 RX 7064919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487423618 RX 6688575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914649291 RX 7066397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487425217 RX 6690053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914650854 RX 7067759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487426816 RX 6691531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914652294 RX 7069227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487428415 RX 6693009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914653845 RX 7070705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487430014 RX 6694371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914655408 RX 7072183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487431490 RX 6695839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914656971 RX 7073661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487433089 RX 6697317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914658534 RX 7075023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487434688 RX 6698795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914659998 RX 7076491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487436287 RX 6700273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914661549 RX 7077969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487437886 RX 6701635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914663112 RX 7079447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487439362 RX 6703103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914664675 RX 7080925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487440961 RX 6704581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914666238 RX 7082287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487442560 RX 6706059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914667690 RX 7083755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487444159 RX 6707537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914669241 RX 7085233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487445758 RX 6708899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914670804 RX 7086711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 245998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487447234 RX 6710367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914672367 RX 7088189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487448833 RX 6711845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914673930 RX 7089551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487450432 RX 6713323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914675370 RX 7091019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487452031 RX 6714801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914676921 RX 7092497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487453630 RX 6716163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914678484 RX 7093975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487455106 RX 6717631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914680047 RX 7095453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487456705 RX 6719109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914681610 RX 7096815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487458304 RX 6720587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914683050 RX 7098283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487459903 RX 6722065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914684601 RX 7099761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487461502 RX 6723427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914686164 RX 7101239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487462978 RX 6724895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914687727 RX 7102717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487464577 RX 6726373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914689290 RX 7104079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487466176 RX 6727851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914690730 RX 7105547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487467775 RX 6729329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914692281 RX 7107025 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487469374 RX 6730691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914693844 RX 7108503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487470850 RX 6732159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914695419 RX 7109981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487472449 RX 6733637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914696982 RX 7111343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487474048 RX 6735115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914698422 RX 7112811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487475647 RX 6736593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2739999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914699973 RX 7114289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487477246 RX 6737955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914701536 RX 7115767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487478722 RX 6739423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914703099 RX 7117245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487480321 RX 6740901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914704662 RX 7118607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487481920 RX 6742379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914706102 RX 7120075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487483519 RX 6743857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914707653 RX 7121553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487485118 RX 6745219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914709216 RX 7123031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487486594 RX 6746687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914710779 RX 7124509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487488193 RX 6748165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914712342 RX 7125871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2207989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487489792 RX 6749643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914713782 RX 7127339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487491391 RX 6751121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914715333 RX 7128817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487492990 RX 6752483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914716896 RX 7130295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487494466 RX 6753951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914718459 RX 7131773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487496065 RX 6755429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914720022 RX 7133135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487497664 RX 6756907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914721462 RX 7134603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487499263 RX 6758385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914723013 RX 7136081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487500862 RX 6759747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914724576 RX 7137559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487502338 RX 6761215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914726139 RX 7139037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487503937 RX 6762693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914727702 RX 7140399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487505536 RX 6764171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914729142 RX 7141867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487507135 RX 6765649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914730705 RX 7143345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487508734 RX 6767011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914732268 RX 7144823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487510210 RX 6768479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914733831 RX 7146301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487511809 RX 6769957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914735394 RX 7147663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487513408 RX 6771435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 261997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914736834 RX 7149131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487515007 RX 6772913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914738397 RX 7150609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487516606 RX 6774275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914739960 RX 7152087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487518082 RX 6775743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914741523 RX 7153565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487519681 RX 6777221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914743086 RX 7154927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487521280 RX 6778699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914744526 RX 7156395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487522879 RX 6780177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914746077 RX 7157873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487524478 RX 6781539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914747640 RX 7159351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487525954 RX 6783007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914749203 RX 7160829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487527553 RX 6784485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914750766 RX 7162191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487529152 RX 6785963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914752206 RX 7163659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487530751 RX 6787441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914753757 RX 7165137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487532350 RX 6788803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914755320 RX 7166615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487533826 RX 6790271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914756883 RX 7168093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487535425 RX 6791749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914758446 RX 7169455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487537024 RX 6793227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914759886 RX 7170923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487538623 RX 6794705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262202/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914761437 RX 7172401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487540222 RX 6796067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914763000 RX 7173879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487541698 RX 6797535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914764563 RX 7175357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487543297 RX 6799013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914766150 RX 7176719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487544896 RX 6800491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914767590 RX 7178187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487546495 RX 6801969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914769141 RX 7179665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487548094 RX 6803331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914770704 RX 7181143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487549570 RX 6804799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914772267 RX 7182621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487551169 RX 6806277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914773842 RX 7183983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487552768 RX 6807755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914775282 RX 7185451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487554367 RX 6809233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914776833 RX 7186929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487555966 RX 6810595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914778396 RX 7188407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487557442 RX 6812063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914779959 RX 7189885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487559041 RX 6813541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914781534 RX 7191247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487560640 RX 6815019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914782974 RX 7192715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487562239 RX 6816497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914784525 RX 7194193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487563838 RX 6817859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914786088 RX 7195671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487565314 RX 6819327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914787651 RX 7197149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487566913 RX 6820805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914789214 RX 7198511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487568512 RX 6822283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914790654 RX 7199979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 246997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487570111 RX 6823761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914792205 RX 7201457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487571710 RX 6825123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914793768 RX 7202935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487573186 RX 6826591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914795331 RX 7204413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487574785 RX 6828069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914796894 RX 7205775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487576384 RX 6829547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914798334 RX 7207243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487577983 RX 6831025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914799885 RX 7208721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487579582 RX 6832387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914801460 RX 7210199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487581058 RX 6833855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914803023 RX 7211677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487582657 RX 6835333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914804586 RX 7213039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487584256 RX 6836811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914806026 RX 7214507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487585855 RX 6838289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914807577 RX 7215985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487587454 RX 6839651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914809164 RX 7217463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487588930 RX 6841119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914810727 RX 7218941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487590529 RX 6842597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914812290 RX 7220303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487592128 RX 6844075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914813730 RX 7221771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487593727 RX 6845553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914815281 RX 7223249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487595326 RX 6846915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914816844 RX 7224727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487596802 RX 6848383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914818407 RX 7226205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487598401 RX 6849861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2740998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914819970 RX 7227567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487600000 RX 6851339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914821410 RX 7229035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487601599 RX 6852817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914822961 RX 7230513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487603198 RX 6854179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914824524 RX 7231991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487604674 RX 6855647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914826087 RX 7233469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487606273 RX 6857125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914827650 RX 7234831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487607872 RX 6858603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914829090 RX 7236299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487609471 RX 6860081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914830641 RX 7237777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487611070 RX 6861443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914832204 RX 7239255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2208987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487612546 RX 6862911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914833767 RX 7240733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487614145 RX 6864389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914835330 RX 7242095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487615744 RX 6865867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914836770 RX 7243563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487617343 RX 6867345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914838321 RX 7245041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487618942 RX 6868707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914839884 RX 7246519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487620418 RX 6870175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914841447 RX 7247997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487622017 RX 6871653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914843010 RX 7249359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487623616 RX 6873131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914844462 RX 7250827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487625215 RX 6874609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914846013 RX 7252305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487626814 RX 6875971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914847576 RX 7253783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487628290 RX 6877439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914849139 RX 7255261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487629889 RX 6878917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914850702 RX 7256623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487631488 RX 6880395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914852154 RX 7258091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487633087 RX 6881873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914853705 RX 7259569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487634686 RX 6883235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914855268 RX 7261047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487636162 RX 6884703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 262996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914856831 RX 7262525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487637761 RX 6886181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914858394 RX 7263887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487639360 RX 6887659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914859834 RX 7265355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487640959 RX 6889137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263034/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914861385 RX 7266833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487642558 RX 6890499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914862948 RX 7268311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487644034 RX 6891967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914864511 RX 7269789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487645633 RX 6893445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914866074 RX 7271151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487647232 RX 6894923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914867514 RX 7272619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487648831 RX 6896401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914869065 RX 7274097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487650430 RX 6897763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914870628 RX 7275575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487651906 RX 6899231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914872191 RX 7277053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487653505 RX 6900709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914873754 RX 7278415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487655104 RX 6902187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914875194 RX 7279883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487656703 RX 6903665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914876745 RX 7281361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487658302 RX 6905027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914878308 RX 7282839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487659778 RX 6906495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914879883 RX 7284317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487661377 RX 6907973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914881446 RX 7285679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487662976 RX 6909451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914882886 RX 7287147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487664575 RX 6910929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914884437 RX 7288625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487666174 RX 6912291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914886000 RX 7290103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487667650 RX 6913759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914887563 RX 7291581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487669249 RX 6915237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914889126 RX 7292943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487670848 RX 6916715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914890566 RX 7294411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487672447 RX 6918193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914892117 RX 7295889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487674046 RX 6919555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914893680 RX 7297367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487675522 RX 6921023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914895243 RX 7298845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487677121 RX 6922501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914896806 RX 7300207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487678720 RX 6923979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914898246 RX 7301675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487680319 RX 6925457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914899797 RX 7303153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487681918 RX 6926819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914901360 RX 7304631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487683394 RX 6928287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914902923 RX 7306109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487684993 RX 6929765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914904486 RX 7307471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487686592 RX 6931243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914905926 RX 7308939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487688191 RX 6932721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914907477 RX 7310417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487689790 RX 6934083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914909040 RX 7311895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487691266 RX 6935551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914910603 RX 7313373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 247995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487692865 RX 6937029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914912166 RX 7314735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487694464 RX 6938507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914913606 RX 7316203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487696063 RX 6939985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914915181 RX 7317681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487697662 RX 6941347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914916744 RX 7319159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487699138 RX 6942815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914918307 RX 7320637 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487700737 RX 6944293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914919870 RX 7321999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487702336 RX 6945771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914921310 RX 7323467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487703935 RX 6947249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914922873 RX 7324945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487705534 RX 6948611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914924436 RX 7326423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487707010 RX 6950079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914925999 RX 7327901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487708609 RX 6951557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914927562 RX 7329263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487710208 RX 6953035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914929002 RX 7330731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487711807 RX 6954513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914930553 RX 7332209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487713406 RX 6955875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914932116 RX 7333687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487714882 RX 6957343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914933679 RX 7335165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487716481 RX 6958821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914935242 RX 7336527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487718080 RX 6960299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914936682 RX 7337995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487719679 RX 6961777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914938233 RX 7339473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487721278 RX 6963139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2741996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914939796 RX 7340951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487722754 RX 6964607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914941359 RX 7342429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487724353 RX 6966085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914942922 RX 7343791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487725952 RX 6967563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914944362 RX 7345259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487727551 RX 6969041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914945913 RX 7346737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487729150 RX 6970403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914947476 RX 7348215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487730626 RX 6971871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914949039 RX 7349693 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487732225 RX 6973349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914950614 RX 7351055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487733824 RX 6974827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914952054 RX 7352523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487735423 RX 6976305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914953605 RX 7354001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2209999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487737022 RX 6977667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914955168 RX 7355479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487738498 RX 6979135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914956731 RX 7356957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487740097 RX 6980613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914958306 RX 7358319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487741696 RX 6982091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914959746 RX 7359787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487743295 RX 6983569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914961297 RX 7361265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487744894 RX 6984931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914962860 RX 7362743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487746370 RX 6986399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914964423 RX 7364221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487747969 RX 6987877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914965998 RX 7365583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487749568 RX 6989355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914967438 RX 7367051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487751167 RX 6990833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914968989 RX 7368529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487752766 RX 6992195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914970552 RX 7370007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487754242 RX 6993663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914972115 RX 7371485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487755841 RX 6995141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914973678 RX 7372847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487757440 RX 6996619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914975118 RX 7374315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487759039 RX 6998097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 263994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914976669 RX 7375793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487760638 RX 6999459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914978232 RX 7377271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487762114 RX 7000927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914979795 RX 7378749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487763713 RX 7002405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914981358 RX 7380111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487765312 RX 7003883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914982798 RX 7381579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487766911 RX 7005361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914984349 RX 7383057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487768510 RX 7006723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914985924 RX 7384535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487769986 RX 7008191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914987487 RX 7386013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487771585 RX 7009669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914989050 RX 7387375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487773184 RX 7011147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914990490 RX 7388843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487774783 RX 7012625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914992041 RX 7390321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487776382 RX 7013987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914993604 RX 7391799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487777858 RX 7015455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914995167 RX 7393277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487779457 RX 7016933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914996730 RX 7394639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487781056 RX 7018411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914998170 RX 7396107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487782655 RX 7019889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19914999721 RX 7397585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487784254 RX 7021251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915001284 RX 7399063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487785730 RX 7022719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915002847 RX 7400541 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487787329 RX 7024197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915004410 RX 7401903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487788928 RX 7025675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915005850 RX 7403371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487790527 RX 7027153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915007401 RX 7404849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487792126 RX 7028515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915008964 RX 7406327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487793602 RX 7029983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915010527 RX 7407805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487795201 RX 7031461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915012090 RX 7409167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487796800 RX 7032939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915013530 RX 7410635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487798399 RX 7034417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264314/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915015081 RX 7412113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487799998 RX 7035779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915016644 RX 7413591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487801474 RX 7037247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915018207 RX 7415069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487803073 RX 7038725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915019770 RX 7416431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487804672 RX 7040203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915021210 RX 7417899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487806271 RX 7041681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915022761 RX 7419377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487807870 RX 7043043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915024324 RX 7420855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487809346 RX 7044511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915025887 RX 7422333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487810945 RX 7045989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915027450 RX 7423695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487812544 RX 7047467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915028902 RX 7425163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487814143 RX 7048945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915030453 RX 7426641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 248993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487815742 RX 7050307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915032016 RX 7428119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487817218 RX 7051775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915033579 RX 7429597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487818817 RX 7053253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915035142 RX 7430959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487820416 RX 7054731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915036582 RX 7432427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487822015 RX 7056209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915038133 RX 7433905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487823614 RX 7057571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915039696 RX 7435383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487825090 RX 7059039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915041259 RX 7436861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487826689 RX 7060517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915042822 RX 7438223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487828288 RX 7061995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915044262 RX 7439691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487829887 RX 7063473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915045813 RX 7441169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487831486 RX 7064835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915047376 RX 7442647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487832962 RX 7066303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915048939 RX 7444125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487834561 RX 7067781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915050502 RX 7445487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487836160 RX 7069259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915051942 RX 7446955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487837759 RX 7070737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915053493 RX 7448433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487839358 RX 7072099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915055056 RX 7449911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487840834 RX 7073567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915056619 RX 7451389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487842433 RX 7075045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915058182 RX 7452751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487844032 RX 7076523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2742994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915059622 RX 7454219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487845631 RX 7078001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915061173 RX 7455697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487847230 RX 7079363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915062736 RX 7457175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487848706 RX 7080831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915064311 RX 7458653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487850305 RX 7082309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915065886 RX 7460015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487851904 RX 7083787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915067326 RX 7461483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487853503 RX 7085265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915068877 RX 7462961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487855102 RX 7086627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915070440 RX 7464439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487856578 RX 7088095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915072015 RX 7465917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487858177 RX 7089573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915073578 RX 7467279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2210997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487859776 RX 7091051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915075018 RX 7468747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487861375 RX 7092529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915076569 RX 7470225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487862974 RX 7093891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915078132 RX 7471703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487864450 RX 7095359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915079695 RX 7473181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487866049 RX 7096837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915081258 RX 7474543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487867648 RX 7098315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915082698 RX 7476011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487869247 RX 7099793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915084249 RX 7477489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487870846 RX 7101155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915085812 RX 7478967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487872322 RX 7102623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915087375 RX 7480445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487873921 RX 7104101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915088938 RX 7481807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487875520 RX 7105579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915090378 RX 7483275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487877119 RX 7107057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915091929 RX 7484753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487878718 RX 7108419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915093492 RX 7486231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487880194 RX 7109887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915095055 RX 7487709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487881793 RX 7111365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 264992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915096618 RX 7489071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487883392 RX 7112843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915098058 RX 7490539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487884991 RX 7114321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915099621 RX 7492017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487886590 RX 7115683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915101184 RX 7493495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487888066 RX 7117151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915102747 RX 7494973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487889665 RX 7118629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915104310 RX 7496335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487891264 RX 7120107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915105750 RX 7497803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487892863 RX 7121585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915107313 RX 7499281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487894462 RX 7122947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915108876 RX 7500759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487895938 RX 7124415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915110439 RX 7502237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487897537 RX 7125893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915112002 RX 7503599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487899136 RX 7127371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915113442 RX 7505067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487900735 RX 7128849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915114993 RX 7506545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487902334 RX 7130211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915116556 RX 7508023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487903810 RX 7131679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915118119 RX 7509501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487905409 RX 7133157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915119682 RX 7510863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487907008 RX 7134635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915121122 RX 7512331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487908607 RX 7136113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915122673 RX 7513809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487910206 RX 7137475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915124236 RX 7515287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487911682 RX 7138943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915125799 RX 7516765 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487913281 RX 7140421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915127362 RX 7518127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487914880 RX 7141899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915128802 RX 7519595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487916479 RX 7143377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915130353 RX 7521073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487918078 RX 7144739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915131916 RX 7522551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487919554 RX 7146207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915133479 RX 7524029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487921153 RX 7147685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915135054 RX 7525391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487922752 RX 7149163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915136494 RX 7526859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487924351 RX 7150641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915138045 RX 7528337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487925950 RX 7152003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915139608 RX 7529815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487927426 RX 7153471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915141171 RX 7531293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487929025 RX 7154949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915142734 RX 7532655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487930624 RX 7156427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915144174 RX 7534123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487932223 RX 7157905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915145725 RX 7535601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487933822 RX 7159267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915147288 RX 7537079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487935298 RX 7160735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915148851 RX 7538557 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487936897 RX 7162213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915150414 RX 7539919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 249992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487938496 RX 7163691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915151854 RX 7541387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487940095 RX 7165169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915153405 RX 7542865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487941694 RX 7166531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915154968 RX 7544343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487943170 RX 7167999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915156531 RX 7545821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487944769 RX 7169477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915158094 RX 7547183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487946368 RX 7170955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915159534 RX 7548651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487947967 RX 7172433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915161085 RX 7550129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487949566 RX 7173795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915162648 RX 7551607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487951042 RX 7175263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915164211 RX 7553085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487952641 RX 7176741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915165774 RX 7554447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487954240 RX 7178219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915167214 RX 7555915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487955839 RX 7179697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915168765 RX 7557393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487957438 RX 7181059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915170328 RX 7558871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487958914 RX 7182527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915171891 RX 7560349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487960513 RX 7184005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915173454 RX 7561711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487962112 RX 7185483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915174894 RX 7563179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487963711 RX 7186961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915176445 RX 7564657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487965310 RX 7188323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915178020 RX 7566135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487966786 RX 7189791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2743993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915179583 RX 7567613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487968385 RX 7191269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915181146 RX 7568975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487969984 RX 7192747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915182586 RX 7570443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487971583 RX 7194225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915184137 RX 7571921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487973182 RX 7195587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915185700 RX 7573399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487974658 RX 7197055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915187263 RX 7574877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487976257 RX 7198533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915188826 RX 7576239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487977856 RX 7200011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915190266 RX 7577707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487979455 RX 7201489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915191817 RX 7579185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487981054 RX 7202851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915193380 RX 7580663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2211995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487982530 RX 7204319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915194943 RX 7582141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487984129 RX 7205797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915196506 RX 7583503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487985728 RX 7207275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915197946 RX 7584971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487987327 RX 7208753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915199497 RX 7586449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487988926 RX 7210115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915201060 RX 7587927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487990402 RX 7211583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915202623 RX 7589405 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487992001 RX 7213061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915204186 RX 7590767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487993600 RX 7214539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915205626 RX 7592235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487995199 RX 7216017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915207177 RX 7593713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487996798 RX 7217379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915208740 RX 7595191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487998274 RX 7218847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915210303 RX 7596669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17487999873 RX 7220325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915211866 RX 7598031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488001472 RX 7221803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915213318 RX 7599499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488003071 RX 7223281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915214881 RX 7600977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488004670 RX 7224643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 265991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915216444 RX 7602455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488006146 RX 7226111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915218007 RX 7603933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488007745 RX 7227589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915219570 RX 7605295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488009344 RX 7229067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915221022 RX 7606763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488010943 RX 7230545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915222573 RX 7608241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488012542 RX 7231907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915224136 RX 7609719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488014018 RX 7233375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915225699 RX 7611197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488015617 RX 7234853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915227262 RX 7612559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488017216 RX 7236331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915228702 RX 7614027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488018815 RX 7237809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915230253 RX 7615505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488020414 RX 7239171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915231816 RX 7616983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488021890 RX 7240639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915233379 RX 7618461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488023489 RX 7242117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915234942 RX 7619823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488025088 RX 7243595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915236382 RX 7621291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488026687 RX 7245073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915237933 RX 7622769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488028286 RX 7246435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915239496 RX 7624247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488029762 RX 7247903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915241059 RX 7625725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488031361 RX 7249381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915242622 RX 7627087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488032960 RX 7250859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915244062 RX 7628555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488034559 RX 7252337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915245613 RX 7630033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488036158 RX 7253699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915247176 RX 7631511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488037634 RX 7255167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915248751 RX 7632989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488039233 RX 7256645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915250326 RX 7634351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488040832 RX 7258123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915251766 RX 7635819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488042431 RX 7259601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915253317 RX 7637297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488044030 RX 7260963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915254880 RX 7638775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488045506 RX 7262431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915256443 RX 7640253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488047105 RX 7263909 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915258006 RX 7641615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488048704 RX 7265387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915259446 RX 7643083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488050303 RX 7266865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266362/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915260997 RX 7644561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488051902 RX 7268227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915262560 RX 7646039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488053378 RX 7269695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915264123 RX 7647517 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488054977 RX 7271173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915265686 RX 7648879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488056576 RX 7272651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915267126 RX 7650347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488058175 RX 7274129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915268677 RX 7651825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488059774 RX 7275491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915270240 RX 7653303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 250990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488061250 RX 7276959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915271803 RX 7654781 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488062849 RX 7278437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915273366 RX 7656143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488064448 RX 7279915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915274806 RX 7657611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488066047 RX 7281393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915276357 RX 7659089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488067646 RX 7282755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915277920 RX 7660567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488069122 RX 7284223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915279483 RX 7662045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488070721 RX 7285701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915281046 RX 7663407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488072320 RX 7287179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915282486 RX 7664875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488073919 RX 7288657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915284049 RX 7666353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488075518 RX 7290019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915285612 RX 7667831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488076994 RX 7291487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915287175 RX 7669309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488078593 RX 7292965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915288738 RX 7670671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488080192 RX 7294443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915290178 RX 7672139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488081791 RX 7295921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266618/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915291729 RX 7673617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488083390 RX 7297283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266631/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915293292 RX 7675095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488084866 RX 7298751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915294855 RX 7676573 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488086465 RX 7300229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915296418 RX 7677935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488088064 RX 7301707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915297858 RX 7679403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488089663 RX 7303185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2744991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915299409 RX 7680881 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488091262 RX 7304547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915300972 RX 7682359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488092738 RX 7306015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915302535 RX 7683837 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488094337 RX 7307493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915304098 RX 7685199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488095936 RX 7308971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915305538 RX 7686667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488097535 RX 7310449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915307089 RX 7688145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488099134 RX 7311811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915308652 RX 7689623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488100610 RX 7313279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915310215 RX 7691101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488102209 RX 7314757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915311778 RX 7692463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488103808 RX 7316235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915313218 RX 7693931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2212994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488105407 RX 7317713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915314769 RX 7695409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488107006 RX 7319075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915316332 RX 7696887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488108482 RX 7320543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915317895 RX 7698365 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488110081 RX 7322021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915319470 RX 7699727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488111680 RX 7323499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915320910 RX 7701195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488113279 RX 7324977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915322461 RX 7702673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488114878 RX 7326339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266887/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915324024 RX 7704151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488116354 RX 7327807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915325587 RX 7705629 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488117953 RX 7329285 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915327150 RX 7706991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488119552 RX 7330763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915328602 RX 7708459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488121151 RX 7332241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915330153 RX 7709937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488122750 RX 7333603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915331716 RX 7711415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488124226 RX 7335071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915333279 RX 7712893 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488125825 RX 7336549 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915334842 RX 7714255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488127424 RX 7338027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 266989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915336282 RX 7715723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488129023 RX 7339505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915337833 RX 7717201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488130622 RX 7340867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915339396 RX 7718679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488132098 RX 7342335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915340959 RX 7720157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488133697 RX 7343813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915342522 RX 7721519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488135296 RX 7345291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915343962 RX 7722987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488136895 RX 7346769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915345513 RX 7724465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488138494 RX 7348131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915347076 RX 7725943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488139970 RX 7349599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915348639 RX 7727421 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488141569 RX 7351077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915350202 RX 7728783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488143168 RX 7352555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915351642 RX 7730251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488144767 RX 7354033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915353193 RX 7731729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488146366 RX 7355395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915354756 RX 7733207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488147842 RX 7356863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915356319 RX 7734685 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488149441 RX 7358341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915357882 RX 7736047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488151040 RX 7359819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915359322 RX 7737515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488152639 RX 7361297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915360873 RX 7738993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488154238 RX 7362659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915362448 RX 7740471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488155714 RX 7364127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915364011 RX 7741949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488157313 RX 7365605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915365574 RX 7743311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488158912 RX 7367083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915367014 RX 7744779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488160511 RX 7368561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915368565 RX 7746257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488162110 RX 7369923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915370140 RX 7747735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488163586 RX 7371391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915371703 RX 7749213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488165185 RX 7372869 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915373266 RX 7750575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488166784 RX 7374347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915374706 RX 7752043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488168383 RX 7375825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915376257 RX 7753521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488169982 RX 7377187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915377820 RX 7754999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488171458 RX 7378655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915379383 RX 7756477 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488173057 RX 7380133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915380946 RX 7757839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488174656 RX 7381611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915382386 RX 7759307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488176255 RX 7383089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915383937 RX 7760785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488177854 RX 7384451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267399/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915385500 RX 7762263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488179330 RX 7385919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915387063 RX 7763741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488180929 RX 7387397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915388626 RX 7765103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488182528 RX 7388875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915390066 RX 7766571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 251989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488184127 RX 7390353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915391617 RX 7768049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488185726 RX 7391715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915393180 RX 7769527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488187202 RX 7393183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915394743 RX 7771005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488188801 RX 7394661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915396306 RX 7772367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488190400 RX 7396139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915397758 RX 7773835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488191999 RX 7397617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915399321 RX 7775313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488193598 RX 7398979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915400884 RX 7776791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488195074 RX 7400447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915402447 RX 7778269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488196673 RX 7401925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915404010 RX 7779631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488198272 RX 7403403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915405450 RX 7781099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488199871 RX 7404881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915407001 RX 7782577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488201470 RX 7406243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915408564 RX 7784055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488202946 RX 7407711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915410127 RX 7785533 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488204545 RX 7409189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915411690 RX 7786895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488206144 RX 7410667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915413130 RX 7788363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488207743 RX 7412145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915414681 RX 7789841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488209342 RX 7413507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915416244 RX 7791319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488210818 RX 7414975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915417807 RX 7792797 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488212417 RX 7416453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2745990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915419370 RX 7794159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488214016 RX 7417931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915420810 RX 7795627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488215615 RX 7419409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915422361 RX 7797105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488217214 RX 7420771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915423924 RX 7798583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488218690 RX 7422239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915425487 RX 7800061 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488220289 RX 7423717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915427050 RX 7801423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488221888 RX 7425195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915428490 RX 7802891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488223487 RX 7426673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915430041 RX 7804369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488225086 RX 7428035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915431604 RX 7805847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488226562 RX 7429503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915433179 RX 7807325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2213992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488228161 RX 7430981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915434754 RX 7808687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488229760 RX 7432459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915436194 RX 7810155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488231359 RX 7433937 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915437745 RX 7811633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488232958 RX 7435299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915439308 RX 7813111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488234434 RX 7436767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915440883 RX 7814589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488236033 RX 7438245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915442446 RX 7815951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488237632 RX 7439723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915443886 RX 7817419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488239231 RX 7441201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915445437 RX 7818897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488240830 RX 7442563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915447000 RX 7820375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488242306 RX 7444031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915448563 RX 7821853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488243905 RX 7445509 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915450126 RX 7823215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488245504 RX 7446987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915451566 RX 7824683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488247103 RX 7448465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267962/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915453117 RX 7826161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488248702 RX 7449827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915454680 RX 7827639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488250178 RX 7451295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 267988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915456243 RX 7829117 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488251777 RX 7452773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915457806 RX 7830479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488253376 RX 7454251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915459246 RX 7831947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488254975 RX 7455729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915460797 RX 7833425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488256574 RX 7457091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915462360 RX 7834903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488258050 RX 7458559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915463923 RX 7836381 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488259649 RX 7460037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915465486 RX 7837743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488261248 RX 7461515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915466926 RX 7839211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488262847 RX 7462993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915468489 RX 7840689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488264446 RX 7464355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915470052 RX 7842167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488265922 RX 7465823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915471615 RX 7843645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488267521 RX 7467301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915473178 RX 7845007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488269120 RX 7468779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915474618 RX 7846475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488270719 RX 7470257 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915476169 RX 7847953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488272318 RX 7471619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268167/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915477732 RX 7849431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488273794 RX 7473087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915479295 RX 7850909 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488275393 RX 7474565 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915480858 RX 7852271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488276992 RX 7476043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915482298 RX 7853739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488278591 RX 7477521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915483849 RX 7855217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488280190 RX 7478883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915485412 RX 7856695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488281666 RX 7480351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915486975 RX 7858173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488283265 RX 7481829 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915488538 RX 7859535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488284864 RX 7483307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915489978 RX 7861003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488286463 RX 7484785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915491529 RX 7862481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488288062 RX 7486147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915493092 RX 7863959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488289538 RX 7487615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915494655 RX 7865437 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488291137 RX 7489093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915496218 RX 7866799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488292736 RX 7490571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915497658 RX 7868267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488294335 RX 7492049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915499209 RX 7869745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488295934 RX 7493411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915500772 RX 7871223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488297410 RX 7494879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915502335 RX 7872701 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488299009 RX 7496357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915503910 RX 7874063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488300608 RX 7497835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915505350 RX 7875531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488302207 RX 7499313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915506901 RX 7877009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488303806 RX 7500675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915508464 RX 7878487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488305282 RX 7502143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915510027 RX 7879965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 252987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488306881 RX 7503621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915511590 RX 7881327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488308480 RX 7505099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915513042 RX 7882795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488310079 RX 7506577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268474/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915514593 RX 7884273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488311678 RX 7507939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915516156 RX 7885751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488313154 RX 7509407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915517719 RX 7887229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488314753 RX 7510885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915519282 RX 7888591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488316352 RX 7512363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915520722 RX 7890059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488317951 RX 7513841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915522273 RX 7891537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488319550 RX 7515203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915523836 RX 7893015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488321026 RX 7516671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915525399 RX 7894493 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488322625 RX 7518149 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915526962 RX 7895855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488324224 RX 7519627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915528402 RX 7897323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488325823 RX 7521105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915529953 RX 7898801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488327422 RX 7522467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915531516 RX 7900279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488328898 RX 7523935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915533079 RX 7901757 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488330497 RX 7525413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915534642 RX 7903119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488332096 RX 7526891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915536082 RX 7904587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488333695 RX 7528369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915537633 RX 7906065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488335294 RX 7529731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2746988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915539208 RX 7907543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488336770 RX 7531199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915540783 RX 7909021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488338369 RX 7532677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915542346 RX 7910383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488339968 RX 7534155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915543786 RX 7911851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488341567 RX 7535633 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915545337 RX 7913329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488343166 RX 7536995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915546912 RX 7914807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488344642 RX 7538463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915548475 RX 7916285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488346241 RX 7539941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915550038 RX 7917647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488347840 RX 7541419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915551478 RX 7919115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488349439 RX 7542897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915553029 RX 7920593 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2214991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488351038 RX 7544259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915554604 RX 7922071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488352514 RX 7545727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915556167 RX 7923549 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488354113 RX 7547205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915557730 RX 7924911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488355712 RX 7548683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915559170 RX 7926379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488357311 RX 7550161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915560721 RX 7927857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488358910 RX 7551523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915562284 RX 7929335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488360386 RX 7552991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915563847 RX 7930813 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488361985 RX 7554469 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915565410 RX 7932175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488363584 RX 7555947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915566850 RX 7933643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488365183 RX 7557425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915568401 RX 7935121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488366782 RX 7558787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268935/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915569964 RX 7936599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488368258 RX 7560255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915571527 RX 7938077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488369857 RX 7561733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915573090 RX 7939439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488371456 RX 7563211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915574530 RX 7940907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488373055 RX 7564689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915576093 RX 7942385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488374654 RX 7566051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 268999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915577656 RX 7943863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488376130 RX 7567519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915579219 RX 7945341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488377729 RX 7568997 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915580782 RX 7946703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488379328 RX 7570475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915582234 RX 7948171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488380927 RX 7571953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915583797 RX 7949649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488382526 RX 7573315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915585360 RX 7951127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488384002 RX 7574783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915586923 RX 7952605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488385601 RX 7576261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915588486 RX 7953967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488387200 RX 7577739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915589926 RX 7955435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488388799 RX 7579217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915591477 RX 7956913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488390398 RX 7580579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915593040 RX 7958391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488391874 RX 7582047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915594603 RX 7959869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488393473 RX 7583525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915596166 RX 7961231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488395072 RX 7585003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915597606 RX 7962699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488396671 RX 7586481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915599157 RX 7964177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488398270 RX 7587843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915600720 RX 7965655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488399746 RX 7589311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915602283 RX 7967133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488401345 RX 7590789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915603846 RX 7968495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488402944 RX 7592267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915605286 RX 7969963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488404543 RX 7593745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915606837 RX 7971441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488406142 RX 7595107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915608400 RX 7972919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488407618 RX 7596575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915609963 RX 7974397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488409217 RX 7598053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915611526 RX 7975759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488410816 RX 7599531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915612966 RX 7977227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488412415 RX 7601009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915614517 RX 7978705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488414014 RX 7602371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915616080 RX 7980183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488415490 RX 7603839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915617643 RX 7981661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488417089 RX 7605317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915619218 RX 7983023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488418688 RX 7606795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915620658 RX 7984491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488420287 RX 7608273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915622209 RX 7985969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488421886 RX 7609635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915623772 RX 7987447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488423362 RX 7611103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915625347 RX 7988925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488424961 RX 7612581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915626910 RX 7990287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488426560 RX 7614059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915628350 RX 7991755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488428159 RX 7615537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915629901 RX 7993233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488429758 RX 7616899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915631464 RX 7994711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 253998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488431234 RX 7618367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915633027 RX 7996189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488432833 RX 7619845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915634590 RX 7997551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488434432 RX 7621323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915636030 RX 7999019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488436031 RX 7622801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915637581 RX 8000497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488437630 RX 7624163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915639144 RX 8001975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488439106 RX 7625631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915640707 RX 8003453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488440705 RX 7627109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915642270 RX 8004815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488442304 RX 7628587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915643710 RX 8006283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488443903 RX 7630065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915645261 RX 8007761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488445502 RX 7631427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915646824 RX 8009239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488446978 RX 7632895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915648387 RX 8010717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488448577 RX 7634373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915649950 RX 8012079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488450176 RX 7635851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915651390 RX 8013547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488451775 RX 7637329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915652953 RX 8015025 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488453374 RX 7638691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915654516 RX 8016503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488454850 RX 7640159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915656079 RX 8017981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488456449 RX 7641637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915657642 RX 8019343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488458048 RX 7643115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915659082 RX 8020811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488459647 RX 7644593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2747999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915660633 RX 8022289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488461246 RX 7645955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915662196 RX 8023767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488462722 RX 7647423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915663759 RX 8025245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488464321 RX 7648901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915665322 RX 8026607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488465920 RX 7650379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915666762 RX 8028075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488467519 RX 7651857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915668313 RX 8029553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488469118 RX 7653219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915669876 RX 8031031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488470594 RX 7654687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915671439 RX 8032509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488472193 RX 7656165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915673002 RX 8033871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2215989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488473792 RX 7657643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915674442 RX 8035339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488475391 RX 7659121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915675993 RX 8036817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488476990 RX 7660483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915677556 RX 8038295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488478466 RX 7661951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915679119 RX 8039773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488480065 RX 7663429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915680682 RX 8041135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488481664 RX 7664907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915682122 RX 8042603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488483263 RX 7666385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915683673 RX 8044081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488484862 RX 7667747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915685236 RX 8045559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488486338 RX 7669215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915686799 RX 8047037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488487937 RX 7670693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915688374 RX 8048399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488489536 RX 7672171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915689826 RX 8049867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488491135 RX 7673649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915691377 RX 8051345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488492734 RX 7675011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915692940 RX 8052823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488494210 RX 7676479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915694503 RX 8054301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488495809 RX 7677957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915696066 RX 8055663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488497408 RX 7679435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 269997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915697518 RX 8057131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488499007 RX 7680913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915699069 RX 8058609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488500606 RX 7682275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915700632 RX 8060087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488502082 RX 7683743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915702195 RX 8061565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488503681 RX 7685221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915703758 RX 8062927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488505280 RX 7686699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915705198 RX 8064395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488506879 RX 7688177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915706749 RX 8065873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488508478 RX 7689539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915708312 RX 8067351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488509954 RX 7691007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915709875 RX 8068829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488511553 RX 7692485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915711438 RX 8070191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488513152 RX 7693963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915712878 RX 8071659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488514751 RX 7695441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915714429 RX 8073137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488516350 RX 7696803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915715992 RX 8074615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488517826 RX 7698271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915717555 RX 8076093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488519425 RX 7699749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915719118 RX 8077455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488521024 RX 7701227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915720558 RX 8078923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488522623 RX 7702705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270202/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915722109 RX 8080401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488524222 RX 7704067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915723672 RX 8081879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488525698 RX 7705535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915725247 RX 8083357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488527297 RX 7707013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915726810 RX 8084719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488528896 RX 7708491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915728250 RX 8086187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488530495 RX 7709969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915729801 RX 8087665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488532094 RX 7711331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915731376 RX 8089143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488533570 RX 7712799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915732939 RX 8090621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488535169 RX 7714277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915734502 RX 8091983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488536768 RX 7715755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915735942 RX 8093451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488538367 RX 7717233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915737493 RX 8094929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488539966 RX 7718595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915739068 RX 8096407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488541442 RX 7720063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915740631 RX 8097885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488543041 RX 7721541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915742194 RX 8099247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488544640 RX 7723019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915743634 RX 8100715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488546239 RX 7724497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915745185 RX 8102193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488547838 RX 7725859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915746748 RX 8103671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488549314 RX 7727327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915748311 RX 8105149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488550913 RX 7728805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915749874 RX 8106511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488552512 RX 7730283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915751314 RX 8107979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 254997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488554111 RX 7731761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915752865 RX 8109457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488555710 RX 7733123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915754428 RX 8110935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488557186 RX 7734591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915755991 RX 8112413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488558785 RX 7736069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915757554 RX 8113775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488560384 RX 7737547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915758994 RX 8115243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488561983 RX 7739025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915760557 RX 8116721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488563582 RX 7740387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915762120 RX 8118199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488565058 RX 7741855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915763683 RX 8119677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488566657 RX 7743333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915765246 RX 8121039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488568256 RX 7744811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915766686 RX 8122507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488569855 RX 7746289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915768237 RX 8123985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488571454 RX 7747651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915769800 RX 8125463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488572930 RX 7749119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915771363 RX 8126941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488574529 RX 7750597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915772926 RX 8128303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488576128 RX 7752075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915774366 RX 8129771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488577727 RX 7753553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915775917 RX 8131249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488579326 RX 7754915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915777480 RX 8132727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488580802 RX 7756383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915779043 RX 8134205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488582401 RX 7757861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2748998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915780606 RX 8135567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488584000 RX 7759339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915782046 RX 8137035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488585599 RX 7760817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915783597 RX 8138513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488587198 RX 7762179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915785160 RX 8139991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488588674 RX 7763647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915786723 RX 8141469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488590273 RX 7765125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915788286 RX 8142831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488591872 RX 7766603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915789726 RX 8144299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488593471 RX 7768081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915791277 RX 8145777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488595070 RX 7769443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915792840 RX 8147255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2216987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488596546 RX 7770911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915794403 RX 8148733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488598145 RX 7772389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915795966 RX 8150095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488599744 RX 7773867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915797406 RX 8151563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488601343 RX 7775345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915798957 RX 8153041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488602942 RX 7776707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915800520 RX 8154519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488604418 RX 7778175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915802083 RX 8155997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488606017 RX 7779653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915803658 RX 8157359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488607616 RX 7781131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915805098 RX 8158827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488609215 RX 7782609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915806649 RX 8160305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488610814 RX 7783971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915808212 RX 8161783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488612290 RX 7785439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915809775 RX 8163261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488613889 RX 7786917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915811338 RX 8164623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488615488 RX 7788395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915812778 RX 8166091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488617087 RX 7789873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915814329 RX 8167569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488618686 RX 7791235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915815892 RX 8169047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488620162 RX 7792703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 270996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915817455 RX 8170525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488621761 RX 7794181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915819018 RX 8171887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488623360 RX 7795659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915820458 RX 8173355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488624959 RX 7797137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271034/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915822009 RX 8174833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488626558 RX 7798499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915823572 RX 8176311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488628034 RX 7799967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915825135 RX 8177789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488629633 RX 7801445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915826698 RX 8179151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488631232 RX 7802923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915828138 RX 8180619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488632831 RX 7804401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915829689 RX 8182097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488634430 RX 7805763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915831252 RX 8183575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488635906 RX 7807231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915832815 RX 8185053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488637505 RX 7808709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915834378 RX 8186415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488639104 RX 7810187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915835818 RX 8187883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488640703 RX 7811665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915837381 RX 8189361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488642302 RX 7813027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915838956 RX 8190839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488643778 RX 7814495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915840519 RX 8192317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488645377 RX 7815973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915842082 RX 8193679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488646976 RX 7817451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915843522 RX 8195147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488648575 RX 7818929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915845085 RX 8196625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488650174 RX 7820291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915846648 RX 8198103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488651650 RX 7821759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915848211 RX 8199581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488653249 RX 7823237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915849774 RX 8200943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488654848 RX 7824715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915851214 RX 8202411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488656447 RX 7826193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915852765 RX 8203889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488658046 RX 7827555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915854328 RX 8205367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488659522 RX 7829023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915855891 RX 8206845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488661121 RX 7830501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915857454 RX 8208207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488662720 RX 7831979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915858894 RX 8209675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488664319 RX 7833457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915860445 RX 8211153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488665918 RX 7834819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915862008 RX 8212631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488667394 RX 7836287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915863571 RX 8214109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488668993 RX 7837765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915865134 RX 8215471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488670592 RX 7839243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915866574 RX 8216939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488672191 RX 7840721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915868125 RX 8218417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488673790 RX 7842083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915869688 RX 8219895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488675266 RX 7843551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915871251 RX 8221373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 255995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488676865 RX 7845029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915872814 RX 8222735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488678464 RX 7846507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915874266 RX 8224203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488680063 RX 7847985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915875817 RX 8225681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488681662 RX 7849347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915877380 RX 8227159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488683138 RX 7850815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915878943 RX 8228637 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488684737 RX 7852293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915880506 RX 8229999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488686336 RX 7853771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915881958 RX 8231467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488687935 RX 7855249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915883509 RX 8232945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488689534 RX 7856611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915885072 RX 8234423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488691010 RX 7858079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915886635 RX 8235901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488692609 RX 7859557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915888198 RX 8237263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488694208 RX 7861035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915889638 RX 8238731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488695807 RX 7862513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915891189 RX 8240209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488697406 RX 7863875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915892752 RX 8241687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488698882 RX 7865343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915894315 RX 8243165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488700481 RX 7866821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915895878 RX 8244527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488702080 RX 7868299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915897318 RX 8245995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488703679 RX 7869777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915898869 RX 8247473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488705278 RX 7871139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2749996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915900432 RX 8248951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488706754 RX 7872607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915901995 RX 8250429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488708353 RX 7874085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915903558 RX 8251791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488709952 RX 7875563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915904998 RX 8253259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488711551 RX 7877041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915906549 RX 8254737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488713150 RX 7878403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915908112 RX 8256215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488714626 RX 7879871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915909687 RX 8257693 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488716225 RX 7881349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915911250 RX 8259055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488717824 RX 7882827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915912690 RX 8260523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488719423 RX 7884305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915914241 RX 8262001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2217999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488721022 RX 7885667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915915804 RX 8263479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488722498 RX 7887135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915917367 RX 8264957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488724097 RX 7888613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915918930 RX 8266319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488725696 RX 7890091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915920370 RX 8267787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488727295 RX 7891569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915921921 RX 8269265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488728894 RX 7892931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915923484 RX 8270743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488730370 RX 7894399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915925047 RX 8272221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488731969 RX 7895877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915926610 RX 8273583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488733568 RX 7897355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915928050 RX 8275051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488735167 RX 7898833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915929601 RX 8276529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488736766 RX 7900195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915931164 RX 8278007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488738242 RX 7901663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915932727 RX 8279485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488739841 RX 7903141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915934290 RX 8280847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488741440 RX 7904619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915935730 RX 8282315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488743039 RX 7906097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 271994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915937281 RX 8283793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488744638 RX 7907459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915938844 RX 8285271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488746114 RX 7908927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915940407 RX 8286749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488747713 RX 7910405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915941970 RX 8288111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488749312 RX 7911883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915943410 RX 8289579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488750911 RX 7913361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915944961 RX 8291057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488752510 RX 7914723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915946524 RX 8292535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488753986 RX 7916191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915948087 RX 8294013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488755585 RX 7917669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915949650 RX 8295375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488757184 RX 7919147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915951090 RX 8296843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488758783 RX 7920625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915952653 RX 8298321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488760382 RX 7921987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915954216 RX 8299799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488761858 RX 7923455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915955779 RX 8301277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488763457 RX 7924933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915957342 RX 8302639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488765056 RX 7926411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915958782 RX 8304107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488766655 RX 7927889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915960333 RX 8305585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488768254 RX 7929251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915961896 RX 8307063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488769730 RX 7930719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915963459 RX 8308541 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488771329 RX 7932197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915965022 RX 8309903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488772928 RX 7933675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915966462 RX 8311371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488774527 RX 7935153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915968013 RX 8312849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488776126 RX 7936515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915969576 RX 8314327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488777602 RX 7937983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915971139 RX 8315805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488779201 RX 7939461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915972702 RX 8317167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488780800 RX 7940939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915974142 RX 8318635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488782399 RX 7942417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272314/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915975693 RX 8320113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488783998 RX 7943779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915977256 RX 8321591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488785474 RX 7945247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915978819 RX 8323069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488787073 RX 7946725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915980382 RX 8324431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488788672 RX 7948203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915981822 RX 8325899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488790271 RX 7949681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915983373 RX 8327377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488791870 RX 7951043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915984936 RX 8328855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488793346 RX 7952511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915986499 RX 8330333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488794945 RX 7953989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915988086 RX 8331695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488796544 RX 7955467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915989526 RX 8333163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488798143 RX 7956945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915991077 RX 8334641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 256993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488799742 RX 7958307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915992640 RX 8336119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488801218 RX 7959775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915994215 RX 8337597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488802817 RX 7961253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915995778 RX 8338959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488804416 RX 7962731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915997218 RX 8340427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488806015 RX 7964209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19915998769 RX 8341905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488807614 RX 7965571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916000332 RX 8343383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488809090 RX 7967039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916001895 RX 8344861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488810689 RX 7968517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916003458 RX 8346223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488812288 RX 7969995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916004898 RX 8347691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488813887 RX 7971473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916006449 RX 8349169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488815486 RX 7972835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916008012 RX 8350647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488816962 RX 7974303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916009575 RX 8352125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488818561 RX 7975781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916011138 RX 8353487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488820160 RX 7977259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916012578 RX 8354955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488821759 RX 7978737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916014129 RX 8356433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488823358 RX 7980099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916015692 RX 8357911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488824834 RX 7981567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916017255 RX 8359389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488826433 RX 7983045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916018818 RX 8360751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488828032 RX 7984523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2750994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916020258 RX 8362219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488829631 RX 7986001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916021821 RX 8363697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488831230 RX 7987363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916023396 RX 8365175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488832706 RX 7988831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916024959 RX 8366653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488834305 RX 7990309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916026522 RX 8368015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488835904 RX 7991787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916027962 RX 8369483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488837503 RX 7993265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916029513 RX 8370961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488839102 RX 7994627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916031076 RX 8372439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488840578 RX 7996095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916032639 RX 8373917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488842177 RX 7997573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916034202 RX 8375279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2218997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488843776 RX 7999051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916035642 RX 8376747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488845375 RX 8000529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916037193 RX 8378225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488846974 RX 8001891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916038756 RX 8379703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488848450 RX 8003359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916040319 RX 8381181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488850049 RX 8004837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916041882 RX 8382543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488851648 RX 8006315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916043322 RX 8384011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488853247 RX 8007793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916044873 RX 8385489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488854846 RX 8009155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916046436 RX 8386967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488856322 RX 8010623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916047999 RX 8388445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488857921 RX 8012101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916049562 RX 8389807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488859520 RX 8013579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916051002 RX 8391275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488861119 RX 8015057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916052553 RX 8392753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488862718 RX 8016419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916054116 RX 8394231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488864194 RX 8017887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916055679 RX 8395709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488865793 RX 8019365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 272992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916057242 RX 8397071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488867392 RX 8020843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916058694 RX 8398539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488868991 RX 8022321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916060245 RX 8400017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488870590 RX 8023683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916061808 RX 8401495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488872066 RX 8025151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916063371 RX 8402973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488873665 RX 8026629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916064934 RX 8404335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488875264 RX 8028107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916066374 RX 8405803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488876863 RX 8029585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916067925 RX 8407281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488878462 RX 8030947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916069488 RX 8408759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488879938 RX 8032415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916071051 RX 8410237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488881537 RX 8033893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916072614 RX 8411599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488883136 RX 8035371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916074054 RX 8413067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488884735 RX 8036849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916075605 RX 8414545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488886334 RX 8038211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916077168 RX 8416023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488887810 RX 8039679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916078731 RX 8417501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488889409 RX 8041157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916080294 RX 8418863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488891008 RX 8042635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916081734 RX 8420331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488892607 RX 8044113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916083285 RX 8421809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488894206 RX 8045475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916084848 RX 8423287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488895682 RX 8046943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916086411 RX 8424765 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488897281 RX 8048421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916087974 RX 8426127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488898880 RX 8049899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916089414 RX 8427595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488900479 RX 8051377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916090965 RX 8429073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488902078 RX 8052739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916092528 RX 8430551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488903554 RX 8054207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916094103 RX 8432029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488905153 RX 8055685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916095666 RX 8433391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488906752 RX 8057163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916097106 RX 8434859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488908351 RX 8058641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916098657 RX 8436337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488909950 RX 8060003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916100220 RX 8437815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488911426 RX 8061471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916101795 RX 8439293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488913025 RX 8062949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916103358 RX 8440655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488914624 RX 8064427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916104798 RX 8442123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488916223 RX 8065905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916106349 RX 8443601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488917822 RX 8067267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916107912 RX 8445079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488919298 RX 8068735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916109475 RX 8446557 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488920897 RX 8070213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916111038 RX 8447919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 257992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488922496 RX 8071691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916112478 RX 8449387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488924095 RX 8073169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916114029 RX 8450865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488925694 RX 8074531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916115592 RX 8452343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488927170 RX 8075999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916117155 RX 8453821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488928769 RX 8077477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916118718 RX 8455183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488930368 RX 8078955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916120158 RX 8456651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488931967 RX 8080433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916121709 RX 8458129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488933566 RX 8081795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916123272 RX 8459607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488935042 RX 8083263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916124835 RX 8461085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488936641 RX 8084741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916126398 RX 8462447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488938240 RX 8086219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916127838 RX 8463915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488939839 RX 8087697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916129389 RX 8465393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488941438 RX 8089059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916130952 RX 8466871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488942914 RX 8090527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916132515 RX 8468349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488944513 RX 8092005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916134078 RX 8469711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488946112 RX 8093483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916135518 RX 8471179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488947711 RX 8094961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916137081 RX 8472657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488949310 RX 8096323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916138644 RX 8474135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488950786 RX 8097791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2751993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916140207 RX 8475613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488952385 RX 8099269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916141770 RX 8476975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488953984 RX 8100747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916143210 RX 8478443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488955583 RX 8102225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916144773 RX 8479921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488957182 RX 8103587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916146336 RX 8481399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488958658 RX 8105055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916147899 RX 8482877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488960257 RX 8106533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916149462 RX 8484239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488961856 RX 8108011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916150902 RX 8485707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488963455 RX 8109489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916152453 RX 8487185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488965054 RX 8110851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916154016 RX 8488663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2219995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488966530 RX 8112319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916155579 RX 8490141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488968129 RX 8113797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916157142 RX 8491503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488969728 RX 8115275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916158582 RX 8492971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488971327 RX 8116753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916160133 RX 8494449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488972926 RX 8118115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916161696 RX 8495927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488974402 RX 8119583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916163259 RX 8497405 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488976001 RX 8121061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916164822 RX 8498767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488977600 RX 8122539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916166262 RX 8500235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488979199 RX 8124017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916167813 RX 8501713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488980798 RX 8125379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916169376 RX 8503191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488982274 RX 8126847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916170939 RX 8504669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488983873 RX 8128325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916172526 RX 8506031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488985472 RX 8129803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916173966 RX 8507499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488987071 RX 8131281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916175517 RX 8508977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488988670 RX 8132643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 273991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916177080 RX 8510455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488990146 RX 8134111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916178643 RX 8511933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488991745 RX 8135589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916180206 RX 8513295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488993344 RX 8137067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916181646 RX 8514763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488994943 RX 8138545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916183197 RX 8516241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488996542 RX 8139907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916184760 RX 8517719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488998018 RX 8141375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916186323 RX 8519197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17488999617 RX 8142853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916187886 RX 8520559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489001216 RX 8144331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916189326 RX 8522027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489002815 RX 8145809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916190877 RX 8523505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489004414 RX 8147171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916192440 RX 8524983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489005890 RX 8148639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916194003 RX 8526461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489007489 RX 8150117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916195566 RX 8527823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489009088 RX 8151595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916197006 RX 8529291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489010687 RX 8153073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916198557 RX 8530769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489012286 RX 8154435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916200120 RX 8532247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489013762 RX 8155903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916201683 RX 8533725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489015361 RX 8157381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916203246 RX 8535087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489016960 RX 8158859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916204686 RX 8536555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489018559 RX 8160337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916206249 RX 8538033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489020158 RX 8161699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916207824 RX 8539511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489021634 RX 8163167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916209387 RX 8540989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489023233 RX 8164645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916210950 RX 8542351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489024832 RX 8166123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916212390 RX 8543819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489026431 RX 8167601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916213941 RX 8545297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489028030 RX 8168963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916215516 RX 8546775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489029506 RX 8170431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916217079 RX 8548253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489031105 RX 8171909 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916218642 RX 8549615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489032704 RX 8173387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916220082 RX 8551083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489034303 RX 8174865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274362/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916221633 RX 8552561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489035902 RX 8176227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916223196 RX 8554039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489037378 RX 8177695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916224759 RX 8555517 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489038977 RX 8179173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916226322 RX 8556879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489040576 RX 8180651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916227762 RX 8558347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489042175 RX 8182129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916229313 RX 8559825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489043774 RX 8183491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916230876 RX 8561303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 258990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489045250 RX 8184959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916232439 RX 8562781 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489046849 RX 8186437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916234002 RX 8564143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489048448 RX 8187915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916235442 RX 8565611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489050047 RX 8189393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916236993 RX 8567089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489051646 RX 8190755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916238556 RX 8568567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489053122 RX 8192223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916240119 RX 8570045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489054721 RX 8193701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916241682 RX 8571407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489056320 RX 8195179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916243134 RX 8572875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489057919 RX 8196657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916244685 RX 8574353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489059518 RX 8198019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916246248 RX 8575831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489060994 RX 8199487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916247811 RX 8577309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489062593 RX 8200965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916249374 RX 8578671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489064192 RX 8202443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916250814 RX 8580139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489065791 RX 8203921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274618/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916252365 RX 8581617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489067390 RX 8205283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274631/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916253928 RX 8583095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489068866 RX 8206751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916255491 RX 8584573 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489070465 RX 8208229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916257054 RX 8585935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489072064 RX 8209707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916258494 RX 8587403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489073663 RX 8211185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2752991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916260045 RX 8588881 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489075262 RX 8212547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916261608 RX 8590359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489076738 RX 8214015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916263171 RX 8591837 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489078337 RX 8215493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916264734 RX 8593199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489079936 RX 8216971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916266174 RX 8594667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489081535 RX 8218449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916267725 RX 8596145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489083134 RX 8219811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916269288 RX 8597623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489084610 RX 8221279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916270851 RX 8599101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489086209 RX 8222757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916272414 RX 8600463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489087808 RX 8224235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916273854 RX 8601931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2220994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489089407 RX 8225713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916275405 RX 8603409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489091006 RX 8227075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916276968 RX 8604887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489092482 RX 8228543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916278543 RX 8606365 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489094081 RX 8230021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916280106 RX 8607727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489095680 RX 8231499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916281546 RX 8609195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489097279 RX 8232977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916283097 RX 8610673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489098878 RX 8234339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274887/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916284660 RX 8612151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489100354 RX 8235807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916286235 RX 8613629 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489101953 RX 8237285 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916287798 RX 8614991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489103552 RX 8238763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916289238 RX 8616459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489105151 RX 8240241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916290789 RX 8617937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489106750 RX 8241603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916292352 RX 8619415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489108226 RX 8243071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916293915 RX 8620893 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489109825 RX 8244549 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916295478 RX 8622255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489111424 RX 8246027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 274989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916296918 RX 8623723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489113023 RX 8247505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916298469 RX 8625201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489114622 RX 8248867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916300032 RX 8626679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489116098 RX 8250335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916301595 RX 8628157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489117697 RX 8251813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916303158 RX 8629519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489119296 RX 8253291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916304598 RX 8630987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489120895 RX 8254769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916306149 RX 8632465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489122494 RX 8256131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916307712 RX 8633943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489123970 RX 8257599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916309275 RX 8635421 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489125569 RX 8259077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916310838 RX 8636783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489127168 RX 8260555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916312278 RX 8638251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489128767 RX 8262033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916313853 RX 8639729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489130366 RX 8263395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916315416 RX 8641207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489131842 RX 8264863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916316979 RX 8642685 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489133441 RX 8266341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916318542 RX 8644047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489135040 RX 8267819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916319982 RX 8645515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489136639 RX 8269297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916321545 RX 8646993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489138238 RX 8270659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916323108 RX 8648471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489139714 RX 8272127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916324671 RX 8649949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489141313 RX 8273605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916326234 RX 8651311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489142912 RX 8275083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916327674 RX 8652779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489144511 RX 8276561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916329237 RX 8654257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489146110 RX 8277923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916330800 RX 8655735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489147586 RX 8279391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916332363 RX 8657213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489149185 RX 8280869 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916333926 RX 8658575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489150784 RX 8282347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916335366 RX 8660043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489152383 RX 8283825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916336917 RX 8661521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489153982 RX 8285187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916338480 RX 8662999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489155458 RX 8286655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916340043 RX 8664477 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489157057 RX 8288133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916341606 RX 8665839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489158656 RX 8289611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916343046 RX 8667307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489160255 RX 8291089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916344597 RX 8668785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489161854 RX 8292451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275399/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916346160 RX 8670263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489163330 RX 8293919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916347723 RX 8671741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489164929 RX 8295397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916349298 RX 8673103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489166528 RX 8296875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916350738 RX 8674571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 259989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489168127 RX 8298353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916352289 RX 8676049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489169726 RX 8299715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916353852 RX 8677527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489171202 RX 8301183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916355415 RX 8679005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489172801 RX 8302661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916357002 RX 8680367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489174400 RX 8304139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916358442 RX 8681835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489175999 RX 8305617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916359993 RX 8683313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489177598 RX 8306979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916361556 RX 8684791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489179074 RX 8308447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916363119 RX 8686269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489180673 RX 8309925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916364682 RX 8687631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489182272 RX 8311403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916366122 RX 8689099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489183871 RX 8312881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916367673 RX 8690577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489185470 RX 8314243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916369236 RX 8692055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489186946 RX 8315711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916370799 RX 8693533 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489188545 RX 8317189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916372362 RX 8694895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489190144 RX 8318667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916373802 RX 8696363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489191743 RX 8320145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916375353 RX 8697841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489193342 RX 8321507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916376916 RX 8699319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489194818 RX 8322975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916378479 RX 8700797 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489196417 RX 8324453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2753990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916380042 RX 8702159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489198016 RX 8325931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916381482 RX 8703627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489199615 RX 8327409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916383033 RX 8705105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489201214 RX 8328771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916384596 RX 8706583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489202690 RX 8330239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916386159 RX 8708061 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489204289 RX 8331717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916387722 RX 8709423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489205888 RX 8333195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916389162 RX 8710891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489207487 RX 8334673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916390713 RX 8712369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489209086 RX 8336035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916392288 RX 8713847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489210562 RX 8337503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916393851 RX 8715325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2221992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489212161 RX 8338981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916395414 RX 8716687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489213760 RX 8340459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916396854 RX 8718155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489215359 RX 8341937 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916398405 RX 8719633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489216958 RX 8343299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916399980 RX 8721111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489218434 RX 8344767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916401543 RX 8722589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489220033 RX 8346245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916403106 RX 8723951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489221632 RX 8347723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916404546 RX 8725419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489223231 RX 8349201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916406097 RX 8726897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489224830 RX 8350563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916407660 RX 8728375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489226306 RX 8352031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916409223 RX 8729853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489227905 RX 8353509 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916410786 RX 8731215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489229504 RX 8354987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916412226 RX 8732683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489231103 RX 8356465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275962/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916413777 RX 8734161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489232702 RX 8357827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916415340 RX 8735639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489234178 RX 8359295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 275988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916416903 RX 8737117 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489235777 RX 8360773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916418466 RX 8738479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489237376 RX 8362251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916419906 RX 8739947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489238975 RX 8363729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916421457 RX 8741425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489240574 RX 8365091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916423020 RX 8742903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489242050 RX 8366559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916424583 RX 8744381 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489243649 RX 8368037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916426146 RX 8745743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489245248 RX 8369515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916427598 RX 8747211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489246847 RX 8370993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916429149 RX 8748689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489248446 RX 8372355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916430712 RX 8750167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489249922 RX 8373823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916432275 RX 8751645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489251521 RX 8375301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916433838 RX 8753007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489253120 RX 8376779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916435278 RX 8754475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489254719 RX 8378257 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916436829 RX 8755953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489256318 RX 8379619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276167/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916438392 RX 8757431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489257794 RX 8381087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916439955 RX 8758909 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489259393 RX 8382565 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916441518 RX 8760271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489260992 RX 8384043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916442958 RX 8761739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489262591 RX 8385521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916444509 RX 8763217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489264190 RX 8386883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916446072 RX 8764695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489265666 RX 8388351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916447635 RX 8766173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489267265 RX 8389829 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916449198 RX 8767535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489268864 RX 8391307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916450638 RX 8769003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489270463 RX 8392785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916452189 RX 8770481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489272062 RX 8394147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916453752 RX 8771959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489273538 RX 8395615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916455315 RX 8773437 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489275137 RX 8397093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916456878 RX 8774799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489276736 RX 8398571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916458318 RX 8776267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489278335 RX 8400049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916459869 RX 8777745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489279934 RX 8401411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916461432 RX 8779223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489281410 RX 8402879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916463019 RX 8780701 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489283009 RX 8404357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916464582 RX 8782063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489284608 RX 8405835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916466022 RX 8783531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489286207 RX 8407313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916467573 RX 8785009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489287806 RX 8408675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916469136 RX 8786487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489289282 RX 8410143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916470711 RX 8787965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 260987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489290881 RX 8411621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916472274 RX 8789327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489292480 RX 8413099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916473714 RX 8790795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489294079 RX 8414577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276474/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916475265 RX 8792273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489295678 RX 8415939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916476828 RX 8793751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489297154 RX 8417407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916478391 RX 8795229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489298753 RX 8418885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916479954 RX 8796591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489300352 RX 8420363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916481394 RX 8798059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489301951 RX 8421841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916482945 RX 8799537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489303550 RX 8423203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916484508 RX 8801015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489305026 RX 8424671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916486071 RX 8802493 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489306625 RX 8426149 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916487634 RX 8803855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489308224 RX 8427627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916489074 RX 8805323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489309823 RX 8429105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916490625 RX 8806801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489311422 RX 8430467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916492188 RX 8808279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489312898 RX 8431935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916493751 RX 8809757 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489314497 RX 8433413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916495314 RX 8811119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489316096 RX 8434891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916496754 RX 8812587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489317695 RX 8436369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916498317 RX 8814065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489319294 RX 8437731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2754988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916499880 RX 8815543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489320770 RX 8439199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916501443 RX 8817021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489322369 RX 8440677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916503006 RX 8818383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489323968 RX 8442155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916504446 RX 8819851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489325567 RX 8443633 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916506009 RX 8821329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489327166 RX 8444995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916507572 RX 8822807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489328642 RX 8446463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916509135 RX 8824285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489330241 RX 8447941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916510698 RX 8825647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489331840 RX 8449419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916512138 RX 8827115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489333439 RX 8450897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916513701 RX 8828593 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2222991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489335038 RX 8452259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916515264 RX 8830071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489336514 RX 8453727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916516827 RX 8831549 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489338113 RX 8455205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916518390 RX 8832911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489339712 RX 8456683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916519830 RX 8834379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489341311 RX 8458161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916521381 RX 8835857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489342910 RX 8459523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916522944 RX 8837335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489344386 RX 8460991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916524507 RX 8838813 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489345985 RX 8462469 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916526070 RX 8840175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489347584 RX 8463947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916527510 RX 8841643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489349183 RX 8465425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916529061 RX 8843121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489350782 RX 8466787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276935/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916530624 RX 8844599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489352258 RX 8468255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916532187 RX 8846077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489353857 RX 8469733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916533762 RX 8847439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489355456 RX 8471211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916535202 RX 8848907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489357055 RX 8472689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916536753 RX 8850385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489358654 RX 8474051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 276999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916538316 RX 8851863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489360130 RX 8475519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916539879 RX 8853341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489361729 RX 8476997 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916541442 RX 8854703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489363328 RX 8478475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916542882 RX 8856171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489364927 RX 8479953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916544433 RX 8857649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489366526 RX 8481315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916545996 RX 8859127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489368002 RX 8482783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916547559 RX 8860605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489369601 RX 8484261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916549122 RX 8861967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489371200 RX 8485739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916550562 RX 8863435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489372799 RX 8487217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916552113 RX 8864913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489374398 RX 8488579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916553676 RX 8866391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489375874 RX 8490047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916555239 RX 8867869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489377473 RX 8491525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916556802 RX 8869231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489379072 RX 8493003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916558242 RX 8870699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489380671 RX 8494481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916559793 RX 8872177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489382270 RX 8495843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916561356 RX 8873655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489383746 RX 8497311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916562919 RX 8875133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489385345 RX 8498789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916564482 RX 8876495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489386944 RX 8500267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916565922 RX 8877963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489388543 RX 8501745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916567473 RX 8879441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489390142 RX 8503107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916569036 RX 8880919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489391618 RX 8504575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916570599 RX 8882397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489393217 RX 8506053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916572162 RX 8883759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489394816 RX 8507531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916573602 RX 8885227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489396415 RX 8509009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916575153 RX 8886705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489398014 RX 8510371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916576728 RX 8888183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489399490 RX 8511839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916578291 RX 8889661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489401089 RX 8513317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916579854 RX 8891023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489402688 RX 8514795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916581294 RX 8892491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489404287 RX 8516273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916582845 RX 8893969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489405886 RX 8517635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916584408 RX 8895447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489407362 RX 8519103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916585971 RX 8896925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489408961 RX 8520581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916587534 RX 8898287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489410560 RX 8522059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916588974 RX 8899755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489412159 RX 8523537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916590525 RX 8901233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489413758 RX 8524899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916592088 RX 8902711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 261998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489415234 RX 8526367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916593651 RX 8904189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489416833 RX 8527845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916595214 RX 8905551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489418432 RX 8529323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916596654 RX 8907019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489420031 RX 8530801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916598205 RX 8908497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489421630 RX 8532163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916599768 RX 8909975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489423106 RX 8533631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916601331 RX 8911453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489424705 RX 8535109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916602894 RX 8912815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489426304 RX 8536587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916604334 RX 8914283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489427903 RX 8538065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916605885 RX 8915761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489429502 RX 8539427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916607448 RX 8917239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489430978 RX 8540895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916609011 RX 8918717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489432577 RX 8542373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916610574 RX 8920079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489434176 RX 8543851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916612026 RX 8921547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489435775 RX 8545329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916613589 RX 8923025 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489437374 RX 8546691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916615152 RX 8924503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489438850 RX 8548159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916616715 RX 8925981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489440449 RX 8549637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916618278 RX 8927343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489442048 RX 8551115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916619730 RX 8928811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489443647 RX 8552593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2755999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916621281 RX 8930289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489445246 RX 8553955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916622844 RX 8931767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489446722 RX 8555423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916624407 RX 8933245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489448321 RX 8556901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916625970 RX 8934607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489449920 RX 8558379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916627410 RX 8936075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489451519 RX 8559857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916628961 RX 8937553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489453118 RX 8561219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916630524 RX 8939031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489454594 RX 8562687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916632087 RX 8940509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489456193 RX 8564165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916633650 RX 8941871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2223989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489457792 RX 8565643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916635090 RX 8943339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489459391 RX 8567121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916636641 RX 8944817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489460990 RX 8568483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916638204 RX 8946295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489462466 RX 8569951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916639767 RX 8947773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489464065 RX 8571429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916641330 RX 8949135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489465664 RX 8572907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916642770 RX 8950603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489467263 RX 8574385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916644321 RX 8952081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489468862 RX 8575747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916645884 RX 8953559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489470338 RX 8577215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916647459 RX 8955037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489471937 RX 8578693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916649022 RX 8956399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489473536 RX 8580171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916650462 RX 8957867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489475135 RX 8581649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916652013 RX 8959345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489476734 RX 8583011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916653576 RX 8960823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489478210 RX 8584479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916655151 RX 8962301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489479809 RX 8585957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916656714 RX 8963663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489481408 RX 8587435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 277997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916658154 RX 8965131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489483007 RX 8588913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916659705 RX 8966609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489484606 RX 8590275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916661268 RX 8968087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489486082 RX 8591743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916662831 RX 8969565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489487681 RX 8593221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916664394 RX 8970927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489489280 RX 8594699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916665834 RX 8972395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489490879 RX 8596177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916667385 RX 8973873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489492478 RX 8597539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916668948 RX 8975351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489493954 RX 8599007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916670511 RX 8976829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489495553 RX 8600485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916672074 RX 8978191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489497152 RX 8601963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916673514 RX 8979659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489498751 RX 8603441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916675065 RX 8981137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489500350 RX 8604803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916676628 RX 8982615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489501826 RX 8606271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916678191 RX 8984093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489503425 RX 8607749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916679754 RX 8985455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489505024 RX 8609227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916681194 RX 8986923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489506623 RX 8610705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278202/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916682757 RX 8988401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489508222 RX 8612067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916684320 RX 8989879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489509698 RX 8613535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916685883 RX 8991357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489511297 RX 8615013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916687446 RX 8992719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489512896 RX 8616491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916688886 RX 8994187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489514495 RX 8617969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916690437 RX 8995665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489516094 RX 8619331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916692000 RX 8997143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489517570 RX 8620799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916693563 RX 8998621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489519169 RX 8622277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916695126 RX 8999983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489520768 RX 8623755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916696566 RX 9001451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489522367 RX 8625233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916698117 RX 9002929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489523966 RX 8626595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916699680 RX 9004407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489525442 RX 8628063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916701243 RX 9005885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489527041 RX 8629541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916702806 RX 9007247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489528640 RX 8631019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916704246 RX 9008715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489530239 RX 8632497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916705797 RX 9010193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489531838 RX 8633859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916707360 RX 9011671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489533314 RX 8635327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916708923 RX 9013149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489534913 RX 8636805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916710486 RX 9014511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489536512 RX 8638283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916711926 RX 9015979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 262997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489538111 RX 8639761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916713477 RX 9017457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489539710 RX 8641123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916715040 RX 9018935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489541186 RX 8642591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916716603 RX 9020413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489542785 RX 8644069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916718166 RX 9021775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489544384 RX 8645547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916719606 RX 9023243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489545983 RX 8647025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916721157 RX 9024721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489547582 RX 8648387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916722720 RX 9026199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489549058 RX 8649855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916724283 RX 9027677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489550657 RX 8651333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916725858 RX 9029039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489552256 RX 8652811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916727298 RX 9030507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489553855 RX 8654289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916728849 RX 9031985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489555454 RX 8655651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916730412 RX 9033463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489556930 RX 8657119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916731975 RX 9034941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489558529 RX 8658597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916733538 RX 9036303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489560128 RX 8660075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916734978 RX 9037771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489561727 RX 8661553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916736529 RX 9039249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489563326 RX 8662915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916738092 RX 9040727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489564802 RX 8664383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916739655 RX 9042205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489566401 RX 8665861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2756998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916741218 RX 9043567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489568000 RX 8667339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916742658 RX 9045035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489569599 RX 8668817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916744209 RX 9046513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489571198 RX 8670179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916745772 RX 9047991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489572674 RX 8671647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916747335 RX 9049469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489574273 RX 8673125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916748898 RX 9050831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489575872 RX 8674603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916750338 RX 9052299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489577471 RX 8676081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916751889 RX 9053777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489579070 RX 8677443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916753452 RX 9055255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2224987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489580546 RX 8678911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916755015 RX 9056733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489582145 RX 8680389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916756578 RX 9058095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489583744 RX 8681867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916758018 RX 9059563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489585343 RX 8683345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916759569 RX 9061041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489586942 RX 8684707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916761144 RX 9062519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489588418 RX 8686175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916762719 RX 9063997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489590017 RX 8687653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916764282 RX 9065359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489591616 RX 8689131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916765722 RX 9066827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489593215 RX 8690609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916767273 RX 9068305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489594814 RX 8691971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916768848 RX 9069783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489596290 RX 8693439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916770411 RX 9071261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489597889 RX 8694917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916771974 RX 9072623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489599488 RX 8696395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916773414 RX 9074091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489601087 RX 8697873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916774965 RX 9075569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489602686 RX 8699235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916776528 RX 9077047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489604162 RX 8700703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 278996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916778091 RX 9078525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489605761 RX 8702181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916779654 RX 9079887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489607360 RX 8703659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916781094 RX 9081355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489608959 RX 8705137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279034/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916782645 RX 9082833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489610558 RX 8706499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916784208 RX 9084311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489612034 RX 8707967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916785771 RX 9085789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489613633 RX 8709445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916787334 RX 9087151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489615232 RX 8710923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916788774 RX 9088619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489616831 RX 8712401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916790325 RX 9090097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489618430 RX 8713763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916791888 RX 9091575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489619906 RX 8715231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916793451 RX 9093053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489621505 RX 8716709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916795014 RX 9094415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489623104 RX 8718187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916796466 RX 9095883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489624703 RX 8719665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916798029 RX 9097361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489626302 RX 8721027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916799592 RX 9098839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489627778 RX 8722495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916801155 RX 9100317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489629377 RX 8723973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916802718 RX 9101679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489630976 RX 8725451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916804158 RX 9103147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489632575 RX 8726929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916805709 RX 9104625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489634174 RX 8728291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916807272 RX 9106103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489635650 RX 8729759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916808835 RX 9107581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489637249 RX 8731237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916810398 RX 9108943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489638848 RX 8732715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916811838 RX 9110411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489640447 RX 8734193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916813389 RX 9111889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489642046 RX 8735555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916814952 RX 9113367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489643522 RX 8737023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916816515 RX 9114845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489645121 RX 8738501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916818078 RX 9116207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489646720 RX 8739979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916819518 RX 9117675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489648319 RX 8741457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916821069 RX 9119153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489649918 RX 8742819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916822632 RX 9120631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489651394 RX 8744287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916824195 RX 9122109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489652993 RX 8745765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916825758 RX 9123471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489654592 RX 8747243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916827198 RX 9124939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489656191 RX 8748721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916828749 RX 9126417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489657790 RX 8750083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916830312 RX 9127895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489659266 RX 8751551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916831887 RX 9129373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 263995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489660865 RX 8753029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916833450 RX 9130735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489662464 RX 8754507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916834890 RX 9132203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489664063 RX 8755985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916836441 RX 9133681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489665662 RX 8757347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916838004 RX 9135159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489667138 RX 8758815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916839567 RX 9136637 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489668737 RX 8760293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916841130 RX 9137999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489670336 RX 8761771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916842570 RX 9139467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489671935 RX 8763249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916844121 RX 9140945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489673534 RX 8764611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916845684 RX 9142423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489675010 RX 8766079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916847247 RX 9143901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489676609 RX 8767557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916848810 RX 9145263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489678208 RX 8769035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916850250 RX 9146731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489679807 RX 8770513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916851801 RX 9148209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489681406 RX 8771875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916853364 RX 9149687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489682882 RX 8773343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916854927 RX 9151165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489684481 RX 8774821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916856490 RX 9152527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489686080 RX 8776299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916857930 RX 9153995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489687679 RX 8777777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916859481 RX 9155473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489689278 RX 8779139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2757996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916861044 RX 9156951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489690754 RX 8780607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916862607 RX 9158429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489692353 RX 8782085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916864170 RX 9159791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489693952 RX 8783563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916865610 RX 9161259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489695551 RX 8785041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916867173 RX 9162737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489697150 RX 8786403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916868736 RX 9164215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489698626 RX 8787871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916870299 RX 9165693 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489700225 RX 8789349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916871862 RX 9167055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489701824 RX 8790827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916873302 RX 9168523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489703423 RX 8792305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916874865 RX 9170001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2225999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489705022 RX 8793667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916876428 RX 9171479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489706498 RX 8795135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916877991 RX 9172957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489708097 RX 8796613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916879554 RX 9174319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489709696 RX 8798091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916880994 RX 9175787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489711295 RX 8799569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916882545 RX 9177265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489712894 RX 8800931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916884108 RX 9178743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489714370 RX 8802399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916885671 RX 9180221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489715969 RX 8803877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916887234 RX 9181583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489717568 RX 8805355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916888674 RX 9183051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489719167 RX 8806833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916890225 RX 9184529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489720766 RX 8808195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916891788 RX 9186007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489722242 RX 8809663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916893351 RX 9187485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489723841 RX 8811141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916894914 RX 9188847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489725440 RX 8812619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916896354 RX 9190315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489727039 RX 8814097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 279994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916897905 RX 9191793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489728638 RX 8815459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916899468 RX 9193271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489730114 RX 8816927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916901031 RX 9194749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489731713 RX 8818405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916902594 RX 9196111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489733312 RX 8819883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916904034 RX 9197579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489734911 RX 8821361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916905585 RX 9199057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489736510 RX 8822723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916907148 RX 9200535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489737986 RX 8824191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916908711 RX 9202013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489739585 RX 8825669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916910286 RX 9203375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489741184 RX 8827147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916911726 RX 9204843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489742783 RX 8828625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916913277 RX 9206321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489744382 RX 8829987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916914840 RX 9207799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489745858 RX 8831455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916916403 RX 9209277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489747457 RX 8832933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916917978 RX 9210639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489749056 RX 8834411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916919418 RX 9212107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489750655 RX 8835889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916920969 RX 9213585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489752254 RX 8837251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916922532 RX 9215063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489753730 RX 8838719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916924095 RX 9216541 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489755329 RX 8840197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916925658 RX 9217903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489756928 RX 8841675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916927098 RX 9219371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489758527 RX 8843153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916928649 RX 9220849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489760126 RX 8844515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916930212 RX 9222327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489761602 RX 8845983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916931775 RX 9223805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489763201 RX 8847461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916933338 RX 9225167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489764800 RX 8848939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916934778 RX 9226635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489766399 RX 8850417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280314/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916936329 RX 9228113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489767998 RX 8851779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916937892 RX 9229591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489769474 RX 8853247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916939455 RX 9231069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489771073 RX 8854725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916941018 RX 9232431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489772672 RX 8856203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916942458 RX 9233899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489774271 RX 8857681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916944009 RX 9235377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489775870 RX 8859043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916945584 RX 9236855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489777346 RX 8860511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916947159 RX 9238333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489778945 RX 8861989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916948722 RX 9239695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489780544 RX 8863467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916950162 RX 9241163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489782143 RX 8864945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916951713 RX 9242641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 264993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489783742 RX 8866307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916953276 RX 9244119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489785218 RX 8867775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916954839 RX 9245597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489786817 RX 8869253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916956402 RX 9246959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489788416 RX 8870731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916957842 RX 9248427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489790015 RX 8872209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916959393 RX 9249905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489791614 RX 8873571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916960956 RX 9251383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489793090 RX 8875039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916962519 RX 9252861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489794689 RX 8876517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916964082 RX 9254223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489796288 RX 8877995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916965522 RX 9255691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489797887 RX 8879473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916967073 RX 9257169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489799486 RX 8880835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916968636 RX 9258647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489800962 RX 8882303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916970199 RX 9260125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489802561 RX 8883781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916971762 RX 9261487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489804160 RX 8885259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916973202 RX 9262955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489805759 RX 8886737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916974753 RX 9264433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489807358 RX 8888099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916976316 RX 9265911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489808834 RX 8889567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916977879 RX 9267389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489810433 RX 8891045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916979442 RX 9268751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489812032 RX 8892523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2758994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916980894 RX 9270219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489813631 RX 8894001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916982457 RX 9271697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489815230 RX 8895363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916984020 RX 9273175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489816706 RX 8896831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916985583 RX 9274653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489818305 RX 8898309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916987146 RX 9276015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489819904 RX 8899787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916988598 RX 9277483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489821503 RX 8901265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916990149 RX 9278961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489823102 RX 8902627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916991712 RX 9280439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489824578 RX 8904095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916993275 RX 9281917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489826177 RX 8905573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916994838 RX 9283279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2226997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489827776 RX 8907051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916996278 RX 9284747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489829375 RX 8908529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916997829 RX 9286225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489830974 RX 8909891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19916999392 RX 9287703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489832450 RX 8911359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917000955 RX 9289181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489834049 RX 8912837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917002518 RX 9290543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489835648 RX 8914315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917003958 RX 9292011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489837247 RX 8915793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917005509 RX 9293489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489838846 RX 8917155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917007072 RX 9294967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489840322 RX 8918623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917008635 RX 9296445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489841921 RX 8920101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917010198 RX 9297807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489843520 RX 8921579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917011638 RX 9299275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489845119 RX 8923057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917013189 RX 9300753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489846718 RX 8924419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917014752 RX 9302231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489848194 RX 8925887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917016327 RX 9303709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489849793 RX 8927365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 280992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917017890 RX 9305071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489851392 RX 8928843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917019330 RX 9306539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489852991 RX 8930321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917020881 RX 9308017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489854590 RX 8931683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917022444 RX 9309495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489856066 RX 8933151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917024007 RX 9310973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489857665 RX 8934629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917025570 RX 9312335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489859264 RX 8936107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917027010 RX 9313803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489860863 RX 8937585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917028561 RX 9315281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489862462 RX 8938947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917030124 RX 9316759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489863938 RX 8940415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917031687 RX 9318237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489865537 RX 8941893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917033250 RX 9319599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489867136 RX 8943371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917034690 RX 9321067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489868735 RX 8944849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917036241 RX 9322545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489870334 RX 8946211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917037804 RX 9324023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489871810 RX 8947679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917039367 RX 9325501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489873409 RX 8949157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917040930 RX 9326863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489875008 RX 8950635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917042370 RX 9328331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489876607 RX 8952113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917043921 RX 9329809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489878206 RX 8953475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917045484 RX 9331287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489879682 RX 8954943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917047047 RX 9332765 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489881281 RX 8956421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917048610 RX 9334127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489882880 RX 8957899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917050050 RX 9335595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489884479 RX 8959377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917051613 RX 9337073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489886078 RX 8960739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917053176 RX 9338551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489887554 RX 8962207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917054739 RX 9340029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489889153 RX 8963685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917056302 RX 9341391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489890752 RX 8965163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917057742 RX 9342859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489892351 RX 8966641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917059305 RX 9344337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489893950 RX 8968003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917060868 RX 9345815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489895426 RX 8969471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917062431 RX 9347293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489897025 RX 8970949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917063994 RX 9348655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489898624 RX 8972427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917065434 RX 9350123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489900223 RX 8973905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917066985 RX 9351601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489901822 RX 8975267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917068548 RX 9353079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489903298 RX 8976735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917070111 RX 9354557 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489904897 RX 8978213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917071674 RX 9355919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 265992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489906496 RX 8979691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917073114 RX 9357387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489908095 RX 8981169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917074665 RX 9358865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489909694 RX 8982531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917076228 RX 9360343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489911170 RX 8983999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917077791 RX 9361821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489912769 RX 8985477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917079354 RX 9363183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489914368 RX 8986955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917080794 RX 9364651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489915967 RX 8988433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917082345 RX 9366129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489917566 RX 8989795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917083908 RX 9367607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489919042 RX 8991263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917085471 RX 9369085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489920641 RX 8992741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917087046 RX 9370447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489922240 RX 8994219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917088498 RX 9371915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489923839 RX 8995697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917090049 RX 9373393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489925438 RX 8997059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917091612 RX 9374871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489926914 RX 8998527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917093175 RX 9376349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489928513 RX 9000005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917094750 RX 9377711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489930112 RX 9001483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917096190 RX 9379179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489931711 RX 9002961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917097741 RX 9380657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489933310 RX 9004323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917099304 RX 9382135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489934786 RX 9005791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2759993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917100867 RX 9383613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489936385 RX 9007269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917102442 RX 9384975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489937984 RX 9008747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917103882 RX 9386443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489939583 RX 9010225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917105433 RX 9387921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489941182 RX 9011587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917106996 RX 9389399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489942658 RX 9013055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917108559 RX 9390877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489944257 RX 9014533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917110122 RX 9392239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489945856 RX 9016011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917111562 RX 9393707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489947455 RX 9017489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917113113 RX 9395185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489949054 RX 9018851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917114676 RX 9396663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2227995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489950530 RX 9020319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917116239 RX 9398141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489952129 RX 9021797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917117802 RX 9399503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489953728 RX 9023275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917119242 RX 9400971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489955327 RX 9024753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917120793 RX 9402449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489956926 RX 9026115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917122368 RX 9403927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489958402 RX 9027583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917123931 RX 9405405 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489960001 RX 9029061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917125494 RX 9406767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489961600 RX 9030539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917126934 RX 9408235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489963199 RX 9032017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917128485 RX 9409713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489964798 RX 9033379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917130060 RX 9411191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489966274 RX 9034847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917131635 RX 9412669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489967873 RX 9036325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917133198 RX 9414031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489969472 RX 9037803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917134638 RX 9415499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489971071 RX 9039281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917136189 RX 9416977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489972670 RX 9040643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 281991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917137752 RX 9418455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489974146 RX 9042111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917139315 RX 9419933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489975745 RX 9043589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917140878 RX 9421295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489977344 RX 9045067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917142318 RX 9422763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489978943 RX 9046545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917143869 RX 9424241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489980542 RX 9047907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917145432 RX 9425719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489982018 RX 9049375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917146995 RX 9427197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489983617 RX 9050853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917148558 RX 9428559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489985216 RX 9052331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917149998 RX 9430027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489986815 RX 9053809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917151549 RX 9431505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489988414 RX 9055171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917153112 RX 9432983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489989890 RX 9056639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917154675 RX 9434461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489991489 RX 9058117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917156238 RX 9435823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489993088 RX 9059595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917157678 RX 9437291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489994687 RX 9061073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917159229 RX 9438769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489996286 RX 9062435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917160792 RX 9440247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489997762 RX 9063903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917162355 RX 9441725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17489999361 RX 9065381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917163918 RX 9443087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490000960 RX 9066859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917165358 RX 9444555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490002559 RX 9068337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282234/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917166921 RX 9446033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490004158 RX 9069699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282247/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917168484 RX 9447511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490005634 RX 9071167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917170047 RX 9448989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490007233 RX 9072645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917171610 RX 9450351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490008832 RX 9074123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917173062 RX 9451819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490010431 RX 9075601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917174613 RX 9453297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490012030 RX 9076963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917176176 RX 9454775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490013506 RX 9078431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917177739 RX 9456253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490015105 RX 9079909 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917179302 RX 9457615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490016704 RX 9081387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917180742 RX 9459083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490018303 RX 9082865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282362/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917182293 RX 9460561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490019902 RX 9084227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282375/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917183856 RX 9462039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490021378 RX 9085695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917185419 RX 9463517 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490022977 RX 9087173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917186982 RX 9464879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490024576 RX 9088651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917188422 RX 9466347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490026175 RX 9090129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917189973 RX 9467825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490027774 RX 9091491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917191536 RX 9469303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 266990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490029250 RX 9092959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917193099 RX 9470781 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490030849 RX 9094437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917194662 RX 9472143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490032448 RX 9095915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917196102 RX 9473611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490034047 RX 9097393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282490/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917197653 RX 9475089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490035646 RX 9098755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282503/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917199216 RX 9476567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490037122 RX 9100223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917200791 RX 9478045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490038721 RX 9101701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917202354 RX 9479407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490040320 RX 9103179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917203794 RX 9480875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490041919 RX 9104657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282554/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917205345 RX 9482353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490043518 RX 9106019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917206908 RX 9483831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490044994 RX 9107487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917208471 RX 9485309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490046593 RX 9108965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917210034 RX 9486671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490048192 RX 9110443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917211474 RX 9488139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490049791 RX 9111921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282618/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917213025 RX 9489617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490051390 RX 9113283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282631/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917214588 RX 9491095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490052866 RX 9114751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917216151 RX 9492573 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490054465 RX 9116229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917217714 RX 9493935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490056064 RX 9117707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917219154 RX 9495403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267221/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490057663 RX 9119185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2760991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282682/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917220705 RX 9496881 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490059262 RX 9120547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282695/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917222268 RX 9498359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490060738 RX 9122015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917223831 RX 9499837 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490062337 RX 9123493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917225394 RX 9501199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490063936 RX 9124971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917226834 RX 9502667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267285/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490065535 RX 9126449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282746/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917228385 RX 9504145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490067134 RX 9127811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282759/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917229948 RX 9505623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490068610 RX 9129279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917231511 RX 9507101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490070209 RX 9130757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917233074 RX 9508463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490071808 RX 9132235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917234514 RX 9509931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2228994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490073407 RX 9133713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917236077 RX 9511409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490075006 RX 9135075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917237652 RX 9512887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490076482 RX 9136543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917239215 RX 9514365 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490078081 RX 9138021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917240778 RX 9515727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490079680 RX 9139499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917242218 RX 9517195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490081279 RX 9140977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282874/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917243781 RX 9518673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490082878 RX 9142339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282887/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917245344 RX 9520151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490084354 RX 9143807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917246907 RX 9521629 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490085953 RX 9145285 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917248470 RX 9522991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490087552 RX 9146763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917249910 RX 9524459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267477/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490089151 RX 9148241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282938/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917251461 RX 9525937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490090750 RX 9149603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917253024 RX 9527415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490092226 RX 9151071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917254587 RX 9528893 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490093825 RX 9152549 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917256150 RX 9530255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490095424 RX 9154027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 282989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917257590 RX 9531723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267541/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490097023 RX 9155505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283002/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917259141 RX 9533201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490098622 RX 9156867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283015/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917260704 RX 9534679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490100098 RX 9158335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917262267 RX 9536157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490101697 RX 9159813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917263830 RX 9537519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490103296 RX 9161291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917265270 RX 9538987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267605/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490104895 RX 9162769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283066/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917266821 RX 9540465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490106494 RX 9164131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917268384 RX 9541943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490107970 RX 9165599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917269947 RX 9543421 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490109569 RX 9167077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917271510 RX 9544783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490111168 RX 9168555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917272962 RX 9546251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490112767 RX 9170033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917274513 RX 9547729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490114366 RX 9171395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917276076 RX 9549207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490115842 RX 9172863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917277639 RX 9550685 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490117441 RX 9174341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917279214 RX 9552047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490119040 RX 9175819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917280654 RX 9553515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490120639 RX 9177297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283194/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917282205 RX 9554993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490122238 RX 9178659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283207/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917283768 RX 9556471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490123714 RX 9180127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917285331 RX 9557949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490125313 RX 9181605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917286906 RX 9559311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490126912 RX 9183083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917288346 RX 9560779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267797/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490128511 RX 9184561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283258/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917289897 RX 9562257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490130110 RX 9185923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917291460 RX 9563735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490131586 RX 9187391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917293023 RX 9565213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490133185 RX 9188869 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917294586 RX 9566575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490134784 RX 9190347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917296026 RX 9568043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267861/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490136383 RX 9191825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283322/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917297577 RX 9569521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490137982 RX 9193187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917299140 RX 9570999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490139458 RX 9194655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917300703 RX 9572477 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490141057 RX 9196133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917302266 RX 9573839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490142656 RX 9197611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917303706 RX 9575307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267925/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490144255 RX 9199089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917305257 RX 9576785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490145854 RX 9200451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283399/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917306832 RX 9578263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490147330 RX 9201919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917308395 RX 9579741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490148929 RX 9203397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917309958 RX 9581103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490150528 RX 9204875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917311398 RX 9582571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 267989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490152127 RX 9206353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917312949 RX 9584049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490153726 RX 9207715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283463/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917314512 RX 9585527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490155202 RX 9209183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917316075 RX 9587005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490156801 RX 9210661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917317638 RX 9588367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490158400 RX 9212139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917319078 RX 9589835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490159999 RX 9213617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283514/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917320629 RX 9591313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490161598 RX 9214979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283527/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917322192 RX 9592791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490163074 RX 9216447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917323755 RX 9594269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490164673 RX 9217925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917325318 RX 9595631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490166272 RX 9219403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917326758 RX 9597099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268117/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490167871 RX 9220881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283578/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917328309 RX 9598577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490169470 RX 9222243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917329872 RX 9600055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490170946 RX 9223711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917331435 RX 9601533 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490172545 RX 9225189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917332998 RX 9602895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490174144 RX 9226667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917334438 RX 9604363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268181/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490175743 RX 9228145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283642/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917335989 RX 9605841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490177342 RX 9229507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283655/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917337552 RX 9607319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490178818 RX 9230975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917339115 RX 9608797 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490180417 RX 9232453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2761990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917340678 RX 9610159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490182016 RX 9233931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917342118 RX 9611627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268245/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490183615 RX 9235409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283706/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917343669 RX 9613105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490185214 RX 9236771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283719/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917345232 RX 9614583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490186690 RX 9238239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917346795 RX 9616061 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490188289 RX 9239717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917348358 RX 9617423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490189888 RX 9241195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917349798 RX 9618891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490191487 RX 9242673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283770/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917351361 RX 9620369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490193086 RX 9244035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283783/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917352924 RX 9621847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490194562 RX 9245503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917354487 RX 9623325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2229992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490196161 RX 9246981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917356050 RX 9624687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490197760 RX 9248459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917357490 RX 9626155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490199359 RX 9249937 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283834/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917359041 RX 9627633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490200958 RX 9251299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917360604 RX 9629111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490202434 RX 9252767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917362167 RX 9630589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490204033 RX 9254245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917363730 RX 9631951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490205632 RX 9255723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917365170 RX 9633419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490207231 RX 9257201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283898/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917366721 RX 9634897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490208830 RX 9258563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917368284 RX 9636375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490210306 RX 9260031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917369847 RX 9637853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490211905 RX 9261509 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917371410 RX 9639215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490213504 RX 9262987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917372850 RX 9640683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268501/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490215103 RX 9264465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283962/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917374401 RX 9642161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490216702 RX 9265827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283975/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917375964 RX 9643639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490218178 RX 9267295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 283988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917377527 RX 9645117 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490219777 RX 9268773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917379090 RX 9646479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490221376 RX 9270251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917380530 RX 9647947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268565/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490222975 RX 9271729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284026/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917382081 RX 9649425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490224574 RX 9273091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284039/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917383644 RX 9650903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490226050 RX 9274559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917385219 RX 9652381 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490227649 RX 9276037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917386794 RX 9653743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490229248 RX 9277515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917388234 RX 9655211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490230847 RX 9278993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917389785 RX 9656689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490232446 RX 9280355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917391348 RX 9658167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490233922 RX 9281823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917392923 RX 9659645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490235521 RX 9283301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917394486 RX 9661007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490237120 RX 9284779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917395926 RX 9662475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490238719 RX 9286257 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284154/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917397477 RX 9663953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490240318 RX 9287619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284167/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917399040 RX 9665431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490241794 RX 9289087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917400603 RX 9666909 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490243393 RX 9290565 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917402166 RX 9668271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490244992 RX 9292043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917403606 RX 9669739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268757/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490246591 RX 9293521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284218/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917405157 RX 9671217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490248190 RX 9294883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917406720 RX 9672695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490249666 RX 9296351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917408283 RX 9674173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490251265 RX 9297829 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917409846 RX 9675535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490252864 RX 9299307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917411286 RX 9677003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268821/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490254463 RX 9300785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284282/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917412837 RX 9678481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490256062 RX 9302147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284295/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917414400 RX 9679959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490257538 RX 9303615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917415963 RX 9681437 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490259137 RX 9305093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917417526 RX 9682799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490260736 RX 9306571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917418966 RX 9684267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268885/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490262335 RX 9308049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917420517 RX 9685745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490263934 RX 9309411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917422092 RX 9687223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490265410 RX 9310879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917423655 RX 9688701 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490267009 RX 9312357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917425218 RX 9690063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490268608 RX 9313835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917426658 RX 9691531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490270207 RX 9315313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917428221 RX 9693009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490271806 RX 9316675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284423/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917429784 RX 9694487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490273282 RX 9318143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917431347 RX 9695965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 268987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490274881 RX 9319621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917432910 RX 9697327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490276480 RX 9321099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917434350 RX 9698795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490278079 RX 9322577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284474/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917435901 RX 9700273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490279678 RX 9323939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284487/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917437464 RX 9701751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490281154 RX 9325407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917439027 RX 9703229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490282753 RX 9326885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917440590 RX 9704591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490284352 RX 9328363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917442030 RX 9706059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269077/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490285951 RX 9329841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284538/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917443581 RX 9707537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490287550 RX 9331203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917445144 RX 9709015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490289026 RX 9332671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917446707 RX 9710493 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490290625 RX 9334149 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917448270 RX 9711855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490292224 RX 9335627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917449710 RX 9713323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269141/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490293823 RX 9337105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284602/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917451261 RX 9714801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490295422 RX 9338467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284615/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917452824 RX 9716279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490296898 RX 9339935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917454387 RX 9717757 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490298497 RX 9341413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917455950 RX 9719119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490300096 RX 9342891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917457402 RX 9720587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490301695 RX 9344369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284666/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917458953 RX 9722065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490303294 RX 9345731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2762988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284679/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917460516 RX 9723543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490304770 RX 9347199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917462079 RX 9725021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490306369 RX 9348677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917463642 RX 9726383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490307968 RX 9350155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917465082 RX 9727851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490309567 RX 9351633 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917466633 RX 9729329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490311166 RX 9352995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917468196 RX 9730807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490312642 RX 9354463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917469759 RX 9732285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490314241 RX 9355941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917471322 RX 9733647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490315840 RX 9357419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917472762 RX 9735115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490317439 RX 9358897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284794/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917474313 RX 9736593 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2230991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490319038 RX 9360259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284807/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917475876 RX 9738071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490320514 RX 9361727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917477439 RX 9739549 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490322113 RX 9363205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917479002 RX 9740911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490323712 RX 9364683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917480442 RX 9742379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269397/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490325311 RX 9366161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284858/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917481993 RX 9743857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490326910 RX 9367523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917483556 RX 9745335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490328386 RX 9368991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917485119 RX 9746813 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490329985 RX 9370469 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917486682 RX 9748175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490331584 RX 9371947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917488122 RX 9749643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269461/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490333183 RX 9373425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284922/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917489673 RX 9751121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490334782 RX 9374787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284935/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917491236 RX 9752599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490336258 RX 9376255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917492799 RX 9754077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490337857 RX 9377733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917494362 RX 9755439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490339456 RX 9379211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917495802 RX 9756907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269525/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490341055 RX 9380689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284986/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917497353 RX 9758385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490342654 RX 9382051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 284999/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917498916 RX 9759863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490344130 RX 9383519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917500491 RX 9761341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490345729 RX 9384997 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917502054 RX 9762703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490347328 RX 9386475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917503494 RX 9764171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490348927 RX 9387953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917505045 RX 9765649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490350526 RX 9389315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285063/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917506608 RX 9767127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490352002 RX 9390783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917508171 RX 9768605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490353601 RX 9392261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917509734 RX 9769967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490355200 RX 9393739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917511174 RX 9771435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490356799 RX 9395217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285114/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917512725 RX 9772913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490358398 RX 9396579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285127/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917514288 RX 9774391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490359874 RX 9398047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917515851 RX 9775869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490361473 RX 9399525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917517414 RX 9777231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490363072 RX 9401003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917518854 RX 9778699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269717/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490364671 RX 9402481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285178/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917520405 RX 9780177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490366270 RX 9403843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917521968 RX 9781655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490367746 RX 9405311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917523531 RX 9783133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490369345 RX 9406789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917525094 RX 9784495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490370944 RX 9408267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917526534 RX 9785963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269781/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490372543 RX 9409745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285242/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917528085 RX 9787441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490374142 RX 9411107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285255/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917529648 RX 9788919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490375618 RX 9412575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917531211 RX 9790397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490377217 RX 9414053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917532774 RX 9791759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490378816 RX 9415531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917534214 RX 9793227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269845/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490380415 RX 9417009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285306/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917535789 RX 9794705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490382014 RX 9418371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285319/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917537352 RX 9796183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490383490 RX 9419839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917538915 RX 9797661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490385089 RX 9421317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917540478 RX 9799023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490386688 RX 9422795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917541930 RX 9800491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490388287 RX 9424273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917543481 RX 9801969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490389886 RX 9425635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285383/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917545044 RX 9803447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490391362 RX 9427103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917546607 RX 9804925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490392961 RX 9428581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917548170 RX 9806287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490394560 RX 9430059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917549610 RX 9807755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490396159 RX 9431537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285434/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917551161 RX 9809233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490397758 RX 9432899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285447/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917552724 RX 9810711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 269998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490399234 RX 9434367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917554287 RX 9812189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490400833 RX 9435845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917555850 RX 9813551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490402432 RX 9437323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917557290 RX 9815019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270037/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490404031 RX 9438801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285498/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917558841 RX 9816497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490405630 RX 9440163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917560404 RX 9817975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490407106 RX 9441631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917561967 RX 9819453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490408705 RX 9443109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917563530 RX 9820815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490410304 RX 9444587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917564970 RX 9822283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270101/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490411903 RX 9446065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285562/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917566521 RX 9823761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490413502 RX 9447427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285575/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917568084 RX 9825239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490414978 RX 9448895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917569659 RX 9826717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490416577 RX 9450373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917571234 RX 9828079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490418176 RX 9451851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917572674 RX 9829547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270165/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490419775 RX 9453329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917574225 RX 9831025 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490421374 RX 9454691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285639/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917575788 RX 9832503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490422850 RX 9456159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917577351 RX 9833981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490424449 RX 9457637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917578914 RX 9835343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490426048 RX 9459115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917580354 RX 9836811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490427647 RX 9460593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2763999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917581905 RX 9838289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490429246 RX 9461955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285703/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917583468 RX 9839767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490430722 RX 9463423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917585031 RX 9841245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490432321 RX 9464901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917586594 RX 9842607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490433920 RX 9466379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917588034 RX 9844075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490435519 RX 9467857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285754/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917589585 RX 9845553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490437118 RX 9469219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285767/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917591148 RX 9847031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490438594 RX 9470687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917592711 RX 9848509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490440193 RX 9472165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917594274 RX 9849871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2231989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490441792 RX 9473643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917595714 RX 9851339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270357/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490443391 RX 9475121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285818/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917597265 RX 9852817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490444990 RX 9476483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917598828 RX 9854295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490446466 RX 9477951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917600391 RX 9855773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490448065 RX 9479429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917601954 RX 9857135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490449664 RX 9480907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917603394 RX 9858603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270421/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490451263 RX 9482385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285882/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917604945 RX 9860081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490452862 RX 9483747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285895/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917606520 RX 9861559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490454338 RX 9485215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917608083 RX 9863037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490455937 RX 9486693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917609646 RX 9864399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490457536 RX 9488171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917611086 RX 9865867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270485/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490459135 RX 9489649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285946/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917612637 RX 9867345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490460734 RX 9491011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285959/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917614200 RX 9868823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490462210 RX 9492479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917615763 RX 9870301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490463809 RX 9493957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917617326 RX 9871663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490465408 RX 9495435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 285997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917618766 RX 9873131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490467007 RX 9496913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286010/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917620317 RX 9874609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490468606 RX 9498275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286023/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917621880 RX 9876087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490470082 RX 9499743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917623443 RX 9877565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490471681 RX 9501221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917625006 RX 9878927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490473280 RX 9502699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917626446 RX 9880395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490474879 RX 9504177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286074/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917627997 RX 9881873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490476478 RX 9505539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286087/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917629560 RX 9883351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490477954 RX 9507007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917631123 RX 9884829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490479553 RX 9508485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917632686 RX 9886191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490481152 RX 9509963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917634126 RX 9887659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270677/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490482751 RX 9511441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286138/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917635677 RX 9889137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490484350 RX 9512803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917637240 RX 9890615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490485826 RX 9514271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917638803 RX 9892093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490487425 RX 9515749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917640366 RX 9893455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490489024 RX 9517227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917641818 RX 9894923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270741/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490490623 RX 9518705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286202/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917643369 RX 9896401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490492222 RX 9520067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286215/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917644932 RX 9897879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490493698 RX 9521535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917646495 RX 9899357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490495297 RX 9523013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917648058 RX 9900719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490496896 RX 9524491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917649510 RX 9902187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490498495 RX 9525969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286266/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917651061 RX 9903665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490500094 RX 9527331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286279/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917652624 RX 9905143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490501570 RX 9528799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917654187 RX 9906621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490503169 RX 9530277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917655750 RX 9907983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490504768 RX 9531755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917657190 RX 9909451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490506367 RX 9533233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917658741 RX 9910929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490507966 RX 9534595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286343/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917660304 RX 9912407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490509442 RX 9536063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917661867 RX 9913885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490511041 RX 9537541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917663430 RX 9915247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490512640 RX 9539019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917664870 RX 9916715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490514239 RX 9540497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286394/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917666421 RX 9918193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490515838 RX 9541859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286407/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917667984 RX 9919671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490517314 RX 9543327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917669547 RX 9921149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490518913 RX 9544805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917671110 RX 9922511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490520512 RX 9546283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917672550 RX 9923979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 270997/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490522111 RX 9547761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286458/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917674101 RX 9925457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490523710 RX 9549123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917675664 RX 9926935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490525186 RX 9550591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917677227 RX 9928413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490526785 RX 9552069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917678790 RX 9929775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490528384 RX 9553547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917680230 RX 9931243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490529983 RX 9555025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286522/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917681781 RX 9932721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490531582 RX 9556387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286535/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917683344 RX 9934199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490533058 RX 9557855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917684919 RX 9935677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490534657 RX 9559333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917686482 RX 9937039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490536256 RX 9560811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917687922 RX 9938507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271125/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490537855 RX 9562289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917689473 RX 9939985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490539454 RX 9563651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917691048 RX 9941463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490540930 RX 9565119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917692611 RX 9942941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490542529 RX 9566597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917694174 RX 9944303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490544128 RX 9568075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917695614 RX 9945771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490545727 RX 9569553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917697165 RX 9947249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490547326 RX 9570915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286663/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917698728 RX 9948727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490548802 RX 9572383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917700291 RX 9950205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490550401 RX 9573861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2764998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917701854 RX 9951567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490552000 RX 9575339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917703294 RX 9953035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490553599 RX 9576817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286714/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917704845 RX 9954513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490555198 RX 9578179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917706408 RX 9955991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490556674 RX 9579647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917707971 RX 9957469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490558273 RX 9581125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917709534 RX 9958831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490559872 RX 9582603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917710974 RX 9960299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490561471 RX 9584081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286778/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917712525 RX 9961777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490563070 RX 9585443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917714088 RX 9963255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2232987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490564546 RX 9586911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917715651 RX 9964733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490566145 RX 9588389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917717214 RX 9966095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490567744 RX 9589867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917718654 RX 9967563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271381/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490569343 RX 9591345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286842/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917720229 RX 9969041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490570942 RX 9592707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917721792 RX 9970519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490572418 RX 9594175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917723355 RX 9971997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490574017 RX 9595653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917724918 RX 9973359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490575616 RX 9597131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917726358 RX 9974827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271445/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490577215 RX 9598609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286906/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917727909 RX 9976305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490578814 RX 9599971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286919/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917729472 RX 9977783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490580290 RX 9601439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917731035 RX 9979261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490581889 RX 9602917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917732598 RX 9980623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490583488 RX 9604395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917734038 RX 9982091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490585087 RX 9605873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917735589 RX 9983569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490586686 RX 9607235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917737152 RX 9985047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490588162 RX 9608703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 286996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917738715 RX 9986525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490589761 RX 9610181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917740278 RX 9987887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490591360 RX 9611659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917741718 RX 9989355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490592959 RX 9613137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287034/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917743269 RX 9990833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490594558 RX 9614499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287047/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917744832 RX 9992311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490596034 RX 9615967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917746395 RX 9993789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490597633 RX 9617445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917747958 RX 9995151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490599232 RX 9618923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917749398 RX 9996619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271637/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490600831 RX 9620401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287098/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917750949 RX 9998097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490602430 RX 9621763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917752512 RX 9999575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490603906 RX 9623231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917754087 RX 10001053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490605505 RX 9624709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917755662 RX 10002415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490607104 RX 9626187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917757102 RX 10003883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271701/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490608703 RX 9627665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287162/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917758653 RX 10005361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490610302 RX 9629027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287175/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917760216 RX 10006839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490611778 RX 9630495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917761779 RX 10008317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490613377 RX 9631973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917763354 RX 10009679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490614976 RX 9633451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917764794 RX 10011147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271765/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490616575 RX 9634929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287226/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917766345 RX 10012625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490618174 RX 9636291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917767908 RX 10014103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490619650 RX 9637759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917769471 RX 10015581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490621249 RX 9639237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917771034 RX 10016943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490622848 RX 9640715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917772474 RX 10018411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490624447 RX 9642193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287290/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917774025 RX 10019889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490626046 RX 9643555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287303/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917775588 RX 10021367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490627522 RX 9645023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917777151 RX 10022845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490629121 RX 9646501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917778714 RX 10024207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490630720 RX 9647979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917780154 RX 10025675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490632319 RX 9649457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287354/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917781705 RX 10027153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490633918 RX 9650819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917783268 RX 10028631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490635394 RX 9652287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917784831 RX 10030109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490636993 RX 9653765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917786394 RX 10031471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490638592 RX 9655243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917787834 RX 10032939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271957/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490640191 RX 9656721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287418/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917789385 RX 10034417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490641790 RX 9658083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917790960 RX 10035895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490643266 RX 9659551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917792523 RX 10037373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 271995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490644865 RX 9661029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917794086 RX 10038735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490646464 RX 9662507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917795526 RX 10040203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272021/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490648063 RX 9663985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917797077 RX 10041681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490649662 RX 9665347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917798640 RX 10043159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490651138 RX 9666815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917800203 RX 10044637 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490652737 RX 9668293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917801766 RX 10045999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490654336 RX 9669771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917803206 RX 10047467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490655935 RX 9671249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287546/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917804757 RX 10048945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490657534 RX 9672611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287559/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917806320 RX 10050423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490659010 RX 9674079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917807883 RX 10051901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490660609 RX 9675557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917809446 RX 10053263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490662208 RX 9677035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917810886 RX 10054731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490663807 RX 9678513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917812437 RX 10056209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490665406 RX 9679875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917814000 RX 10057687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490666882 RX 9681343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917815563 RX 10059165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490668481 RX 9682821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917817126 RX 10060527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490670080 RX 9684299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917818566 RX 10061995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490671679 RX 9685777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287674/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917820117 RX 10063473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490673278 RX 9687139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2765996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287687/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917821680 RX 10064951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490674754 RX 9688607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917823243 RX 10066429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490676353 RX 9690085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917824806 RX 10067791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490677952 RX 9691563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917826258 RX 10069259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272277/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490679551 RX 9693041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917827809 RX 10070737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490681150 RX 9694403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917829372 RX 10072215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490682626 RX 9695871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917830935 RX 10073693 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490684225 RX 9697349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917832498 RX 10075055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490685824 RX 9698827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917833950 RX 10076523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490687423 RX 9700305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287802/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917835501 RX 10078001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2233999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490689022 RX 9701667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287815/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917837064 RX 10079479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490690498 RX 9703135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917838627 RX 10080957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490692097 RX 9704613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917840190 RX 10082319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490693696 RX 9706091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917841630 RX 10083787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272405/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490695295 RX 9707569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917843181 RX 10085265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490696894 RX 9708931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917844744 RX 10086743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490698370 RX 9710399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917846307 RX 10088221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490699969 RX 9711877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917847870 RX 10089583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490701568 RX 9713355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917849310 RX 10091051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490703167 RX 9714833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917850861 RX 10092529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490704766 RX 9716195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287943/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917852424 RX 10094007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490706242 RX 9717663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917853987 RX 10095485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490707841 RX 9719141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917855550 RX 10096847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490709440 RX 9720619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917856990 RX 10098315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490711039 RX 9722097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 287994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917858541 RX 10099793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490712638 RX 9723459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917860116 RX 10101271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490714114 RX 9724927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917861691 RX 10102749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490715713 RX 9726405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917863254 RX 10104111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490717312 RX 9727883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917864694 RX 10105579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272597/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490718911 RX 9729361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288058/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917866245 RX 10107057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490720510 RX 9730723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917867808 RX 10108535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490721986 RX 9732191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917869383 RX 10110013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490723585 RX 9733669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917870946 RX 10111375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490725184 RX 9735147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917872386 RX 10112843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272661/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490726783 RX 9736625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288122/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917873937 RX 10114321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490728382 RX 9737987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917875512 RX 10115799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490729858 RX 9739455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917877075 RX 10117277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490731457 RX 9740933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917878638 RX 10118639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490733056 RX 9742411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917880078 RX 10120107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272725/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490734655 RX 9743889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288186/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917881629 RX 10121585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490736254 RX 9745251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288199/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917883192 RX 10123063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490737730 RX 9746719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917884755 RX 10124541 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490739329 RX 9748197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917886318 RX 10125903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490740928 RX 9749675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917887758 RX 10127371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490742527 RX 9751153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917889309 RX 10128849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490744126 RX 9752515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917890872 RX 10130327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490745602 RX 9753983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917892435 RX 10131805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490747201 RX 9755461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917893998 RX 10133167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490748800 RX 9756939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917895438 RX 10134635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490750399 RX 9758417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288314/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917897001 RX 10136113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490751998 RX 9759779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288327/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917898564 RX 10137591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490753474 RX 9761247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917900127 RX 10139069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490755073 RX 9762725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917901690 RX 10140431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490756672 RX 9764203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917903130 RX 10141899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272917/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490758271 RX 9765681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288378/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917904705 RX 10143377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490759870 RX 9767043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917906268 RX 10144855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490761346 RX 9768511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917907831 RX 10146333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490762945 RX 9769989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917909394 RX 10147695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490764544 RX 9771467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917910834 RX 10149163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272981/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490766143 RX 9772945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288442/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917912385 RX 10150641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 272993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490767742 RX 9774307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288455/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917913948 RX 10152119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490769218 RX 9775775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917915511 RX 10153597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490770817 RX 9777253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917917074 RX 10154959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490772416 RX 9778731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917918514 RX 10156427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273045/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490774015 RX 9780209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917920065 RX 10157905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490775614 RX 9781571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917921628 RX 10159383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490777090 RX 9783039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917923191 RX 10160861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490778689 RX 9784517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917924754 RX 10162223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490780288 RX 9785995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917926194 RX 10163691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490781887 RX 9787473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917927745 RX 10165169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490783486 RX 9788835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288583/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917929308 RX 10166647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490784962 RX 9790303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917930871 RX 10168125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490786561 RX 9791781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917932434 RX 10169487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490788160 RX 9793259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917933874 RX 10170955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490789759 RX 9794737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917935425 RX 10172433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490791358 RX 9796099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917936988 RX 10173911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490792834 RX 9797567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917938551 RX 10175389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490794433 RX 9799045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917940126 RX 10176751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490796032 RX 9800523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2766994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917941566 RX 10178219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273237/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490797631 RX 9802001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288698/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917943117 RX 10179697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490799230 RX 9803363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917944680 RX 10181175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490800706 RX 9804831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917946243 RX 10182653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490802305 RX 9806309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917947818 RX 10184015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490803904 RX 9807787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917949258 RX 10185483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273301/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490805503 RX 9809265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917950809 RX 10186961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490807102 RX 9810627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917952372 RX 10188439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490808578 RX 9812095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917953935 RX 10189917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490810177 RX 9813573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917955498 RX 10191279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2234997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490811776 RX 9815051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917956938 RX 10192747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273365/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490813375 RX 9816529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917958489 RX 10194225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490814974 RX 9817891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288839/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917960052 RX 10195703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490816450 RX 9819359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917961615 RX 10197181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490818049 RX 9820837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917963178 RX 10198543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490819648 RX 9822315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917964618 RX 10200011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490821247 RX 9823793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917966169 RX 10201489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490822846 RX 9825155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917967732 RX 10202967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490824322 RX 9826623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917969295 RX 10204445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490825921 RX 9828101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917970858 RX 10205807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490827520 RX 9829579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917972298 RX 10207275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490829119 RX 9831057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288954/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917973849 RX 10208753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490830718 RX 9832419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288967/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917975424 RX 10210231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490832194 RX 9833887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917976987 RX 10211709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490833793 RX 9835365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 288992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917978550 RX 10213071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490835392 RX 9836843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917979990 RX 10214539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273557/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490836991 RX 9838321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917981541 RX 10216017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490838590 RX 9839683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917983104 RX 10217495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490840066 RX 9841151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917984667 RX 10218973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490841665 RX 9842629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917986230 RX 10220335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490843264 RX 9844107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917987670 RX 10221803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273621/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490844863 RX 9845585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289082/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917989221 RX 10223281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490846462 RX 9846947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289095/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917990784 RX 10224759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490847938 RX 9848415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917992347 RX 10226237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490849537 RX 9849893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917993910 RX 10227599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490851136 RX 9851371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917995350 RX 10229067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273685/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490852735 RX 9852849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917996901 RX 10230545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490854334 RX 9854211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19917998464 RX 10232023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490855810 RX 9855679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918000027 RX 10233501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490857409 RX 9857157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918001590 RX 10234863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490859008 RX 9858635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918003030 RX 10236331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490860607 RX 9860113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918004581 RX 10237809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490862206 RX 9861475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289223/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918006144 RX 10239287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490863682 RX 9862943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918007707 RX 10240765 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490865281 RX 9864421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918009270 RX 10242127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490866880 RX 9865899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918010734 RX 10243595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490868479 RX 9867377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918012285 RX 10245073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490870078 RX 9868739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918013848 RX 10246551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490871554 RX 9870207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918015411 RX 10248029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490873153 RX 9871685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918016974 RX 10249391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490874752 RX 9873163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918018426 RX 10250859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273877/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490876351 RX 9874641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289338/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918019977 RX 10252337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490877950 RX 9876003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918021540 RX 10253815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490879426 RX 9877471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918023103 RX 10255293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490881025 RX 9878949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918024666 RX 10256655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490882624 RX 9880427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918026106 RX 10258123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273941/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490884223 RX 9881905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918027657 RX 10259601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490885822 RX 9883267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918029220 RX 10261079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490887298 RX 9884735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918030783 RX 10262557 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490888897 RX 9886213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918032346 RX 10263919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 273992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490890496 RX 9887691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918033786 RX 10265387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274005/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490892095 RX 9889169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289466/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918035337 RX 10266865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490893694 RX 9890531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289479/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918036900 RX 10268343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490895170 RX 9891999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918038463 RX 10269821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490896769 RX 9893477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918040026 RX 10271183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490898368 RX 9894955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918041466 RX 10272651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490899967 RX 9896433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918043017 RX 10274129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490901566 RX 9897795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918044580 RX 10275607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490903042 RX 9899263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918046155 RX 10277085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490904641 RX 9900741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918047718 RX 10278447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490906240 RX 9902219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918049158 RX 10279915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490907839 RX 9903697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289594/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918050709 RX 10281393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490909438 RX 9905059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289607/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918052272 RX 10282871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490910914 RX 9906527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918053847 RX 10284349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490912513 RX 9908005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918055410 RX 10285711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490914112 RX 9909483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918056850 RX 10287179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274197/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490915711 RX 9910961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918058401 RX 10288657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490917310 RX 9912323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918059976 RX 10290135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490918786 RX 9913791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2767993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918061539 RX 10291613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490920385 RX 9915269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918063102 RX 10292975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490921984 RX 9916747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918064542 RX 10294443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274261/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490923583 RX 9918225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289722/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918066093 RX 10295921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490925182 RX 9919587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289735/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918067656 RX 10297399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490926658 RX 9921055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918069219 RX 10298877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490928257 RX 9922533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918070782 RX 10300239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490929856 RX 9924011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918072222 RX 10301707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274325/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490931455 RX 9925489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918073773 RX 10303185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490933054 RX 9926851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918075336 RX 10304663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2235995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490934530 RX 9928319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918076899 RX 10306141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490936129 RX 9929797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918078462 RX 10307503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490937728 RX 9931275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289837/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918079902 RX 10308971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490939327 RX 9932753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918081465 RX 10310449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490940926 RX 9934115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289863/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918083028 RX 10311927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490942402 RX 9935583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918084591 RX 10313405 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490944001 RX 9937061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918086154 RX 10314767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490945600 RX 9938539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289901/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918087594 RX 10316235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490947199 RX 9940017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918089145 RX 10317713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490948798 RX 9941379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918090708 RX 10319191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490950274 RX 9942847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918092271 RX 10320669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490951873 RX 9944325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918093834 RX 10322031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490953472 RX 9945803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289965/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918095274 RX 10323499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274517/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490955071 RX 9947281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289978/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918096825 RX 10324977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490956670 RX 9948643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 289991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918098388 RX 10326455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490958146 RX 9950111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918099951 RX 10327933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490959745 RX 9951589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918101514 RX 10329295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490961344 RX 9953067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918102954 RX 10330763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490962943 RX 9954545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918104505 RX 10332241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490964542 RX 9955907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918106068 RX 10333719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490966018 RX 9957375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918107631 RX 10335197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490967617 RX 9958853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918109194 RX 10336559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490969216 RX 9960331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918110634 RX 10338027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274645/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490970815 RX 9961809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918112185 RX 10339505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490972414 RX 9963171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290119/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918113748 RX 10340983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490973890 RX 9964639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918115311 RX 10342461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490975489 RX 9966117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918116874 RX 10343823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490977088 RX 9967595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290157/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918118314 RX 10345291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490310 RX 423395 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490978687 RX 9969073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642840 RX 421368 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918119988 RX 10346773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490980409 RX 9970545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918121551 RX 10348251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490981885 RX 9972023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918123114 RX 10349729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490983484 RX 9973501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918124689 RX 10351091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490985083 RX 9974863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918126129 RX 10352559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490986682 RX 9976331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918127680 RX 10354037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490988281 RX 9977809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918129243 RX 10355515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490989757 RX 9979287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918130806 RX 10356993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490991356 RX 9980765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918132369 RX 10358355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490992955 RX 9982127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918133809 RX 10359823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490994554 RX 9983595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918135360 RX 10361301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490996153 RX 9985073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918136923 RX 10362779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490997629 RX 9986551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918138486 RX 10364257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17490999228 RX 9988029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918140049 RX 10365619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491000827 RX 9989391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918141489 RX 10367087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491002426 RX 9990859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918143040 RX 10368565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491004025 RX 9992337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918144603 RX 10370043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491005501 RX 9993815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918146166 RX 10371521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491007100 RX 9995293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918147729 RX 10372883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491008699 RX 9996655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918149169 RX 10374351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491010298 RX 9998123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918150720 RX 10375829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491011897 RX 9999601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918152283 RX 10377307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 274995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491013373 RX 10001079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918153846 RX 10378785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491014972 RX 10002557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918155409 RX 10380147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491016571 RX 10003919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918156849 RX 10381615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491018170 RX 10005387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918158400 RX 10383093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491019769 RX 10006865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918159987 RX 10384571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491021245 RX 10008343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918161550 RX 10386049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491022844 RX 10009821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918163113 RX 10387411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491024443 RX 10011183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918164553 RX 10388879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491026042 RX 10012651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918166116 RX 10390357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491027641 RX 10014129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918167679 RX 10391835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491029117 RX 10015607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918169242 RX 10393313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491030716 RX 10017085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918170805 RX 10394675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491032315 RX 10018447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918172245 RX 10396143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491033914 RX 10019915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918173796 RX 10397621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491035513 RX 10021393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918175359 RX 10399099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491036989 RX 10022871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918176922 RX 10400577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491038588 RX 10024349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918178485 RX 10401939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491040187 RX 10025711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918179925 RX 10403407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491041786 RX 10027179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2768992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918181476 RX 10404885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491043385 RX 10028657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918183039 RX 10406363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491044861 RX 10030135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918184602 RX 10407841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491046460 RX 10031613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918186165 RX 10409203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491048059 RX 10032975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918187605 RX 10410671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491049658 RX 10034443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918189156 RX 10412149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491051257 RX 10035921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918190719 RX 10413627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491052733 RX 10037399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918192282 RX 10415105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491054332 RX 10038877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918193845 RX 10416467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491055931 RX 10040239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918195297 RX 10417935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2236995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491057530 RX 10041707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918196848 RX 10419413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491059129 RX 10043185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918198411 RX 10420891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491060605 RX 10044663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918199974 RX 10422369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491062204 RX 10046141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918201537 RX 10423731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491063803 RX 10047503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918202989 RX 10425199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491065402 RX 10048971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918204540 RX 10426677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491067001 RX 10050449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918206103 RX 10428155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491068477 RX 10051927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918207666 RX 10429633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491070076 RX 10053405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918209229 RX 10430995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491071675 RX 10054767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918210669 RX 10432463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491073274 RX 10056235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918212220 RX 10433941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491074873 RX 10057713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918213783 RX 10435419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491076349 RX 10059191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918215346 RX 10436897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491077948 RX 10060669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918216909 RX 10438259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491079547 RX 10062031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 290993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918218349 RX 10439727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491081146 RX 10063499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918219900 RX 10441205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491082745 RX 10064977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918221463 RX 10442683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491084221 RX 10066455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918223026 RX 10444161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491085820 RX 10067933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918224589 RX 10445523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491087419 RX 10069295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918226029 RX 10446991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491089018 RX 10070763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918227580 RX 10448469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491090617 RX 10072241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918229143 RX 10449947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491092093 RX 10073719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918230718 RX 10451425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491093692 RX 10075197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918232281 RX 10452787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491095291 RX 10076559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918233721 RX 10454255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491096890 RX 10078027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918235272 RX 10455733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491098489 RX 10079505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918236835 RX 10457211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491099965 RX 10080983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918238398 RX 10458689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491101564 RX 10082461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918239961 RX 10460051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491103163 RX 10083823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918241401 RX 10461519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491104762 RX 10085291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918242952 RX 10462997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491106361 RX 10086769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918244515 RX 10464475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491107837 RX 10088247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918246078 RX 10465953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491109436 RX 10089725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918247641 RX 10467315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491111035 RX 10091087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918249081 RX 10468783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491112634 RX 10092555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918250632 RX 10470261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491114233 RX 10094033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918252195 RX 10471739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491115709 RX 10095511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918253758 RX 10473217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491117308 RX 10096989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918255321 RX 10474579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491118907 RX 10098351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918256761 RX 10476047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491120506 RX 10099819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918258312 RX 10477525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491122105 RX 10101297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918259875 RX 10479003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491123581 RX 10102775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918261438 RX 10480481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491125180 RX 10104253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918263001 RX 10481843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491126779 RX 10105615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918264441 RX 10483311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491128378 RX 10107083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918265992 RX 10484789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491129977 RX 10108561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918267555 RX 10486267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491131453 RX 10110039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918269118 RX 10487745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491133052 RX 10111517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918270681 RX 10489107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491134651 RX 10112879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918272121 RX 10490575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 275993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491136250 RX 10114347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918273684 RX 10492053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491137849 RX 10115825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918275247 RX 10493531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491139325 RX 10117303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918276810 RX 10495009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491140924 RX 10118781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918278373 RX 10496371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491142523 RX 10120143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918279813 RX 10497839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491144122 RX 10121611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918281364 RX 10499317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491145721 RX 10123089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918282927 RX 10500795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491147197 RX 10124567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918284490 RX 10502273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491148796 RX 10126045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918286053 RX 10503635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491150395 RX 10127407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918287493 RX 10505103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491151994 RX 10128875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918289044 RX 10506581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491153593 RX 10130353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918290607 RX 10508059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491155069 RX 10131831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918292170 RX 10509537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491156668 RX 10133309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918293733 RX 10510899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491158267 RX 10134671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918295173 RX 10512367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491159866 RX 10136139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918296724 RX 10513845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491161465 RX 10137617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918298287 RX 10515323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491162941 RX 10139095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918299850 RX 10516801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491164540 RX 10140573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2769991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918301413 RX 10518163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491166139 RX 10141935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918302853 RX 10519631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491167738 RX 10143403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918304404 RX 10521109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491169337 RX 10144881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918305967 RX 10522587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491170813 RX 10146359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918307530 RX 10524065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491172412 RX 10147837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918309105 RX 10525427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491174011 RX 10149199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918310557 RX 10526895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491175610 RX 10150667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918312108 RX 10528373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491177209 RX 10152145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918313671 RX 10529851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491178685 RX 10153623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918315234 RX 10531329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2237993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491180284 RX 10155101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918316809 RX 10532691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491181883 RX 10156463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918318249 RX 10534159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491183482 RX 10157931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918319800 RX 10535637 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491185081 RX 10159409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918321363 RX 10537115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491186557 RX 10160887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918322926 RX 10538593 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491188156 RX 10162365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918324489 RX 10539955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491189755 RX 10163727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918325929 RX 10541423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491191354 RX 10165195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918327480 RX 10542901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491192953 RX 10166673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918329043 RX 10544379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491194429 RX 10168151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918330606 RX 10545857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491196028 RX 10169629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918332169 RX 10547219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491197627 RX 10170991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918333609 RX 10548687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491199226 RX 10172459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918335160 RX 10550165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491200825 RX 10173937 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918336723 RX 10551643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491202301 RX 10175415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 291992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918338286 RX 10553121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491203900 RX 10176893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918339849 RX 10554483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491205499 RX 10178255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918341289 RX 10555951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491207098 RX 10179723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918342840 RX 10557429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491208697 RX 10181201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918344427 RX 10558907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491210173 RX 10182679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918345990 RX 10560385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491211772 RX 10184157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918347553 RX 10561747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491213371 RX 10185519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918348993 RX 10563215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491214970 RX 10186987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918350544 RX 10564693 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491216569 RX 10188465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918352107 RX 10566171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491218045 RX 10189943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918353670 RX 10567649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491219644 RX 10191421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918355233 RX 10569011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491221243 RX 10192783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918356673 RX 10570479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491222842 RX 10194251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918358224 RX 10571957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491224441 RX 10195729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918359787 RX 10573435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491225917 RX 10197207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918361350 RX 10574913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491227516 RX 10198685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918362913 RX 10576275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491229115 RX 10200047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918364353 RX 10577743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491230714 RX 10201515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918365904 RX 10579221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491232313 RX 10202993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918367467 RX 10580699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491233789 RX 10204471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918369030 RX 10582177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491235388 RX 10205949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918370593 RX 10583539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491236987 RX 10207311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918372033 RX 10585007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491238586 RX 10208779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918373584 RX 10586485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491240185 RX 10210257 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918375147 RX 10587963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491241661 RX 10211735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918376710 RX 10589441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491243260 RX 10213213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918378273 RX 10590803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491244859 RX 10214575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918379725 RX 10592271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491246458 RX 10216043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918381276 RX 10593749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491248057 RX 10217521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918382839 RX 10595227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491249533 RX 10218999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918384402 RX 10596705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491251132 RX 10220477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918385965 RX 10598067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491252731 RX 10221839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918387405 RX 10599535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491254330 RX 10223307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918388956 RX 10601013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491255929 RX 10224785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918390519 RX 10602491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491257405 RX 10226263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918392082 RX 10603969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 276992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491259004 RX 10227741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918393645 RX 10605331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491260603 RX 10229103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918395085 RX 10606799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491262202 RX 10230571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918396636 RX 10608277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491263801 RX 10232049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918398199 RX 10609755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491265277 RX 10233527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918399762 RX 10611233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491266876 RX 10235005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918401325 RX 10612595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491268475 RX 10236367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918402765 RX 10614063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491270074 RX 10237835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918404316 RX 10615541 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491271673 RX 10239313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918405879 RX 10617019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491273149 RX 10240791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918407442 RX 10618497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491274748 RX 10242269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918409005 RX 10619859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491276347 RX 10243631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918410445 RX 10621327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491277946 RX 10245099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918411996 RX 10622805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491279545 RX 10246577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918413559 RX 10624283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491281021 RX 10248055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918415134 RX 10625761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491282620 RX 10249533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918416697 RX 10627123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491284219 RX 10250895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918418137 RX 10628591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491285818 RX 10252363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918419688 RX 10630069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491287417 RX 10253841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2770989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918421251 RX 10631547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491288893 RX 10255319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918422826 RX 10633025 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491290492 RX 10256797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918424389 RX 10634387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491292091 RX 10258159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918425829 RX 10635855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491293690 RX 10259627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918427380 RX 10637333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491295289 RX 10261105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918428943 RX 10638811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491296765 RX 10262583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918430506 RX 10640289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491298364 RX 10264061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918432069 RX 10641651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491299963 RX 10265423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918433509 RX 10643119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491301562 RX 10266891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918435060 RX 10644597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2238992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491303161 RX 10268369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918436623 RX 10646075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491304637 RX 10269847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918438186 RX 10647553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491306236 RX 10271325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918439749 RX 10648915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491307835 RX 10272687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918441189 RX 10650383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491309434 RX 10274155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918442740 RX 10651861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491311033 RX 10275633 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918444303 RX 10653339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491312509 RX 10277111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918445866 RX 10654817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491314108 RX 10278589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918447429 RX 10656179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491315707 RX 10279951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918448869 RX 10657647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491317306 RX 10281419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918450420 RX 10659125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491318905 RX 10282897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918451983 RX 10660603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491320381 RX 10284375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918453546 RX 10662081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491321980 RX 10285853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918455109 RX 10663443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491323579 RX 10287215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918456549 RX 10664911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491325178 RX 10288683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 292990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918458112 RX 10666389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491326777 RX 10290161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918459675 RX 10667867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491328253 RX 10291639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918461238 RX 10669345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491329852 RX 10293117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918462801 RX 10670707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491331451 RX 10294479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918464241 RX 10672175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491333050 RX 10295947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918465804 RX 10673653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491334649 RX 10297425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918467367 RX 10675131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491336125 RX 10298903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918468930 RX 10676609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491337724 RX 10300381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918470493 RX 10677971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491339323 RX 10301743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918471933 RX 10679439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491340922 RX 10303211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918473484 RX 10680917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491342521 RX 10304689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918475047 RX 10682395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491343997 RX 10306167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918476610 RX 10683873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491345596 RX 10307645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918478173 RX 10685235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491347195 RX 10309007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918479613 RX 10686703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491348794 RX 10310475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918481164 RX 10688181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491350393 RX 10311953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918482727 RX 10689659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491351869 RX 10313431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918484290 RX 10691137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491353468 RX 10314909 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918485853 RX 10692499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491355067 RX 10316271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918487293 RX 10693967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491356666 RX 10317739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918488844 RX 10695445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491358265 RX 10319217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918490407 RX 10696923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491359741 RX 10320695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918491970 RX 10698401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491361340 RX 10322173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918493545 RX 10699763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491362939 RX 10323535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918494997 RX 10701231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491364538 RX 10325003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918496548 RX 10702709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491366137 RX 10326481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918498111 RX 10704187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491367613 RX 10327959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918499674 RX 10705665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491369212 RX 10329437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918501237 RX 10707027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491370811 RX 10330799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918502677 RX 10708495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491372410 RX 10332267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918504228 RX 10709973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491374009 RX 10333745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918505791 RX 10711451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491375485 RX 10335223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918507354 RX 10712929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491377084 RX 10336701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918508917 RX 10714291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491378683 RX 10338063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918510357 RX 10715759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491380282 RX 10339531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918511908 RX 10717237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 277990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491381881 RX 10341009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918513471 RX 10718715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491383357 RX 10342487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918515034 RX 10720193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491384956 RX 10343965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918516597 RX 10721555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491386555 RX 10345327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918518037 RX 10723023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491388154 RX 10346795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918519588 RX 10724501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491389753 RX 10348273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918521151 RX 10725979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491391229 RX 10349751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918522714 RX 10727457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491392828 RX 10351229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918524277 RX 10728819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491394427 RX 10352591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918525717 RX 10730287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491396026 RX 10354059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918527268 RX 10731765 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491397625 RX 10355537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918528855 RX 10733243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491399101 RX 10357015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918530418 RX 10734721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491400700 RX 10358493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918531981 RX 10736083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491402299 RX 10359855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918533421 RX 10737551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491403898 RX 10361323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918534972 RX 10739029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491405497 RX 10362801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918536547 RX 10740507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491406973 RX 10364279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918538110 RX 10741985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491408572 RX 10365757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918539673 RX 10743347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491410171 RX 10367119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2771987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918541113 RX 10744815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491411770 RX 10368587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918542664 RX 10746293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491413369 RX 10370065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918544227 RX 10747771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491414845 RX 10371543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918545790 RX 10749249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491416444 RX 10373021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918547353 RX 10750611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491418043 RX 10374383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918548793 RX 10752079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491419642 RX 10375851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918550344 RX 10753557 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491421241 RX 10377329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918551907 RX 10755035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491422717 RX 10378807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918553470 RX 10756513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491424316 RX 10380285 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918555033 RX 10757875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2239990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491425915 RX 10381647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918556473 RX 10759343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491427514 RX 10383115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918558024 RX 10760821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491429113 RX 10384593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918559587 RX 10762299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491430589 RX 10386071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918561150 RX 10763777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491432188 RX 10387549 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918562713 RX 10765139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491433787 RX 10388911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918564165 RX 10766607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491435386 RX 10390379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918565716 RX 10768085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491436985 RX 10391857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918567279 RX 10769563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491438461 RX 10393335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918568842 RX 10771041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491440060 RX 10394813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918570405 RX 10772403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491441659 RX 10396175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918571845 RX 10773871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491443258 RX 10397643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918573396 RX 10775349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491444857 RX 10399121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918574959 RX 10776827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491446333 RX 10400599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918576522 RX 10778305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491447932 RX 10402077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 293988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918578085 RX 10779667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491449531 RX 10403439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918579525 RX 10781135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491451130 RX 10404907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918581076 RX 10782613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491452729 RX 10406385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918582639 RX 10784091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491454205 RX 10407863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918584202 RX 10785569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491455804 RX 10409341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918585765 RX 10786931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491457403 RX 10410703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918587205 RX 10788399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491459002 RX 10412171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918588756 RX 10789877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491460601 RX 10413649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918590319 RX 10791355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491462077 RX 10415127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918591882 RX 10792833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491463676 RX 10416605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918593445 RX 10794195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491465275 RX 10417967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918594885 RX 10795663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491466874 RX 10419435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918596436 RX 10797141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491468473 RX 10420913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918597999 RX 10798619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491469949 RX 10422391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918599574 RX 10800097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491471548 RX 10423869 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918601137 RX 10801459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491473147 RX 10425231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918602577 RX 10802927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491474746 RX 10426699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918604128 RX 10804405 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491476345 RX 10428177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918605691 RX 10805883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491477821 RX 10429655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918607266 RX 10807361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491479420 RX 10431133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918608829 RX 10808723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491481019 RX 10432495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918610269 RX 10810191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491482618 RX 10433963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918611820 RX 10811669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491484217 RX 10435441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918613383 RX 10813147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491485693 RX 10436919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918614946 RX 10814625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491487292 RX 10438397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918616509 RX 10815987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491488891 RX 10439759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918617949 RX 10817455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491490490 RX 10441227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918619500 RX 10818933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491492089 RX 10442705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918621063 RX 10820411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491493565 RX 10444183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918622626 RX 10821889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491495164 RX 10445661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918624189 RX 10823251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491496763 RX 10447023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918625629 RX 10824719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491498362 RX 10448491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918627180 RX 10826197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491499961 RX 10449969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918628743 RX 10827675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491501437 RX 10451447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918630306 RX 10829153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491503036 RX 10452925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918631869 RX 10830515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 278988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491504635 RX 10454287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918633309 RX 10831983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491506234 RX 10455755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918634884 RX 10833461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491507833 RX 10457233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918636447 RX 10834939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491509309 RX 10458711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918638010 RX 10836417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491510908 RX 10460189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918639573 RX 10837779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491512507 RX 10461551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918641013 RX 10839247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491514106 RX 10463019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918642576 RX 10840725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491515705 RX 10464497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918644139 RX 10842203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491517181 RX 10465975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918645702 RX 10843681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491518780 RX 10467453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918647265 RX 10845043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491520379 RX 10468815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918648705 RX 10846511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491521978 RX 10470283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918650268 RX 10847989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491523577 RX 10471761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918651831 RX 10849467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491525053 RX 10473239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918653394 RX 10850945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491526652 RX 10474717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918654957 RX 10852307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491528251 RX 10476079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918656397 RX 10853775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491529850 RX 10477547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918657948 RX 10855253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491531449 RX 10479025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918659511 RX 10856731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491532925 RX 10480503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918661074 RX 10858209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491534524 RX 10481981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2772999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918662637 RX 10859571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491536123 RX 10483343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918664077 RX 10861039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491537722 RX 10484811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918665628 RX 10862517 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491539321 RX 10486289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918667191 RX 10863995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491540797 RX 10487767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918668754 RX 10865473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491542396 RX 10489245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918670329 RX 10866835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491543995 RX 10490607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918671769 RX 10868303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491545594 RX 10492075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918673320 RX 10869781 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491547193 RX 10493553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918674883 RX 10871259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2240988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491548669 RX 10495031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918676446 RX 10872737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491550268 RX 10496509 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918678021 RX 10874099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491551867 RX 10497871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918679473 RX 10875567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491553466 RX 10499339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918681024 RX 10877045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491555065 RX 10500817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918682587 RX 10878523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491556541 RX 10502295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918684150 RX 10880001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491558140 RX 10503773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918685713 RX 10881363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491559739 RX 10505135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918687153 RX 10882831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491561338 RX 10506603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918688704 RX 10884309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491562937 RX 10508081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918690267 RX 10885787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491564413 RX 10509559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918691830 RX 10887265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491566012 RX 10511037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918693393 RX 10888627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491567611 RX 10512399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918694833 RX 10890095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491569210 RX 10513867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918696384 RX 10891573 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491570809 RX 10515345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 294987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918697947 RX 10893051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491572285 RX 10516823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918699510 RX 10894529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491573884 RX 10518301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918701073 RX 10895891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491575483 RX 10519663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918702513 RX 10897359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491577082 RX 10521131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918704064 RX 10898837 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491578681 RX 10522609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918705627 RX 10900315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491580157 RX 10524087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918707190 RX 10901793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491581756 RX 10525565 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918708753 RX 10903155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491583355 RX 10526927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918710193 RX 10904623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491584954 RX 10528395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918711744 RX 10906101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491586553 RX 10529873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918713319 RX 10907579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491588029 RX 10531351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918714882 RX 10909057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491589628 RX 10532829 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918716445 RX 10910419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491591227 RX 10534191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918717885 RX 10911887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491592826 RX 10535659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918719436 RX 10913365 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491594425 RX 10537137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918721011 RX 10914843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491595901 RX 10538615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918722574 RX 10916321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491597500 RX 10540093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918724137 RX 10917683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491599099 RX 10541455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918725577 RX 10919151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491600698 RX 10542923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918727128 RX 10920629 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491602297 RX 10544401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918728691 RX 10922107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491603773 RX 10545879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918730254 RX 10923585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491605372 RX 10547357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918731817 RX 10924947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491606971 RX 10548719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918733257 RX 10926415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491608570 RX 10550187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918734808 RX 10927893 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491610169 RX 10551665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918736371 RX 10929371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491611645 RX 10553143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918737934 RX 10930849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491613244 RX 10554621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918739497 RX 10932211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491614843 RX 10555983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918740937 RX 10933679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491616442 RX 10557451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918742488 RX 10935157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491618041 RX 10558929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918744051 RX 10936635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491619517 RX 10560407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918745614 RX 10938113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491621116 RX 10561885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918747177 RX 10939475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491622715 RX 10563247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918748629 RX 10940943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491624314 RX 10564715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918750180 RX 10942421 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491625913 RX 10566193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918751743 RX 10943899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 279987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491627389 RX 10567671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918753306 RX 10945377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491628988 RX 10569149 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918754869 RX 10946739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491630587 RX 10570511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918756309 RX 10948207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491632186 RX 10571979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918757860 RX 10949685 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491633785 RX 10573457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918759423 RX 10951163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491635261 RX 10574935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918760986 RX 10952641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491636860 RX 10576413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918762549 RX 10954003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491638459 RX 10577775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918763989 RX 10955471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491640058 RX 10579243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918765540 RX 10956949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491641657 RX 10580721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918767103 RX 10958427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491643133 RX 10582199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918768666 RX 10959905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491644732 RX 10583677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918770229 RX 10961267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491646331 RX 10585039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918771669 RX 10962735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491647930 RX 10586507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918773220 RX 10964213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491649529 RX 10587985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918774783 RX 10965691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491651005 RX 10589463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918776346 RX 10967169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491652604 RX 10590941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918777909 RX 10968531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491654203 RX 10592303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918779349 RX 10969999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491655802 RX 10593771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918780900 RX 10971477 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491657401 RX 10595249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2773997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918782463 RX 10972955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491658877 RX 10596727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918784038 RX 10974433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491660476 RX 10598205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918785613 RX 10975795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491662075 RX 10599567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918787053 RX 10977263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491663674 RX 10601035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918788604 RX 10978741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491665273 RX 10602513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918790167 RX 10980219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491666749 RX 10603991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918791742 RX 10981697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491668348 RX 10605469 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918793305 RX 10983059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491669947 RX 10606831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918794745 RX 10984527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2241987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491671546 RX 10608299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918796296 RX 10986005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491673145 RX 10609777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918797859 RX 10987483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491674621 RX 10611255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918799422 RX 10988961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491676220 RX 10612733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918800985 RX 10990323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491677819 RX 10614095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918802425 RX 10991791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491679418 RX 10615563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918803976 RX 10993269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491681017 RX 10617041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918805539 RX 10994747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491682493 RX 10618519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918807102 RX 10996225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491684092 RX 10619997 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918808665 RX 10997587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491685691 RX 10621359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918810105 RX 10999055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491687290 RX 10622827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918811656 RX 11000533 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491688889 RX 10624305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918813219 RX 11002011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491690365 RX 10625783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918814782 RX 11003489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491691964 RX 10627261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918816345 RX 11004851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491693563 RX 10628623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918817785 RX 11006319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491695162 RX 10630091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 295998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918819348 RX 11007797 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491696761 RX 10631569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918820911 RX 11009275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491698237 RX 10633047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918822474 RX 11010753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491699836 RX 10634525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918824037 RX 11012115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491701435 RX 10635887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918825477 RX 11013583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491703034 RX 10637355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918827040 RX 11015061 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491704633 RX 10638833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918828603 RX 11016539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491706109 RX 10640311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918830166 RX 11018017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491707708 RX 10641789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918831729 RX 11019379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491709307 RX 10643151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918833169 RX 11020847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491710906 RX 10644619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918834732 RX 11022325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491712505 RX 10646097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918836295 RX 11023803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491713981 RX 10647575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918837858 RX 11025281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491715580 RX 10649053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918839421 RX 11026643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491717179 RX 10650415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918840861 RX 11028111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491718778 RX 10651883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918842412 RX 11029589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491720377 RX 10653361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918843975 RX 11031067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491721853 RX 10654839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918845538 RX 11032545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491723452 RX 10656317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918847101 RX 11033907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491725051 RX 10657679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918848541 RX 11035375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491726650 RX 10659147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918850092 RX 11036853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491728249 RX 10660625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918851655 RX 11038331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491729725 RX 10662103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918853218 RX 11039809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491731324 RX 10663581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918854793 RX 11041171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491732923 RX 10664943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918856233 RX 11042639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491734522 RX 10666411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918857784 RX 11044117 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491736121 RX 10667889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918859347 RX 11045595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491737597 RX 10669367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918860910 RX 11047073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491739196 RX 10670845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918862473 RX 11048435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491740795 RX 10672207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918863913 RX 11049903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491742394 RX 10673675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918865464 RX 11051381 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491743993 RX 10675153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918867027 RX 11052859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491745469 RX 10676631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918868590 RX 11054337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491747068 RX 10678109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918870153 RX 11055699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491748667 RX 10679471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918871593 RX 11057167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491750266 RX 10680939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918873144 RX 11058645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 280998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491751865 RX 10682417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918874707 RX 11060123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491753341 RX 10683895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918876270 RX 11061601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491754940 RX 10685373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918877833 RX 11062963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491756539 RX 10686735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918879273 RX 11064431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491758138 RX 10688203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918880824 RX 11065909 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491759737 RX 10689681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918882387 RX 11067387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491761213 RX 10691159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918883950 RX 11068865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491762812 RX 10692637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918885513 RX 11070227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491764411 RX 10693999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918886953 RX 11071695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491766010 RX 10695467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918888504 RX 11073173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491767609 RX 10696945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918890067 RX 11074651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491769085 RX 10698423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918891630 RX 11076129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491770684 RX 10699901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918893193 RX 11077491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491772283 RX 10701263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918894633 RX 11078959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491773882 RX 10702731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918896184 RX 11080437 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491775481 RX 10704209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918897759 RX 11081915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491776957 RX 10705687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918899322 RX 11083393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491778556 RX 10707165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918900885 RX 11084755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491780155 RX 10708527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2774995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918902325 RX 11086223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491781754 RX 10709995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918903876 RX 11087701 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491783353 RX 10711473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918905439 RX 11089179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491784829 RX 10712951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918907002 RX 11090657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491786428 RX 10714429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918908565 RX 11092019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491788027 RX 10715791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918910005 RX 11093487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491789626 RX 10717259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918911556 RX 11094965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491791225 RX 10718737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918913119 RX 11096443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491792701 RX 10720215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918914682 RX 11097921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491794300 RX 10721693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918916245 RX 11099283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2242998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491795899 RX 10723055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918917685 RX 11100751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491797498 RX 10724523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918919236 RX 11102229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491799097 RX 10726001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918920799 RX 11103707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491800573 RX 10727479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918922362 RX 11105185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491802172 RX 10728957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918923925 RX 11106547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491803771 RX 10730319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918925365 RX 11108015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491805370 RX 10731787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918926916 RX 11109493 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491806969 RX 10733265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918928479 RX 11110971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491808445 RX 10734743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918930042 RX 11112449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491810044 RX 10736221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918931605 RX 11113811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491811643 RX 10737583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918933057 RX 11115279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491813242 RX 10739051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918934620 RX 11116757 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491814841 RX 10740529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918936183 RX 11118235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491816317 RX 10742007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918937746 RX 11119713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491817916 RX 10743485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 296996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918939309 RX 11121075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491819515 RX 10744847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918940761 RX 11122543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491821114 RX 10746315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918942312 RX 11124021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491822713 RX 10747793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918943875 RX 11125499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491824189 RX 10749271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918945438 RX 11126977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491825788 RX 10750749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918947001 RX 11128339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491827387 RX 10752111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918948441 RX 11129807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491828986 RX 10753579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918949992 RX 11131285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491830585 RX 10755057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918951555 RX 11132763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491832061 RX 10756535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918953118 RX 11134241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491833660 RX 10758013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918954681 RX 11135603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491835259 RX 10759375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918956121 RX 11137071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491836858 RX 10760843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918957672 RX 11138549 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491838457 RX 10762321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918959235 RX 11140027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491839933 RX 10763799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918960798 RX 11141505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491841532 RX 10765277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918962361 RX 11142867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491843131 RX 10766639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918963801 RX 11144335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491844730 RX 10768107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918965352 RX 11145813 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491846329 RX 10769585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918966915 RX 11147291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491847805 RX 10771063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918968478 RX 11148769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491849404 RX 10772541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918970053 RX 11150131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491851003 RX 10773903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918971493 RX 11151599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491852602 RX 10775371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918973044 RX 11153077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491854201 RX 10776849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918974607 RX 11154555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491855677 RX 10778327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918976182 RX 11156033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491857276 RX 10779805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918977745 RX 11157395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491858875 RX 10781167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918979185 RX 11158863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491860474 RX 10782635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918980736 RX 11160341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491862073 RX 10784113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918982299 RX 11161819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491863549 RX 10785591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918983862 RX 11163297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491865148 RX 10787069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918985425 RX 11164659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491866747 RX 10788431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918986865 RX 11166127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491868346 RX 10789899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918988416 RX 11167605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491869945 RX 10791377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918989979 RX 11169083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491871421 RX 10792855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918991542 RX 11170561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491873020 RX 10794333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918993105 RX 11171923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 281996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491874619 RX 10795695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918994545 RX 11173391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491876218 RX 10797163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918996096 RX 11174869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491877817 RX 10798641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918997659 RX 11176347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491879293 RX 10800119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19918999222 RX 11177825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491880892 RX 10801597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919000785 RX 11179187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491882491 RX 10802959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919002225 RX 11180655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491884090 RX 10804427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919003788 RX 11182133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491885689 RX 10805905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919005351 RX 11183611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491887165 RX 10807383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919006914 RX 11185089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491888764 RX 10808861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919008477 RX 11186451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491890363 RX 10810223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919009917 RX 11187919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491891962 RX 10811691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919011468 RX 11189397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491893561 RX 10813169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919013031 RX 11190875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491895037 RX 10814647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919014594 RX 11192353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491896636 RX 10816125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919016157 RX 11193715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491898235 RX 10817487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919017597 RX 11195183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491899834 RX 10818955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919019148 RX 11196661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491901433 RX 10820433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919020711 RX 11198139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491902909 RX 10821911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2775994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919022274 RX 11199617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491904508 RX 10823389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919023837 RX 11200979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491906107 RX 10824751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919025277 RX 11202447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491907706 RX 10826219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919026828 RX 11203925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491909305 RX 10827697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919028391 RX 11205403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491910781 RX 10829175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919029954 RX 11206881 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491912380 RX 10830653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919031517 RX 11208243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491913979 RX 10832015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919032957 RX 11209711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491915578 RX 10833483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919034508 RX 11211189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491917177 RX 10834961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919036071 RX 11212667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2243996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491918653 RX 10836439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919037634 RX 11214145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491920252 RX 10837917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919039197 RX 11215507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491921851 RX 10839279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919040637 RX 11216975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491923450 RX 10840747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919042188 RX 11218453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491925049 RX 10842225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919043751 RX 11219931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491926525 RX 10843703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919045314 RX 11221409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491928124 RX 10845181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919046877 RX 11222771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491929723 RX 10846543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919048329 RX 11224239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491931322 RX 10848011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919049880 RX 11225717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491932921 RX 10849489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919051443 RX 11227195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491934397 RX 10850967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919053006 RX 11228673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491935996 RX 10852445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919054569 RX 11230035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491937595 RX 10853807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919056009 RX 11231503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491939194 RX 10855275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919057560 RX 11232981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491940793 RX 10856753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 297995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919059123 RX 11234459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491942269 RX 10858231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919060686 RX 11235937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491943868 RX 10859709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919062249 RX 11237299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491945467 RX 10861071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919063689 RX 11238767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491947066 RX 10862539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919065240 RX 11240245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491948665 RX 10864017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919066803 RX 11241723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491950141 RX 10865495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919068366 RX 11243201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491951740 RX 10866973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919069929 RX 11244563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491953339 RX 10868335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919071369 RX 11246031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491954938 RX 10869803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919072920 RX 11247509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491956537 RX 10871281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919074483 RX 11248987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491958013 RX 10872759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919076046 RX 11250465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491959612 RX 10874237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919077609 RX 11251827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491961211 RX 10875599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919079049 RX 11253295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491962810 RX 10877067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919080600 RX 11254773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491964409 RX 10878545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919082175 RX 11256251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491965885 RX 10880023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919083750 RX 11257729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491967484 RX 10881501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919085313 RX 11259091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491969083 RX 10882863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919086753 RX 11260559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491970682 RX 10884331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919088304 RX 11262037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491972281 RX 10885809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919089879 RX 11263515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491973757 RX 10887287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919091442 RX 11264993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491975356 RX 10888765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919093005 RX 11266355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491976955 RX 10890127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919094445 RX 11267823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491978554 RX 10891595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919095996 RX 11269301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491980153 RX 10893073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919097559 RX 11270779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491981629 RX 10894551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919099122 RX 11272257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491983228 RX 10896029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919100685 RX 11273619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491984827 RX 10897391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919102125 RX 11275087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491986426 RX 10898859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919103676 RX 11276565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491988025 RX 10900337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919105239 RX 11278043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491989501 RX 10901815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919106802 RX 11279521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491991100 RX 10903293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919108365 RX 11280883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491992699 RX 10904655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919109805 RX 11282351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491994298 RX 10906123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919111356 RX 11283829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491995897 RX 10907601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919112919 RX 11285307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 282995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491997373 RX 10909079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919114482 RX 11286785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17491998972 RX 10910557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919116045 RX 11288147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492000571 RX 10911919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919117497 RX 11289615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492002170 RX 10913387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919119060 RX 11291093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492003769 RX 10914865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919120623 RX 11292571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492005245 RX 10916343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919122186 RX 11294049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492006844 RX 10917821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919123749 RX 11295411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492008443 RX 10919183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919125189 RX 11296879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492010042 RX 10920651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919126740 RX 11298357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492011641 RX 10922129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919128303 RX 11299835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492013117 RX 10923607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919129866 RX 11301313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492014716 RX 10925085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919131429 RX 11302675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492016315 RX 10926447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919132869 RX 11304143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492017914 RX 10927915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919134420 RX 11305621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492019513 RX 10929393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919135983 RX 11307099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492020989 RX 10930871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919137546 RX 11308577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492022588 RX 10932349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919139109 RX 11309939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492024187 RX 10933711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919140549 RX 11311407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492025786 RX 10935179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2776992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919142100 RX 11312885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492027385 RX 10936657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919143663 RX 11314363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492028861 RX 10938135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919145226 RX 11315841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492030460 RX 10939613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919146789 RX 11317203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492032059 RX 10940975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919148229 RX 11318671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492033658 RX 10942443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919149780 RX 11320149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492035257 RX 10943921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919151343 RX 11321627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492036733 RX 10945399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919152906 RX 11323105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492038332 RX 10946877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919154481 RX 11324467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492039931 RX 10948239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919155921 RX 11325935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2244995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492041530 RX 10949707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919157472 RX 11327413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492043129 RX 10951185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919159035 RX 11328891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492044605 RX 10952663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919160598 RX 11330369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492046204 RX 10954141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919162161 RX 11331731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492047803 RX 10955503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919163601 RX 11333199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492049402 RX 10956971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919165152 RX 11334677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492051001 RX 10958449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919166715 RX 11336155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492052477 RX 10959927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919168278 RX 11337633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492054076 RX 10961405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919169841 RX 11338995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492055675 RX 10962767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919171281 RX 11340463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492057274 RX 10964235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919172832 RX 11341941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492058873 RX 10965713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919174395 RX 11343419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492060349 RX 10967191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919175958 RX 11344897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492061948 RX 10968669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919177521 RX 11346259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492063547 RX 10970031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 298993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919178961 RX 11347727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492065146 RX 10971499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919180512 RX 11349205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492066745 RX 10972977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919182075 RX 11350683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492068221 RX 10974455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919183638 RX 11352161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492069820 RX 10975933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919185201 RX 11353523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492071419 RX 10977295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919186641 RX 11354991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492073018 RX 10978763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919188204 RX 11356469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492074617 RX 10980241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919189767 RX 11357947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492076093 RX 10981719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919191330 RX 11359425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492077692 RX 10983197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919192893 RX 11360787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492079291 RX 10984559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919194333 RX 11362255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492080890 RX 10986027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919195884 RX 11363733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492082489 RX 10987505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919197459 RX 11365211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492083965 RX 10988983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919199022 RX 11366689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492085564 RX 10990461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919200585 RX 11368051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492087163 RX 10991823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919202025 RX 11369519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492088762 RX 10993291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919203576 RX 11370997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492090361 RX 10994769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919205139 RX 11372475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492091837 RX 10996247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919206702 RX 11373953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492093436 RX 10997725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919208265 RX 11375315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492095035 RX 10999087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919209705 RX 11376783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492096634 RX 11000555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919211256 RX 11378261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492098233 RX 11002033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919212819 RX 11379739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492099709 RX 11003511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919214382 RX 11381217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492101308 RX 11004989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919215945 RX 11382579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492102907 RX 11006351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919217385 RX 11384047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492104506 RX 11007819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919218936 RX 11385525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492106105 RX 11009297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919220499 RX 11387003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492107581 RX 11010775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919222062 RX 11388481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492109180 RX 11012253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919223625 RX 11389843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492110779 RX 11013615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919225065 RX 11391311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492112378 RX 11015083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919226616 RX 11392789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492113977 RX 11016561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919228179 RX 11394267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492115453 RX 11018039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919229742 RX 11395745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492117052 RX 11019517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919231305 RX 11397107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492118651 RX 11020879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919232757 RX 11398575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 283993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492120250 RX 11022347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919234308 RX 11400053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492121849 RX 11023825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919235871 RX 11401531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492123325 RX 11025303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919237434 RX 11403009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492124924 RX 11026781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919239009 RX 11404371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492126523 RX 11028143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919240449 RX 11405839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492128122 RX 11029611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919242000 RX 11407317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492129721 RX 11031089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919243563 RX 11408795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492131197 RX 11032567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919245126 RX 11410273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492132796 RX 11034045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919246689 RX 11411635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492134395 RX 11035407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919248129 RX 11413103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492135994 RX 11036875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919249680 RX 11414581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492137593 RX 11038353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919251243 RX 11416059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492139069 RX 11039831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919252806 RX 11417537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492140668 RX 11041309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919254369 RX 11418899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492142267 RX 11042671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919255809 RX 11420367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492143866 RX 11044139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919257360 RX 11421845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492145465 RX 11045617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919258923 RX 11423323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492146941 RX 11047095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919260486 RX 11424801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492148540 RX 11048573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2777991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919262049 RX 11426163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492150139 RX 11049935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919263489 RX 11427631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492151738 RX 11051403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919265040 RX 11429109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492153337 RX 11052881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919266615 RX 11430587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492154813 RX 11054359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919268190 RX 11432065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492156412 RX 11055837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919269753 RX 11433427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492158011 RX 11057199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919271193 RX 11434895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492159610 RX 11058667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919272744 RX 11436373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492161209 RX 11060145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919274307 RX 11437851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492162685 RX 11061623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919275870 RX 11439329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2245993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492164284 RX 11063101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919277433 RX 11440691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492165883 RX 11064463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919278873 RX 11442159 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492167482 RX 11065931 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919280424 RX 11443637 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492169081 RX 11067409 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919281987 RX 11445115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492170557 RX 11068887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919283550 RX 11446593 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492172156 RX 11070365 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919285113 RX 11447955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492173755 RX 11071727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919286553 RX 11449423 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492175354 RX 11073195 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919288104 RX 11450901 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492176953 RX 11074673 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919289667 RX 11452379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492178429 RX 11076151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919291230 RX 11453857 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492180028 RX 11077629 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919292793 RX 11455219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492181627 RX 11078991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919294233 RX 11456687 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492183226 RX 11080459 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919295784 RX 11458165 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492184825 RX 11081937 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919297347 RX 11459643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492186301 RX 11083415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 299992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919298910 RX 11461121 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492187900 RX 11084893 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919300473 RX 11462483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492189499 RX 11086255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919301925 RX 11463951 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492191098 RX 11087723 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919303488 RX 11465429 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492192697 RX 11089201 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919305051 RX 11466907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492194173 RX 11090679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919306614 RX 11468385 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492195772 RX 11092157 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919308177 RX 11469747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492197371 RX 11093519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919309617 RX 11471215 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492198970 RX 11094987 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919311180 RX 11472693 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492200569 RX 11096465 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919312743 RX 11474171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492202045 RX 11097943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919314306 RX 11475649 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492203644 RX 11099421 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919315869 RX 11477011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492205243 RX 11100783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919317309 RX 11478479 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492206842 RX 11102251 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919318860 RX 11479957 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492208441 RX 11103729 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919320423 RX 11481435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492209917 RX 11105207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919321986 RX 11482913 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492211516 RX 11106685 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919323549 RX 11484275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492213115 RX 11108047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919324989 RX 11485743 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492214714 RX 11109515 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919326540 RX 11487221 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492216313 RX 11110993 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919328103 RX 11488699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492217789 RX 11112471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919329666 RX 11490177 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492219388 RX 11113949 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919331229 RX 11491539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492220987 RX 11115311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919332669 RX 11493007 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284825/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492222586 RX 11116779 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919334220 RX 11494485 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284838/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492224185 RX 11118257 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919335783 RX 11495963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284851/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492225661 RX 11119735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919337346 RX 11497441 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284864/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492227260 RX 11121213 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919338921 RX 11498803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284876/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492228859 RX 11122575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919340361 RX 11500271 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284889/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492230458 RX 11124043 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919341912 RX 11501749 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284902/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492232057 RX 11125521 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919343475 RX 11503227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492233533 RX 11126999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919345038 RX 11504705 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284928/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492235132 RX 11128477 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919346601 RX 11506067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492236731 RX 11129839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919348041 RX 11507535 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284953/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492238330 RX 11131307 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919349592 RX 11509013 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284966/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492239929 RX 11132785 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919351155 RX 11510491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284979/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492241405 RX 11134263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919352718 RX 11511969 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 284992/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492243004 RX 11135741 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919354281 RX 11513331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285004/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492244603 RX 11137103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919355721 RX 11514799 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492246202 RX 11138571 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919357272 RX 11516277 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492247801 RX 11140049 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919358835 RX 11517755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285043/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492249277 RX 11141527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919360398 RX 11519233 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285056/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492250876 RX 11143005 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919361961 RX 11520595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492252475 RX 11144367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919363401 RX 11522063 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285081/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492254074 RX 11145835 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919364952 RX 11523541 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285094/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492255673 RX 11147313 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919366515 RX 11525019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285107/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492257149 RX 11148791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919368078 RX 11526497 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285120/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492258748 RX 11150269 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919369641 RX 11527859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492260347 RX 11151631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919371081 RX 11529327 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285145/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492261946 RX 11153099 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919372644 RX 11530805 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285158/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492263545 RX 11154577 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919374207 RX 11532283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492265021 RX 11156055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919375770 RX 11533761 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285184/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492266620 RX 11157533 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919377333 RX 11535123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492268219 RX 11158895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919378773 RX 11536591 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285209/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492269818 RX 11160363 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919380324 RX 11538069 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285222/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492271417 RX 11161841 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2778989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919381899 RX 11539547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285235/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492272893 RX 11163319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919383462 RX 11541025 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285248/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492274492 RX 11164797 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919385025 RX 11542387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285260/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492276091 RX 11166159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919386465 RX 11543855 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492277690 RX 11167627 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919388016 RX 11545333 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285286/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492279289 RX 11169105 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919389579 RX 11546811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285299/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492280765 RX 11170583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919391142 RX 11548289 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285312/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492282364 RX 11172061 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919392705 RX 11549651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492283963 RX 11173423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919394145 RX 11551119 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285337/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492285562 RX 11174891 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919395696 RX 11552597 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2246992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492287161 RX 11176369 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919397259 RX 11554075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285363/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492288637 RX 11177847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919398822 RX 11555553 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285376/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492290236 RX 11179325 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919400385 RX 11556915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492291835 RX 11180687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919401825 RX 11558383 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285401/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492293434 RX 11182155 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919403376 RX 11559861 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285414/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492295033 RX 11183633 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919404939 RX 11561339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492296509 RX 11185111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919406502 RX 11562817 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285440/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492298108 RX 11186589 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919408077 RX 11564179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492299707 RX 11187951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919409529 RX 11565647 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285465/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492301306 RX 11189419 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919411080 RX 11567125 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285478/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492302905 RX 11190897 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919412643 RX 11568603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285491/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492304381 RX 11192375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919414206 RX 11570081 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285504/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492305980 RX 11193853 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919415769 RX 11571443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285516/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492307579 RX 11195215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919417221 RX 11572911 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492309178 RX 11196683 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 300990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919418772 RX 11574389 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285542/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492310777 RX 11198161 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919420335 RX 11575867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285555/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492312253 RX 11199639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919421898 RX 11577345 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492313852 RX 11201117 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919423473 RX 11578707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492315451 RX 11202479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919424913 RX 11580175 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285593/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492317050 RX 11203947 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919426464 RX 11581653 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285606/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492318649 RX 11205425 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919428027 RX 11583131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285619/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492320125 RX 11206903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919429590 RX 11584609 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285632/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492321724 RX 11208381 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919431153 RX 11585971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285644/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492323323 RX 11209743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919432593 RX 11587439 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285657/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492324922 RX 11211211 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919434144 RX 11588917 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492326521 RX 11212689 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919435707 RX 11590395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492327997 RX 11214167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919437270 RX 11591873 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492329596 RX 11215645 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919438833 RX 11593235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492331195 RX 11217007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919440273 RX 11594703 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285721/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492332794 RX 11218475 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919441824 RX 11596181 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285734/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492334393 RX 11219953 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919443387 RX 11597659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492335869 RX 11221431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919444962 RX 11599137 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285760/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492337468 RX 11222909 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919446525 RX 11600499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492339067 RX 11224271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919447965 RX 11601967 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285785/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492340666 RX 11225739 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919449516 RX 11603445 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285798/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492342265 RX 11227217 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919451091 RX 11604923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285811/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492343741 RX 11228695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919452666 RX 11606401 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492345340 RX 11230173 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919454229 RX 11607763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492346939 RX 11231535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919455669 RX 11609231 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285849/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492348538 RX 11233003 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919457220 RX 11610709 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285862/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492350137 RX 11234481 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919458783 RX 11612187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285875/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492351613 RX 11235959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919460346 RX 11613665 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285888/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492353212 RX 11237437 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919461909 RX 11615027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285900/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492354811 RX 11238799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919463349 RX 11616495 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285913/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492356410 RX 11240267 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919464900 RX 11617973 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285926/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492358009 RX 11241745 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919466463 RX 11619451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492359485 RX 11243223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919468026 RX 11620929 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492361084 RX 11244701 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919469589 RX 11622291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492362683 RX 11246063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919471029 RX 11623759 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285977/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492364282 RX 11247531 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919472580 RX 11625237 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 285990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492365881 RX 11249009 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919474143 RX 11626715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286003/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492367357 RX 11250487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919475706 RX 11628193 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286016/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492368956 RX 11251965 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919477269 RX 11629555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492370555 RX 11253327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919478709 RX 11631023 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286041/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492372154 RX 11254795 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919480260 RX 11632501 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286054/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492373753 RX 11256273 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919481823 RX 11633979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286067/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492375229 RX 11257751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919483386 RX 11635457 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492376828 RX 11259229 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919484949 RX 11636819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492378427 RX 11260591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919486389 RX 11638287 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286105/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492380026 RX 11262059 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919487952 RX 11639765 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286118/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492381625 RX 11263537 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919489515 RX 11641243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286131/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492383101 RX 11265015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919491078 RX 11642721 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286144/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492384700 RX 11266493 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919492641 RX 11644083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286156/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492386299 RX 11267855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919494081 RX 11645551 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286169/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492387898 RX 11269323 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919495644 RX 11647029 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286182/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492389497 RX 11270801 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919497207 RX 11648507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492390973 RX 11272279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919498770 RX 11649985 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492392572 RX 11273757 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919500333 RX 11651347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492394171 RX 11275119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2779987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919501773 RX 11652815 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286233/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492395770 RX 11276587 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919503324 RX 11654293 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286246/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492397369 RX 11278065 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919504887 RX 11655771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492398845 RX 11279543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919506450 RX 11657249 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286272/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492400444 RX 11281021 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919508013 RX 11658611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286284/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492402043 RX 11282383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919509453 RX 11660079 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286297/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492403642 RX 11283851 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919511004 RX 11661557 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492405241 RX 11285329 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919512567 RX 11663035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286323/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492406717 RX 11286807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919514130 RX 11664513 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492408316 RX 11288285 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919515693 RX 11665875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2247990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492409915 RX 11289647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919517133 RX 11667343 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286361/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492411514 RX 11291115 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919518684 RX 11668821 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286374/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492413113 RX 11292593 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919520247 RX 11670299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286387/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492414589 RX 11294071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919521810 RX 11671777 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286400/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492416188 RX 11295549 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919523385 RX 11673139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492417787 RX 11296911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919524825 RX 11674607 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286425/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492419386 RX 11298379 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919526376 RX 11676085 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286438/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492420985 RX 11299857 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919527939 RX 11677563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492422461 RX 11301335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919529502 RX 11679041 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492424060 RX 11302813 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919531065 RX 11680403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492425659 RX 11304175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919532505 RX 11681871 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492427258 RX 11305643 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919534056 RX 11683349 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492428857 RX 11307121 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919535619 RX 11684827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286515/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492430333 RX 11308599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919537182 RX 11686305 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286528/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492431932 RX 11310077 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 301988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919538745 RX 11687667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286540/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492433531 RX 11311439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919540185 RX 11689135 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286553/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492435130 RX 11312907 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919541736 RX 11690613 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286566/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492436729 RX 11314385 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919543299 RX 11692091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286579/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492438205 RX 11315863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919544862 RX 11693569 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492439804 RX 11317341 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919546425 RX 11694931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492441403 RX 11318703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919547865 RX 11696399 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286617/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492443002 RX 11320171 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919549416 RX 11697877 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492444601 RX 11321649 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919550979 RX 11699355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286643/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492446077 RX 11323127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919552542 RX 11700833 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286656/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492447676 RX 11324605 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919554105 RX 11702195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286668/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492449275 RX 11325967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919555545 RX 11703663 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286681/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492450874 RX 11327435 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919557108 RX 11705141 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286694/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492452473 RX 11328913 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919558683 RX 11706619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492453949 RX 11330391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919560246 RX 11708097 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492455548 RX 11331869 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919561809 RX 11709459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492457147 RX 11333231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919563249 RX 11710927 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286745/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492458746 RX 11334699 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919564800 RX 11712405 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286758/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492460345 RX 11336177 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919566375 RX 11713883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286771/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492461821 RX 11337655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919567938 RX 11715361 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286784/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492463420 RX 11339133 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919569501 RX 11716723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286796/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492465019 RX 11340495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919570941 RX 11718191 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492466618 RX 11341963 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919572492 RX 11719669 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492468217 RX 11343441 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919574055 RX 11721147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286835/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492469693 RX 11344919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919575618 RX 11722625 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492471292 RX 11346397 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919577181 RX 11723987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492472891 RX 11347759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919578621 RX 11725455 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286873/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492474490 RX 11349227 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919580172 RX 11726933 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286886/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492476089 RX 11350705 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919581735 RX 11728411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286899/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492477565 RX 11352183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919583298 RX 11729889 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286912/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492479164 RX 11353661 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919584861 RX 11731251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286924/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492480763 RX 11355023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919586301 RX 11732719 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286937/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492482362 RX 11356491 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919587852 RX 11734197 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286950/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492483961 RX 11357969 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919589415 RX 11735675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492485437 RX 11359447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919590978 RX 11737153 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492487036 RX 11360925 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919592541 RX 11738515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 286988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492488635 RX 11362287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919593993 RX 11739983 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287001/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492490234 RX 11363755 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919595544 RX 11741461 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287014/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492491833 RX 11365233 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919597107 RX 11742939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492493309 RX 11366711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919598670 RX 11744417 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287040/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492494908 RX 11368189 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919600233 RX 11745779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492496507 RX 11369551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919601685 RX 11747247 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287065/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492498106 RX 11371019 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919603236 RX 11748725 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287078/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492499705 RX 11372497 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919604799 RX 11750203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287091/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492501181 RX 11373975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919606362 RX 11751681 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492502780 RX 11375453 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919607937 RX 11753043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492504379 RX 11376815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919609377 RX 11754511 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287129/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492505978 RX 11378283 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919610928 RX 11755989 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287142/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492507577 RX 11379761 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919612491 RX 11757467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287155/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492509053 RX 11381239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919614054 RX 11758945 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287168/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492510652 RX 11382717 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919615617 RX 11760307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287180/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492512251 RX 11384079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919617057 RX 11761775 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287193/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492513850 RX 11385547 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919618608 RX 11763253 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287206/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492515449 RX 11387025 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919620171 RX 11764731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492516925 RX 11388503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919621734 RX 11766209 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492518524 RX 11389981 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2780999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919623297 RX 11767571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492520123 RX 11391343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919624737 RX 11769039 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287257/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492521722 RX 11392811 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919626288 RX 11770517 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492523321 RX 11394289 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919627851 RX 11771995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287283/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492524797 RX 11395767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919629426 RX 11773473 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287296/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492526396 RX 11397245 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919630989 RX 11774835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492527995 RX 11398607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919632429 RX 11776303 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287321/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492529594 RX 11400075 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919633980 RX 11777781 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287334/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492531193 RX 11401553 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919635543 RX 11779259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2248988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287347/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492532669 RX 11403031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919637106 RX 11780737 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492534268 RX 11404509 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919638669 RX 11782099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492535867 RX 11405871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919640109 RX 11783567 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287385/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492537466 RX 11407339 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919641660 RX 11785045 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287398/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492539065 RX 11408817 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919643223 RX 11786523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287411/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492540541 RX 11410295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919644786 RX 11788001 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287424/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492542140 RX 11411773 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919646349 RX 11789363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287436/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492543739 RX 11413135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919647789 RX 11790831 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287449/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492545338 RX 11414603 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919649340 RX 11792309 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287462/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492546937 RX 11416081 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919650903 RX 11793787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287475/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492548413 RX 11417559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919652466 RX 11795265 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492550012 RX 11419037 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919654029 RX 11796627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492551611 RX 11420399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919655469 RX 11798095 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287513/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492553210 RX 11421867 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919657020 RX 11799573 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287526/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492554809 RX 11423345 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 302987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919658583 RX 11801051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287539/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492556285 RX 11424823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919660146 RX 11802529 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492557884 RX 11426301 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919661709 RX 11803891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287564/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492559483 RX 11427663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919663149 RX 11805359 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287577/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492561082 RX 11429131 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919664700 RX 11806837 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492562681 RX 11430609 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919666263 RX 11808315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287603/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492564157 RX 11432087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919667826 RX 11809793 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492565756 RX 11433565 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919669389 RX 11811155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492567355 RX 11434927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919670829 RX 11812623 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492568954 RX 11436395 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919672392 RX 11814101 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287654/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492570553 RX 11437873 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919673955 RX 11815579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492572029 RX 11439351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919675518 RX 11817057 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287680/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492573628 RX 11440829 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919677081 RX 11818419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492575227 RX 11442191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919678521 RX 11819887 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287705/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492576826 RX 11443659 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919680072 RX 11821365 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287718/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492578425 RX 11445137 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919681635 RX 11822843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287731/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492579901 RX 11446615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919683198 RX 11824321 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492581500 RX 11448093 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919684761 RX 11825683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492583099 RX 11449455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919686201 RX 11827151 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492584698 RX 11450923 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919687752 RX 11828629 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492586297 RX 11452401 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919689315 RX 11830107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287795/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492587773 RX 11453879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919690878 RX 11831585 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287808/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492589372 RX 11455357 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919692441 RX 11832947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287820/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492590971 RX 11456719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919693881 RX 11834415 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287833/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492592570 RX 11458187 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919695432 RX 11835893 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287846/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492594169 RX 11459665 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919696995 RX 11837371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287859/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492595645 RX 11461143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919698558 RX 11838849 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492597244 RX 11462621 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919700121 RX 11840211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492598843 RX 11463983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919701561 RX 11841679 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492600442 RX 11465451 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919703112 RX 11843157 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492602041 RX 11466929 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919704675 RX 11844635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287923/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492603517 RX 11468407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919706238 RX 11846113 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287936/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492605116 RX 11469885 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919707825 RX 11847475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287948/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492606715 RX 11471247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919709265 RX 11848943 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287961/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492608314 RX 11472715 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919710816 RX 11850421 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287974/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492609913 RX 11474193 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919712379 RX 11851899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 287987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492611389 RX 11475671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919713954 RX 11853377 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492612988 RX 11477149 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919715517 RX 11854739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492614587 RX 11478511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919716957 RX 11856207 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492616186 RX 11479979 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919718508 RX 11857685 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492617785 RX 11481457 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919720071 RX 11859163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288051/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492619261 RX 11482935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919721634 RX 11860641 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288064/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492620860 RX 11484413 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919723197 RX 11862003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288076/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492622459 RX 11485775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919724637 RX 11863471 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288089/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492624058 RX 11487243 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919726188 RX 11864949 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288102/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492625657 RX 11488721 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919727751 RX 11866427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288115/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492627133 RX 11490199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919729314 RX 11867905 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492628732 RX 11491677 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919730877 RX 11869267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492630331 RX 11493039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919732317 RX 11870735 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492631930 RX 11494507 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919733868 RX 11872213 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288166/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492633529 RX 11495985 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919735431 RX 11873691 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288179/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492635005 RX 11497463 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919736994 RX 11875169 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288192/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492636604 RX 11498941 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919738557 RX 11876531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288204/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492638203 RX 11500303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919739997 RX 11877999 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288217/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492639802 RX 11501771 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919741548 RX 11879477 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492641401 RX 11503249 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2781997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919743123 RX 11880955 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288243/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492642877 RX 11504727 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919744686 RX 11882433 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492644476 RX 11506205 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919746249 RX 11883795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492646075 RX 11507567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919747689 RX 11885263 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492647674 RX 11509035 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919749240 RX 11886741 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492649273 RX 11510513 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919750815 RX 11888219 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492650749 RX 11511991 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919752378 RX 11889697 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288320/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492652348 RX 11513469 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919753941 RX 11891059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492653947 RX 11514831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919755381 RX 11892527 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2249987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288345/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492655546 RX 11516299 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919756932 RX 11894005 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288358/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492657145 RX 11517777 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919758495 RX 11895483 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288371/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492658621 RX 11519255 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919760058 RX 11896961 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492660220 RX 11520733 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919761621 RX 11898323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492661819 RX 11522095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919763061 RX 11899791 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492663418 RX 11523563 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919764612 RX 11901269 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492665017 RX 11525041 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919766175 RX 11902747 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288435/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492666493 RX 11526519 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919767738 RX 11904225 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288448/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492668092 RX 11527997 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919769301 RX 11905587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288460/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492669691 RX 11529359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919770741 RX 11907055 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288473/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492671290 RX 11530827 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919772292 RX 11908533 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288486/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492672889 RX 11532305 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919773855 RX 11910011 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288499/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492674365 RX 11533783 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919775418 RX 11911489 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492675964 RX 11535261 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919776981 RX 11912851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492677563 RX 11536623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919778433 RX 11914319 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492679162 RX 11538091 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 303998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919779984 RX 11915797 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492680761 RX 11539569 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919781547 RX 11917275 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288563/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492682237 RX 11541047 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919783110 RX 11918753 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288576/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492683836 RX 11542525 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919784673 RX 11920115 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492685435 RX 11543887 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919786113 RX 11921583 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288601/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492687034 RX 11545355 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919787664 RX 11923061 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288614/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492688633 RX 11546833 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919789227 RX 11924539 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288627/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492690109 RX 11548311 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919790790 RX 11926017 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288640/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492691708 RX 11549789 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919792353 RX 11927379 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492693307 RX 11551151 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919793793 RX 11928847 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492694906 RX 11552619 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919795344 RX 11930325 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288678/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492696505 RX 11554097 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919796907 RX 11931803 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288691/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492697981 RX 11555575 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919798470 RX 11933281 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288704/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492699580 RX 11557053 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919800033 RX 11934643 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288716/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492701179 RX 11558415 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919801473 RX 11936111 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492702778 RX 11559883 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919803024 RX 11937589 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288742/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492704377 RX 11561361 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919804587 RX 11939067 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288755/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492705853 RX 11562839 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919806150 RX 11940545 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492707452 RX 11564317 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919807713 RX 11941907 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288780/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492709051 RX 11565679 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919809153 RX 11943375 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492710650 RX 11567147 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919810704 RX 11944853 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492712249 RX 11568625 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919812267 RX 11946331 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288819/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492713725 RX 11570103 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919813830 RX 11947809 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288832/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492715324 RX 11571581 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919815393 RX 11949171 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288844/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492716923 RX 11572943 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919816833 RX 11950639 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288857/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492718522 RX 11574411 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919818384 RX 11952117 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492720121 RX 11575889 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919819947 RX 11953595 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288883/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492721597 RX 11577367 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919821522 RX 11955073 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288896/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492723196 RX 11578845 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919823085 RX 11956435 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492724795 RX 11580207 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919824525 RX 11957903 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492726394 RX 11581675 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919826076 RX 11959381 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288934/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492727993 RX 11583153 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919827639 RX 11960859 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492729469 RX 11584631 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919829202 RX 11962337 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288960/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492731068 RX 11586109 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919830765 RX 11963699 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492732667 RX 11587471 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919832205 RX 11965167 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288985/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492734266 RX 11588939 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919833756 RX 11966645 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 288998/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492735865 RX 11590417 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919835319 RX 11968123 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289011/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492737341 RX 11591895 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919836882 RX 11969601 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492738940 RX 11593373 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919838445 RX 11970963 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289036/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492740539 RX 11594735 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919839885 RX 11972431 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492742138 RX 11596203 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919841436 RX 11973909 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492743737 RX 11597681 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919842999 RX 11975387 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289075/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492745213 RX 11599159 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919844562 RX 11976865 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289088/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492746812 RX 11600637 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919846125 RX 11978227 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289100/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492748411 RX 11601999 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919847565 RX 11979695 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289113/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492750010 RX 11603467 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919849116 RX 11981173 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289126/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492751609 RX 11604945 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919850679 RX 11982651 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289139/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492753085 RX 11606423 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919852242 RX 11984129 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289152/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492754684 RX 11607901 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919853805 RX 11985491 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492756283 RX 11609263 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919855245 RX 11986959 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492757882 RX 11610731 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919856820 RX 11988437 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289190/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492759481 RX 11612209 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919858383 RX 11989915 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289203/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492760957 RX 11613687 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919859946 RX 11991393 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289216/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492762556 RX 11615165 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919861509 RX 11992755 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289228/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492764155 RX 11616527 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2782995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919862949 RX 11994223 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289241/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492765754 RX 11617995 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919864512 RX 11995701 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289254/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492767353 RX 11619473 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919866075 RX 11997179 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492768829 RX 11620951 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919867638 RX 11998657 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492770428 RX 11622429 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919869201 RX 12000019 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492772027 RX 11623791 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919870641 RX 12001487 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492773626 RX 11625259 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919872192 RX 12002965 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492775225 RX 11626737 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919873755 RX 12004443 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289331/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492776701 RX 11628215 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919875318 RX 12005921 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289344/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492778300 RX 11629693 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919876881 RX 12007283 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2250998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289356/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492779899 RX 11631055 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919878321 RX 12008751 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289369/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492781498 RX 11632523 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919879872 RX 12010229 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289382/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492783097 RX 11634001 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919881435 RX 12011707 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289395/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492784573 RX 11635479 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919882998 RX 12013185 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289408/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492786172 RX 11636957 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919884561 RX 12014547 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492787771 RX 11638319 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919886001 RX 12016015 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492789370 RX 11639787 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919887552 RX 12017493 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289446/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492790969 RX 11641265 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919889115 RX 12018971 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289459/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492792445 RX 11642743 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919890678 RX 12020449 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289472/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492794044 RX 11644221 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919892265 RX 12021811 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289484/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492795643 RX 11645583 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919893705 RX 12023279 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289497/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492797242 RX 11647051 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919895256 RX 12024757 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492798841 RX 11648529 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919896819 RX 12026235 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492800317 RX 11650007 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919898382 RX 12027713 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492801916 RX 11651485 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 304996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919899945 RX 12029075 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492803515 RX 11652847 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919901385 RX 12030543 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492805114 RX 11654315 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919902936 RX 12032021 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492806713 RX 11655793 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919904499 RX 12033499 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289587/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492808189 RX 11657271 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919906062 RX 12034977 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289600/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492809788 RX 11658749 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919907625 RX 12036339 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492811387 RX 11660111 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919909065 RX 12037807 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289625/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492812986 RX 11661579 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919910616 RX 12039285 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289638/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492814585 RX 11663057 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919912179 RX 12040763 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289651/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492816061 RX 11664535 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919913742 RX 12042241 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289664/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492817660 RX 11666013 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919915305 RX 12043603 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492819259 RX 11667375 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919916745 RX 12045071 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492820858 RX 11668843 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919918296 RX 12046549 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289702/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492822457 RX 11670321 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919919859 RX 12048027 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289715/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492823933 RX 11671799 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919921422 RX 12049505 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289728/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492825532 RX 11673277 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919922985 RX 12050867 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289740/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492827131 RX 11674639 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919924425 RX 12052335 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289753/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492828730 RX 11676107 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919925976 RX 12053813 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289766/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492830329 RX 11677585 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919927551 RX 12055291 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492831805 RX 11679063 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919929114 RX 12056769 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492833404 RX 11680541 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919930677 RX 12058131 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289804/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492835003 RX 11681903 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919932117 RX 12059599 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492836602 RX 11683371 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919933668 RX 12061077 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492838201 RX 11684849 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919935231 RX 12062555 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289843/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492839677 RX 11686327 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919936794 RX 12064033 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289856/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492841276 RX 11687805 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919938357 RX 12065395 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492842875 RX 11689167 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919939797 RX 12066863 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289881/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492844474 RX 11690635 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919941348 RX 12068341 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289894/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492846073 RX 11692113 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919942911 RX 12069819 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492847549 RX 11693591 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919944474 RX 12071297 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289920/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492849148 RX 11695069 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919946037 RX 12072659 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492850747 RX 11696431 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919947477 RX 12074127 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492852346 RX 11697899 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919949028 RX 12075605 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289958/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492853945 RX 11699377 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919950591 RX 12077083 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289971/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492855421 RX 11700855 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919952154 RX 12078561 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289984/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492857020 RX 11702333 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919953717 RX 12079923 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 289996/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492858619 RX 11703695 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919955157 RX 12081391 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492860218 RX 11705163 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919956708 RX 12082869 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290022/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492861817 RX 11706641 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919958271 RX 12084347 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492863293 RX 11708119 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919959834 RX 12085825 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492864892 RX 11709597 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919961397 RX 12087187 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290060/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492866491 RX 11710959 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919962849 RX 12088655 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492868090 RX 11712427 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919964400 RX 12090133 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492869689 RX 11713905 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919965963 RX 12091611 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290099/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492871165 RX 11715383 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919967526 RX 12093089 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290112/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492872764 RX 11716861 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919969089 RX 12094451 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290124/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492874363 RX 11718223 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919970541 RX 12095919 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290137/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492875962 RX 11719691 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919972092 RX 12097397 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492877561 RX 11721169 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919973655 RX 12098875 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290163/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492879037 RX 11722647 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919975218 RX 12100353 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492880636 RX 11724125 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919976781 RX 12101715 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492882235 RX 11725487 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919978221 RX 12103183 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492883834 RX 11726955 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919979772 RX 12104661 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290214/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492885433 RX 11728433 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919981335 RX 12106139 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492886909 RX 11729911 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2783994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919982898 RX 12107617 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290240/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492888508 RX 11731389 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919984461 RX 12108979 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492890107 RX 11732751 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919985901 RX 12110447 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492891706 RX 11734219 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919987452 RX 12111925 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290278/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492893305 RX 11735697 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919989015 RX 12113403 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492894781 RX 11737175 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919990578 RX 12114881 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492896380 RX 11738653 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919992141 RX 12116243 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290316/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492897979 RX 11740015 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919993581 RX 12117711 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492899578 RX 11741483 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919995132 RX 12119189 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492901177 RX 11742961 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919996695 RX 12120667 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2251996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290355/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492902653 RX 11744439 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919998258 RX 12122145 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290368/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492904252 RX 11745917 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19919999821 RX 12123507 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290380/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492905851 RX 11747279 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920001261 RX 12124975 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290393/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492907450 RX 11748747 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920002812 RX 12126453 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290406/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492909049 RX 11750225 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920004375 RX 12127931 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290419/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492910525 RX 11751703 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920005950 RX 12129409 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290432/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492912124 RX 11753181 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920007513 RX 12130771 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492913723 RX 11754543 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920008953 RX 12132239 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492915322 RX 11756011 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920010504 RX 12133717 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492916921 RX 11757489 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920012067 RX 12135195 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290483/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492918397 RX 11758967 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920013642 RX 12136673 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290496/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492919996 RX 11760445 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920015205 RX 12138035 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492921595 RX 11761807 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920016645 RX 12139503 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290521/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492923194 RX 11763275 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920018196 RX 12140981 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290534/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492924793 RX 11764753 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 305995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920019759 RX 12142459 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492926269 RX 11766231 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920021322 RX 12143937 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290560/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492927868 RX 11767709 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920022885 RX 12145299 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492929467 RX 11769071 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920024325 RX 12146767 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492931066 RX 11770539 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920025876 RX 12148245 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492932665 RX 11772017 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920027439 RX 12149723 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492934141 RX 11773495 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920029002 RX 12151201 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290624/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492935740 RX 11774973 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920030565 RX 12152563 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290636/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492937339 RX 11776335 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920032005 RX 12154031 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290649/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492938938 RX 11777803 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920033556 RX 12155509 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492940537 RX 11779281 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920035119 RX 12156987 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290675/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492942013 RX 11780759 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920036682 RX 12158465 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290688/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492943612 RX 11782237 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920038245 RX 12159827 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492945211 RX 11783599 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920039685 RX 12161295 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492946810 RX 11785067 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920041260 RX 12162773 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290726/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492948409 RX 11786545 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920042823 RX 12164251 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290739/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492949885 RX 11788023 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920044386 RX 12165729 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290752/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492951484 RX 11789501 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920045949 RX 12167091 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290764/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492953083 RX 11790863 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920047389 RX 12168559 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290777/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492954682 RX 11792331 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920048940 RX 12170037 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492956281 RX 11793809 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920050503 RX 12171515 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290803/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492957757 RX 11795287 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920052066 RX 12172993 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290816/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492959356 RX 11796765 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920053629 RX 12174355 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492960955 RX 11798127 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920055069 RX 12175823 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492962554 RX 11799595 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920056620 RX 12177301 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492964153 RX 11801073 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920058183 RX 12178779 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492965629 RX 11802551 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920059746 RX 12180257 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290880/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492967228 RX 11804029 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920061309 RX 12181619 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492968827 RX 11805391 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920062749 RX 12183087 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290905/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492970426 RX 11806859 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920064300 RX 12184565 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290918/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492972025 RX 11808337 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920065863 RX 12186043 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290931/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492973501 RX 11809815 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920067426 RX 12187521 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290944/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492975100 RX 11811293 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920068989 RX 12188883 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492976699 RX 11812655 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920070429 RX 12190351 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492978298 RX 11814123 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920071980 RX 12191829 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290982/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492979897 RX 11815601 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920073543 RX 12193307 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 290995/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492981373 RX 11817079 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920075106 RX 12194785 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291008/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492982972 RX 11818557 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920076693 RX 12196147 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291020/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492984571 RX 11819919 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920078133 RX 12197615 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291033/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492986170 RX 11821387 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920079684 RX 12199093 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291046/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492987769 RX 11822865 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920081247 RX 12200571 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291059/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492989245 RX 11824343 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920082810 RX 12202049 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291072/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492990844 RX 11825821 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920084385 RX 12203411 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291084/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492992443 RX 11827183 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920085825 RX 12204879 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492994042 RX 11828651 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920087376 RX 12206357 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492995641 RX 11830129 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920088939 RX 12207835 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492997117 RX 11831607 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920090502 RX 12209313 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17492998716 RX 11833085 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920092065 RX 12210675 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493000315 RX 11834447 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920093505 RX 12212143 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291161/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493001914 RX 11835915 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920095056 RX 12213621 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291174/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493003513 RX 11837393 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920096619 RX 12215099 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493004989 RX 11838871 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920098182 RX 12216577 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291200/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493006588 RX 11840349 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920099745 RX 12217939 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493008187 RX 11841711 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920101185 RX 12219407 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493009786 RX 11843179 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2784992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920102736 RX 12220885 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291238/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493011385 RX 11844657 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920104299 RX 12222363 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291251/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493012861 RX 11846135 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920105862 RX 12223841 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291264/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493014460 RX 11847613 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920107425 RX 12225203 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291276/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493016059 RX 11848975 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920108865 RX 12226671 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493017658 RX 11850443 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920110416 RX 12228149 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291302/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493019257 RX 11851921 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920111991 RX 12229627 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291315/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493020733 RX 11853399 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920113554 RX 12231105 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291328/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493022332 RX 11854877 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920115117 RX 12232467 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291340/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493023931 RX 11856239 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920116557 RX 12233935 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2252995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493025530 RX 11857707 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920118108 RX 12235413 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493027129 RX 11859185 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920119671 RX 12236891 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493028605 RX 11860663 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920121234 RX 12238369 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291392/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493030204 RX 11862141 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920122797 RX 12239731 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291404/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493031803 RX 11863503 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920124237 RX 12241199 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291417/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493033402 RX 11864971 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920125788 RX 12242677 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291430/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493035001 RX 11866449 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920127351 RX 12244155 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291443/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493036477 RX 11867927 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920128914 RX 12245633 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291456/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493038076 RX 11869405 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920130477 RX 12246995 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291468/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493039675 RX 11870767 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920131917 RX 12248463 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493041274 RX 11872235 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920133468 RX 12249941 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291494/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493042873 RX 11873713 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920135031 RX 12251419 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493044349 RX 11875191 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920136594 RX 12252897 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291520/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493045948 RX 11876669 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920138157 RX 12254259 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493047547 RX 11878031 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 306993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920139597 RX 12255727 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291545/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493049146 RX 11879499 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920141148 RX 12257205 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291558/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493050745 RX 11880977 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920142711 RX 12258683 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291571/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493052221 RX 11882455 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920144274 RX 12260161 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291584/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493053820 RX 11883933 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920145837 RX 12261523 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291596/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493055419 RX 11885295 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920147289 RX 12262991 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493057018 RX 11886763 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920148840 RX 12264469 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493058617 RX 11888241 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920150403 RX 12265947 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493060093 RX 11889719 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920151966 RX 12267425 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291648/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493061692 RX 11891197 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920153529 RX 12268787 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291660/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493063291 RX 11892559 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920154981 RX 12270255 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291673/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493064890 RX 11894027 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920156532 RX 12271733 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291686/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493066489 RX 11895505 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920158095 RX 12273211 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291699/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493067965 RX 11896983 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920159658 RX 12274689 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291712/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493069564 RX 11898461 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920161221 RX 12276051 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291724/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493071163 RX 11899823 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920162661 RX 12277519 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493072762 RX 11901291 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920164212 RX 12278997 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493074361 RX 11902769 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920165775 RX 12280475 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291763/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493075837 RX 11904247 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920167338 RX 12281953 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291776/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493077436 RX 11905725 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920168901 RX 12283315 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493079035 RX 11907087 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920170341 RX 12284783 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291801/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493080634 RX 11908555 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920171892 RX 12286261 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291814/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493082233 RX 11910033 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920173455 RX 12287739 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291827/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493083709 RX 11911511 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920175018 RX 12289217 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291840/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493085308 RX 11912989 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920176581 RX 12290579 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493086907 RX 11914351 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920178021 RX 12292047 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493088506 RX 11915819 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920179572 RX 12293525 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493090105 RX 11917297 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920181135 RX 12295003 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493091581 RX 11918775 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920182722 RX 12296481 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291904/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493093180 RX 11920253 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307364/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920184285 RX 12297843 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291916/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493094779 RX 11921615 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920185725 RX 12299311 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291929/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493096378 RX 11923083 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920187276 RX 12300789 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291942/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493097977 RX 11924561 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920188839 RX 12302267 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291955/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493099453 RX 11926039 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307416/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920190414 RX 12303745 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291968/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493101052 RX 11927517 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307428/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920191977 RX 12305107 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291980/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493102651 RX 11928879 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307441/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920193417 RX 12306575 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 291993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493104250 RX 11930347 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307454/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920194968 RX 12308053 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292006/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493105849 RX 11931825 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920196531 RX 12309531 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292019/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493107325 RX 11933303 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307480/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920198106 RX 12311009 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292032/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493108924 RX 11934781 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920199669 RX 12312371 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292044/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493110523 RX 11936143 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920201109 RX 12313839 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292057/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493112122 RX 11937611 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307518/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920202660 RX 12315317 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493113721 RX 11939089 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307531/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920204223 RX 12316795 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292083/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493115197 RX 11940567 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307544/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920205786 RX 12318273 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292096/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493116796 RX 11942045 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920207349 RX 12319635 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493118395 RX 11943407 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307569/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920208789 RX 12321103 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493119994 RX 11944875 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307582/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920210340 RX 12322581 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493121593 RX 11946353 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307595/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920211903 RX 12324059 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493123069 RX 11947831 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307608/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920213466 RX 12325537 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292160/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493124668 RX 11949309 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307620/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920215029 RX 12326899 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493126267 RX 11950671 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307633/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920216469 RX 12328367 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292185/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493127866 RX 11952139 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307646/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920218032 RX 12329845 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292198/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493129465 RX 11953617 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920219595 RX 12331323 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292211/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493130941 RX 11955095 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307672/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920221158 RX 12332801 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292224/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493132540 RX 11956573 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2785991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920222721 RX 12334163 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292236/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493134139 RX 11957935 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307697/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920224161 RX 12335631 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493135738 RX 11959403 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307710/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920225736 RX 12337109 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292262/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493137337 RX 11960881 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307723/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920227299 RX 12338587 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292275/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493138813 RX 11962359 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307736/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920228862 RX 12340065 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292288/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493140412 RX 11963837 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307748/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920230425 RX 12341427 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292300/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493142011 RX 11965199 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920231865 RX 12342895 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292313/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493143610 RX 11966667 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307774/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920233416 RX 12344373 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292326/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493145209 RX 11968145 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920234979 RX 12345851 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292339/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493146685 RX 11969623 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 2421 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 2421: UL-RI 1, TPMI 0 +UE 2421: dlsch_rounds 2786106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: ulsch_rounds 307800/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 2421: MAC: TX 19920236542 RX 12347329 bytes +UE 2421: LCID 1: TX 1022 RX 325 bytes +UE 2421: LCID 2: TX 0 RX 0 bytes +UE 2421: LCID 4: TX 19831490313 RX 423464 bytes +UE RNTI c22c CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE c22c: UL-RI 1, TPMI 0 +UE c22c: dlsch_rounds 2253993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: ulsch_rounds 292352/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE c22c: MAC: TX 17493148284 RX 11971101 bytes +UE c22c: LCID 1: TX 1024 RX 330 bytes +UE c22c: LCID 2: TX 0 RX 0 bytes +UE c22c: LCID 4: TX 17421642843 RX 421437 bytes + +[HW] # /dev/cpu_dma_latency set to 2 us +sh: 1: cannot create /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu10/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu11/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu12/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu13/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu14/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu15/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu8/cpufreq/scaling_min_freq: Directory nonexistent +sh: 1: cannot create /sys/devices/system/cpu/cpu9/cpufreq/scaling_min_freq: Directory nonexistent +[HW] Can't set cpu frequency +[ENB_APP] nfapi (0) running mode: MONOLITHIC +[GNB_APP] Getting GNBSParams +[ITTI] Starting itti queue: TASK_UNKNOWN as task 0 +[ITTI] Starting itti queue: TASK_TIMER as task 1 +[ITTI] Starting itti queue: TASK_L2L1 as task 2 +[ITTI] Starting itti queue: TASK_BM as task 3 +[ITTI] Starting itti queue: TASK_PHY_ENB as task 4 +[ITTI] Starting itti queue: TASK_MAC_GNB as task 5 +[ITTI] Starting itti queue: TASK_RLC_ENB as task 6 +[ITTI] Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7 +[ITTI] Starting itti queue: TASK_PDCP_ENB as task 8 +[ITTI] Starting itti queue: TASK_PDCP_GNB as task 9 +[ITTI] Starting itti queue: TASK_DATA_FORWARDING as task 10 +[ITTI] Starting itti queue: TASK_END_MARKER as task 11 +[ITTI] Starting itti queue: TASK_RRC_ENB as task 12 +[ITTI] Starting itti queue: TASK_RRC_GNB as task 13 +[ITTI] Starting itti queue: TASK_RAL_ENB as task 14 +[ITTI] Starting itti queue: TASK_S1AP as task 15 +[ITTI] Starting itti queue: TASK_NGAP as task 16 +[ITTI] Starting itti queue: TASK_X2AP as task 17 +[ITTI] Starting itti queue: TASK_M2AP_ENB as task 18 +[ITTI] Starting itti queue: TASK_M2AP_MCE as task 19 +[ITTI] Starting itti queue: TASK_M3AP as task 20 +[ITTI] Starting itti queue: TASK_M3AP_MME as task 21 +[ITTI] Starting itti queue: TASK_M3AP_MCE as task 22 +[ITTI] Starting itti queue: TASK_SCTP as task 23 +[ITTI] Starting itti queue: TASK_ENB_APP as task 24 +[ITTI] Starting itti queue: TASK_GNB_APP as task 25 +[ITTI] Starting itti queue: TASK_MCE_APP as task 26 +[ITTI] Starting itti queue: TASK_MME_APP as task 27 +[ITTI] Starting itti queue: TASK_PHY_UE as task 28 +[ITTI] Starting itti queue: TASK_MAC_UE as task 29 +[ITTI] Starting itti queue: TASK_RLC_UE as task 30 +[ITTI] Starting itti queue: TASK_PDCP_UE as task 31 +[ITTI] Starting itti queue: TASK_RRC_UE as task 32 +[ITTI] Starting itti queue: TASK_RRC_NRUE as task 33 +[ITTI] Starting itti queue: TASK_NAS_UE as task 34 +[ITTI] Starting itti queue: TASK_RAL_UE as task 35 +[ITTI] Starting itti queue: TASK_GTPV1_U as task 36 +[ITTI] Starting itti queue: TASK_CU_F1 as task 37 +[ITTI] Starting itti queue: TASK_DU_F1 as task 38 +[ITTI] Starting itti queue: TASK_CUCP_E1 as task 39 +[ITTI] Starting itti queue: TASK_CUUP_E1 as task 40 +[ITTI] Starting itti queue: TASK_RRC_UE_SIM as task 41 +[ITTI] Starting itti queue: TASK_RRC_GNB_SIM as task 42 +[ITTI] Starting itti queue: TASK_RRC_NSA_UE as task 43 +[ITTI] Starting itti queue: TASK_RRC_NSA_NRUE as task 44 +[ITTI] Starting itti queue: TASK_NAS_NRUE as task 45 +[OPT] OPT disabled +[HW] Version: Branch: slicing-spring-of-code Abrev. Hash: 50d33e69f0 Date: Sat Mar 30 19:11:11 2024 +0100 +[NR_PHY] RC.gNB = 0x562301bda720 +[NR_PHY] PRB blacklist +[NR_PHY] Copying 0 blacklisted PRB to L1 context +[PHY] L1_RX_THREAD_CORE -1 (16) +[PHY] TX_AMP = 519 (-36 dBFS) +[PHY] l1_north_init_gNB() RC.nb_nr_L1_inst:1 +[PHY] Installing callbacks for IF_Module - UL_indication +[MAC] Allocating shared L1/L2 interface structure for instance 0 @ 0x562301be2c20 +[PHY] l1_north_init_gNB() RC.gNB[0] installing callbacks +[PHY] create_gNB_tasks() Task ready initialize structures +[PHY] No prs_config configuration found..!! +[GNB_APP] pdsch_AntennaPorts N1 1 N2 1 XP 1 pusch_AntennaPorts 1 +[GNB_APP] minTXRXTIME 6 +[GNB_APP] SIB1 TDA 1 +[GNB_APP] CSI-RS 1, SRS 1, 256 QAM may be on +[RRC] Read in ServingCellConfigCommon (PhysCellId 0, ABSFREQSSB 641280, DLBand 78, ABSFREQPOINTA 640008, DLBW 106,RACH_TargetReceivedPower -96 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[RRC] absoluteFrequencySSB 641280 corresponds to 3619200000 Hz +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[MAC] [MAIN] Init function start:nb_nr_macrlc_inst=1 +[UTIL] Creating thread MAC_STATS with affinity -1 and priority 2 +[UTIL] threadCreate for MAC_STATS, affinity ffffffff, priority 2 +[PHY] Installing callbacks for IF_Module - UL_indication +[NR_MAC] Configuring common parameters from NR ServingCellConfig +[NR_MAC] DL_Bandwidth:40 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] DL_Bandwidth:40 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[NR_MAC] ssb_OffsetPointA 86, ssb_SubcarrierOffset 0 +[NR_MAC] Set RX antenna number to 1, Set TX antenna number to 1 (num ssb 1: 80000000,0) +[NR_MAC] Setting TDD configuration period to 6 +[NR_MAC] TDD has been properly configurated +[PHY] DL frequency 3619200000 Hz, UL frequency 3619200000 Hz: band 48, uldl offset 0 Hz +[PHY] Configuring MIB for instance 0, : (Nid_cell 0,DL freq 3619200000, UL freq 3619200000) +[PHY] Initializing frame parms for mu 1, N_RB 106, Ncp 0 +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] gNB 0 configured +[NR_MAC] PUSCH Target 150, PUCCH Target 200, PUCCH Failure 10, PUSCH Failure 10 +[GNB_APP] no slices transported via F1 Setup Request! +[NR_RRC] SIB1 freq: offsetToPointA 86 +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] NR band 78, duplex mode TDD, duplex spacing = 0 KHz +[GNB_APP] F1AP: gNB idx 0 gNB_DU_id 3584, gNB_DU_name gNB-OAI, TAC 1 MCC/MNC/length 1/1/2 cellID 12345678 +[GNB_APP] ngran_DU: Configuring Cell 0 for TDD +[PHY] create_gNB_tasks() RC.nb_nr_L1_inst:1 +[PHY] l1_north_init_gNB() RC.nb_nr_L1_inst:1 +[PHY] Installing callbacks for IF_Module - UL_indication +[PHY] l1_north_init_gNB() RC.gNB[0] installing callbacks +[GNB_APP] Allocating gNB_RRC_INST for 1 instances +[GNB_APP] SDAP layer is disabled +[GNB_APP] Data Radio Bearer count 1 +[NR_RRC] do_SIB23_NR, size 9 + CMDLINE: "./openairinterface5g/cmake_targets/ran_build/build/nr-softmodem" "-O" "ran-conf/gnb.conf" "--sa" "--rfsim" "-E" "--gNBs.[0].min_rxtxtime" "6" +[CONFIG] get parameters from libconfig ran-conf/gnb.conf [LIBCONFIG] Path for include directive set to: ran-conf +[CONFIG] function config_libconfig_init returned 0 +[CONFIG] config module libconfig loaded +[LIBCONFIG] config: 2/2 parameters successfully set, (2 to default value) +[CONFIG] debug flags: 0x00000000 +[LIBCONFIG] log_config: 3/3 parameters successfully set, (1 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (42 to default value) +[LIBCONFIG] log_config: 50/50 parameters successfully set, (50 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +[LIBCONFIG] log_config: 16/16 parameters successfully set, (16 to default value) +log init done +Reading in command-line options +[LIBCONFIG] (root): 42/42 parameters successfully set, (39 to default value) +[LIBCONFIG] (root): 6/6 parameters successfully set, (5 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value) +[CONFIG] parallel_conf is set to 0 +[CONFIG] worker_conf is set to 1 +Configuration: nb_rrc_inst 1, nb_nr_L1_inst 1, nb_ru 1 +[LIBCONFIG] TTracer: 3/3 parameters successfully set, (3 to default value) +configuring for RAU/RRU +[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] L1s.[0]: 20/20 parameters successfully set, (15 to default value) +Initializing northbound interface for L1 +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] list prs_config not found in config file ran-conf/gnb.conf +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] gNBs.[0].servingCellConfigCommon.[0]: 60/60 parameters successfully set, (9 to default value) +[LIBCONFIG] list gNBs.[0].servingCellConfigDedicated not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +DL frequency 3619200000: band 48, UL frequency 3619200000 +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +NRRRC 0: Southbound Transport local_mac +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[[PDCP] pdcp init,usegtp +[GNB_APP] default drx 0 +[GNB_APP] [gNB 0] gNB_app_register for instance 0 +[UTIL] Creating thread TASK_SCTP with affinity -1 and priority 50 +[UTIL] threadCreate for TASK_SCTP, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_SCTP +[X2AP] X2AP is disabled. +[NGAP] Configuration in the file: demo-oai. +[NGAP] Configuration in the file: 192.168.70.1/24. +[UTIL] Creating thread TASK_NGAP with affinity -1 and priority 50 +[UTIL] threadCreate for TASK_NGAP, affinity ffffffff, priority 50 +[NGAP] Starting NGAP layer +[ITTI] Created Posix thread TASK_NGAP +[UTIL] Creating thread TASK_GNB_APP with affinity -1 and priority 50 +[NGAP] Registered new gNB[0] and macro gNB id 3584 +[NGAP] [gNB 0] check the amf registration state +[UTIL] threadCreate for TASK_GNB_APP, affinity ffffffff, priority 50 +[NGAP] 3584 -> 0000e000 +[NGAP] servedGUAMIs.list.count 1 +[NGAP] PLMNSupportList.list.count 1 +[NGAP] PLMNSupportList.list.count 2 +[ITTI] Created Posix thread TASK_GNB_APP +[UTIL] Creating thread TASK_RRC_GNB with affinity -1 and priority 50 +[GNB_APP] [gNB 0] Received NGAP_REGISTER_GNB_CNF: associated AMF 1 +[UTIL] threadCreate for TASK_RRC_GNB, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_RRC_GNB +[GTPU] Configuring GTPu +[GTPU] SA mode +[GTPU] Configuring GTPu address : 192.168.70.1, port : 2152 +[GTPU] Initializing UDP for local address 192.168.70.1 with port 2152 +[GTPU] Created gtpu instance id: 100 +[NR_RRC] Entering main loop of NR_RRC message task +[UTIL] Creating thread TASK_GTPV1_U with affinity -1 and priority 50 +[NR_RRC] Received F1 Setup Request from gNB_DU 3584 (gNB-OAI) on assoc_id -1 +[RRC] Accepting DU 3584 (gNB-OAI), sending F1 Setup Response +[RRC] DU uses RRC version 17.3.0 +[MAC] received F1 Setup Response from CU (null) +[MAC] CU uses RRC version 17.3.0 +[NR_RRC] Accepting new CU-UP ID 3584 name gNB-OAI (assoc_id -1) +[UTIL] threadCreate for TASK_GTPV1_U, affinity ffffffff, priority 50 +[ITTI] Created Posix thread TASK_GTPV1_U +[PHY] Initializing gNB 0 single_thread_flag:1 +[PHY] Initializing gNB 0 +[PHY] Registering with MAC interface module (before 0x562301be2c20) +[PHY] Installing callbacks for IF_Module - UL_indication +[PHY] Registering with MAC interface module (after 0x562301be2c20) +[PHY] Setting indication lists +[PHY] [nr-gnb.c] gNB structure allocated +[PHY] RU GPIO control set as 'generic' +[PHY] RU clock source set as internal +[PHY] Setting time source to internal +[PHY] number of L1 instances 1, number of RU 1, number of CPU cores 16 +[PHY] Copying frame parms from gNB in RC to gNB 0 in ru 0 and frame_parms in ru +[PHY] Initialized RU proc 0 (,synch_to_ext_device), +[PHY] RU Thread pool size 2 +[PHY] RU thread-pool core string -1,-1 +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +LIBCONFIG] security: 4/4 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] eNBs.[0]: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] gNBs.[0]: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[0]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[1]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].amf_ip_address.[0]: 4/4 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].SCTP: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 10/10 parameters successfully set, (3 to default value) +[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 10/10 parameters successfully set, (3 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] MACRLCs.[0]: 34/34 parameters successfully set, (29 to default value) +[LIBCONFIG] list gNBs.[0].E1_INTERFACE not found in config file ran-conf/gnb.conf +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[0]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].plmn_list.[0].snssaiList.[1]: 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 10/10 parameters successfully set, (3 to default value) +START MAIN THREADS +RC.nb_nr_L1_inst:1 +Initializing gNB threads single_thread_flag:1 wait_for_sync:0 +wait_gNBs() +Waiting for gNB L1 instances to all get configured ... sleeping 50ms (nb_nr_sL1_inst 1) +gNB L1 are configured +About to Init RU threads RC.nb_RU:1 +Initializing RU threads +configuring RU from file +[LIBCONFIG] RUs.[0]: 43/43 parameters successfully set, (32 to default value) +[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value) +[LIBCONFIG] gNBs.[0]: 30/30 parameters successfully set, (22 to default value) +Set RU mask to 1 +Creating RC.ru[0]:0x562301c32bf0 +Setting function for RU 0 to gNodeB_3GPP +[RU 0] Setting nr_flag 0, nr_band 78, nr_scs_for_raster 1 +[RU 0] Setting half-slot parallelization to 1 +configuring ru_id 0 (start_rf 0x5622fd852870) +create a thread for core -1 +create a thread for core -1 +[LIBCONFIG] e2_agent: 2/2 parameters successfully set, (0 to default value) +After RCconfig_NR_E2agent /usr/local/lib/flexric/ 127.0.0.1 +[E2 NODE]: mcc = 1 mnc = 1 mnc_digit = 2 nb_id = 3584 +[E2 NODE]: Args 127.0.0.1 /usr/local/lib/flexric/ +[E2 AGENT]: nearRT-RIC IP Address = 127.0.0.1, PORT = 36421, RAN type = ngran_gNB, nb_id = 3584 +[E2 AGENT]: Initializing ... +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libslice_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libmac_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libkpm_sm.so +[E2 AGENT]: [UTIL] Creating thread ru_thread with affinity -1 and priority 97 +[UTIL] threadCreate for ru_thread, affinity ffffffff, priority 97 +[PHY] Starting RU 0 (,synch_to_ext_device) on cpu 2 +[PHY] Initializing frame parms for mu 1, N_RB 106, Ncp 0 +[PHY] Init: N_RB_DL 106, first_carrier_offset 900, nb_prefix_samples 108,nb_prefix_samples0 132, ofdm_symbol_size 1536 +[PHY] fp->scs=30000 +[PHY] Waiting for RUs to be configured ... RC.ru_mask:01 +[PHY] fp->ofdm_symbol_size=1536 +[PHY] fp->nb_prefix_samples0=132 +[PHY] fp->nb_prefix_samples=108 +[PHY] fp->slots_per_subframe=2 +[PHY] fp->samples_per_subframe_wCP=43008 +[PHY] fp->samples_per_frame_wCP=430080 +[PHY] fp->samples_per_subframe=46080 +[PHY] fp->samples_per_frame=460800 +[PHY] fp->dl_CarrierFreq=3619200000 +[PHY] fp->ul_CarrierFreq=3619200000 +[PHY] Initializing RU signal buffers (if_south local RF) nb_tx 1, nb_rx 1 +[PHY] [INIT] common.txdata[0] = 0x7fe358b60040 (1844480 bytes,sf_extension 320) +[PHY] [INIT] common.txdata[0] = 0x7fe358b60540 +[PHY] nb_tx 1 +[PHY] rxdata_7_5kHz[0] 0x7fe3588e8040 for RU 0 +[PHY] [INIT] common.txdata_BF= 0x7fe33c000ac0 (8 bytes) +[PHY] txdataF_BF[0] 0x7fe358718040 for RU 0 +[PHY] rxdataF[0] 0x7fe3586c3040 for RU 0 +[PHY] [INIT] nr_phy_init_RU() ru->num_gNB:1 +[PHY] Setting RF config for N_RB 106, NB_RX 1, NB_TX 1 +[PHY] tune_offset 0 Hz, sample_rate 46080000 Hz +[PHY] Channel 0: setting tx_gain offset 12, tx_freq 3619200000 Hz +[PHY] Channel 0: setting rx_gain offset 102, rx_freq 3619200000 Hz +[HW] sample_rate 46080000.000000 +[HW] Running as server waiting opposite rfsimulators to connect +[HW] [RAU] has loaded RFSIMULATOR device. +[PHY] RU 0 Setting N_TA_offset to 600 samples (factor 1.500000, UL Freq 3600120, N_RB 106, mu 1) +[PHY] Signaling main thread that RU 0 is ready, sl_ahead 6 +[PHY] RUs configured +[PHY] init_eNB_afterRU() RC.nb_nr_inst:1 +[PHY] RC.nb_nr_CC[inst:0]:0x7fe36388a010 +[PHY] [gNB 0] phy_init_nr_gNB() About to wait for gNB to be configured +[PHY] Initialise nr transport +[PHY] Mapping RX ports from 1 RUs to gNB 0 +[PHY] gNB->num_RU:1 +[PHY] Attaching RU 0 antenna 0 to gNB antenna 0 +[UTIL] Creating thread Tpool0_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool0_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool1_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool1_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool2_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool2_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool3_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool3_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool4_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool4_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool5_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool5_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool6_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool6_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread Tpool7_-1 with affinity -1 and priority 97 +[UTIL] threadCreate for Tpool7_-1, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_rx_thread with affinity -1 and priority 97 +[UTIL] threadCreate for L1_rx_thread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_tx_thread with affinity -1 and priority 97 +[UTIL] threadCreate for L1_tx_thread, affinity ffffffff, priority 97 +[UTIL] Creating thread L1_stats with affinity -1 and priority 1 +[UTIL] threadCreate for L1_stats, affinity ffffffff, priority 1 +Opening plugin from path = /usr/local/lib/flexric/librc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/librlc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libtc_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libgtp_sm.so +[E2 AGENT]: Opening plugin from path = /usr/local/lib/flexric/libpdcp_sm.so +[E2-AGENT]: E2 SETUP-REQUEST tx +[E2-AGENT]: E2 SETUP RESPONSE rx +[E2-AGENT]: Transaction ID E2 SETUP-REQUEST 0 E2 SETUP-RESPONSE 0 +wait RUs +[LIBCONFIG] device.recplay: 8/8 parameters successfully set, (8 to default value) +[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value) +[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value) +[LIBCONFIG] loader.rfsimulator: 2/2 parameters successfully set, (1 to default value) +shlib_path librfsimulator.so +[LOADER] library librfsimulator.so successfully loaded +[LIBCONFIG] rfsimulator: 9/9 parameters successfully set, (4 to default value) +Initializing random number generator, seed 11735772987287997113 +setup_RU_buffers: frame_parms = 0x7fe35aead010 +waiting for sync (ru_thread,-1/0x5622fe4980ac,0x5622fed46100,0x5622fed460c0) +RC.ru_mask:00 +ALL RUs READY! +RC.nb_RU:1 +ALL RUs ready - init gNBs +Not NFAPI mode - call init_eNB_afterRU() +[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value) +shlib_path libdfts.so +[LOADER] library libdfts.so successfully loaded +[LIBCONFIG] loader.ldpc: 2/2 parameters successfully set, (1 to default value) +shlib_path libldpc.so +[LOADER] library libldpc.so successfully loaded +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +create a thread for core -1 +waiting for sync (L1_stats_thread,-1/0x5622fe4980ac,0x5622fed46100,0x5622fed460c0) +ALL RUs ready - ALL gNBs ready +Sending sync to all threads +got sync (ru_thread) +got sync (L1_stats_thread) +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_default=134217728" to increase RFsim performance +[HW] running command "/sbin/sysctl -n -e -q -w net.core.rmem_max=134217728" to increase RFsim performance +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_default=134217728" to increase RFsim performance +[HW] running command "/sbin/sysctl -n -e -q -w net.core.wmem_max=134217728" to increase RFsim performance +[PHY] RU 0 rf device ready +[PHY] RU 0 RF started opp_enabled 0 +[HW] No connected device, generating void samples... +[NR_MAC] Frame.Slot 128.0 + +[NR_MAC] Frame.Slot 256.0 + +[NR_MAC] Frame.Slot 384.0 + +[NR_MAC] [E2-Agent]: RC CONTROL rx, RIC Style Type 2, Action ID 6 +[NR_MAC] Add default DL slice id 99, label default, sst 0, sd 0, slice sched algo NVS_CAPACITY, pct_reserved 0.05, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] configure slice 0, label SST1SD1, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 0, label SST1SD1, Dedicated_PRB_Policy_Ratio 50 +[NR_MAC] add DL slice id 1, label SST1SD1, slice sched algo NVS_CAPACITY, pct_reserved 0.47, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] no UE connected +[NR_MAC] configure slice 1, label SST1SD5, Min_PRB_Policy_Ratio 0 +[NR_MAC] configure slice 1, label SST1SD5, Dedicated_PRB_Policy_Ratio 50 +[NR_MAC] add DL slice id 2, label SST1SD5, slice sched algo NVS_CAPACITY, pct_reserved 0.47, ue sched algo nr_proportional_fair_wbcqi_dl +[NR_MAC] no UE connected +[NR_MAC] Frame.Slot 512.0 + +[NR_MAC] Frame.Slot 640.0 + +[NR_MAC] Frame.Slot 768.0 + +[NR_MAC] Frame.Slot 896.0 + +[NR_MAC] Frame.Slot 0.0 + +[NR_MAC] Frame.Slot 128.0 + +[HW] A client connects, sending the current time +[HW] A client connects, sending the current time +[NR_MAC] Frame.Slot 256.0 + +[NR_PHY] [gNB 0][RAPROC] Frame 327, slot 19 Initiating RA procedure with preamble 27, energy 56.4 dB (I0 0, thres 120), delay 0 start symbol 0 freq index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 327 Activating Msg2 generation in frame 328, slot 7 using RA rnti 10b SSB, new rnti 8379 index 0 RA index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 328, slotP 7: Generating RA-Msg2 DCI, rnti 0x10b, state 1, CoreSetType 0 +[NR_MAC] [RAPROC] Msg3 slot 17: current slot 7 Msg3 frame 328 k2 7 Msg3_tda_id 3 +[NR_MAC] Adding new UE context with RNTI 0x8379 +[NR_MAC] [gNB 0][RAPROC] PUSCH with TC_RNTI 0x8379 received correctly, adding UE MAC Context RNTI 0x8379 +[NR_MAC] [RAPROC] RA-Msg3 received (sdu_lenP 7) +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0x8379 to slice idx 0, sst 0, sd 0 +[RLC] activated srb0 for UE with RNTI 0x8379 +[RLC] Added srb 1 to UE with RNTI 0x8379 +[NR_MAC] Activating scheduling RA-Msg4 for TC_RNTI 0x8379 (state 2) +[NR_MAC] Unexpected ULSCH HARQ PID 0 (have -1) for RNTI 0x8379 (ignore this warning for RA) +[NR_RRC] Decoding CCCH: RNTI 8379, payload_size 6 +[NR_RRC] Created new UE context: CU UE ID 1 DU UE ID 33657 (rnti: 8379, random ue id c07b218d4f000000) +[RRC] activate SRB 1 of UE 1 +[NR_RRC] rrc_gNB_generate_RRCSetup for RNTI 8379 +[NR_MAC] No CU UE ID stored for UE RNTI 8379, adding CU UE ID 1 +[NR_MAC] UE 8379 Generate msg4: feedback at 329.17, payload 169 bytes, next state WAIT_Msg4_ACK +[NR_MAC] (UE RNTI 0x8379) Received Ack of RA-Msg4. CBRA procedure succeeded! +[NR_RRC] 5g_s_TMSI: 0x123456789ABC, amf_set_id: 0x48 (72), amf_pointer: 0x34 (52), 5g TMSI: 0x56789ABC +[NR_RRC] UE 1 Processing NR_RRCSetupComplete from UE +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 1] UE State = NR_RRC_CONNECTED +[NGAP] UE 1: Chose AMF 'OAI-AMF' (assoc_id 3) through selected PLMN Identity index 0 MCC 1 MNC 1 +[NGAP] FIVEG_S_TMSI_PRESENT +[NR_PHY] [gNB 0][RAPROC] Frame 337, slot 19 Initiating RA procedure with preamble 52, energy 56.4 dB (I0 7, thres 120), delay 0 start symbol 0 freq index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 337 Activating Msg2 generation in frame 338, slot 7 using RA rnti 10b SSB, new rnti 96c8 index 0 RA index 0 +[NR_MAC] [gNB 0][RAPROC] CC_id 0 Frame 338, slotP 7: Generating RA-Msg2 DCI, rnti 0x10b, state 1, CoreSetType 0 +[NR_MAC] [RAPROC] Msg3 slot 17: current slot 7 Msg3 frame 338 k2 7 Msg3_tda_id 3 +[NR_MAC] Adding new UE context with RNTI 0x96c8 +[NR_MAC] [gNB 0][RAPROC] PUSCH with TC_RNTI 0x96c8 received correctly, adding UE MAC Context RNTI 0x96c8 +[NR_MAC] [RAPROC] RA-Msg3 received (sdu_lenP 7) +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0x96c8 to slice idx 0, sst 0, sd 0 +[RLC] activated srb0 for UE with RNTI 0x96c8 +[RLC] Added srb 1 to UE with RNTI 0x96c8 +[NR_MAC] Activating scheduling RA-Msg4 for TC_RNTI 0x96c8 (state 2) +[NR_MAC] Unexpected ULSCH HARQ PID 0 (have -1) for RNTI 0x96c8 (ignore this warning for RA) +[NR_RRC] Decoding CCCH: RNTI 96c8, payload_size 6 +[NR_RRC] Created new UE context: CU UE ID 2 DU UE ID 38600 (rnti: 96c8, random ue id d86190b65b000000) +[RRC] activate SRB 1 of UE 2 +[NR_RRC] rrc_gNB_generate_RRCSetup for RNTI 96c8 +[NR_MAC] No CU UE ID stored for UE RNTI 96c8, adding CU UE ID 2 +[NR_MAC] UE 96c8 Generate msg4: feedback at 339.17, payload 169 bytes, next state WAIT_Msg4_ACK +[NR_MAC] (UE RNTI 0x96c8) Received Ack of RA-Msg4. CBRA procedure succeeded! +[NR_RRC] 5g_s_TMSI: 0x123456789ABC, amf_set_id: 0x48 (72), amf_pointer: 0x34 (52), 5g TMSI: 0x56789ABC +[NR_RRC] UE 2 Processing NR_RRCSetupComplete from UE +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 2] UE State = NR_RRC_CONNECTED +[NGAP] UE 2: Chose AMF 'OAI-AMF' (assoc_id 3) through selected PLMN Identity index 0 MCC 1 MNC 1 +[NGAP] FIVEG_S_TMSI_PRESENT +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 110) +[NGAP] could not find NGAP_ProtocolIE_ID_id_UEAggregateMaximumBitRate +[NGAP] Initial Context Request, GUAMI mcc 1 mnc 1 mnc_len 2 +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 71) +[NGAP] AllowedNSSAI.list.count 2 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000001 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000005 +[NR_RRC] [gNB 0][UE 1] Selected security algorithms (0x7fe3540056fc): ciphering 0, integrity 2 (algorithms changed) +[NR_RRC] [gNB 0][UE 8379] Saved security key 46EEA1EC973E7B501A2C7F21AC116391798B634E784936082C7B46B1133C5844 +[NR_RRC] UE 1 Logical Channel DL-DCCH, Generate SecurityModeCommand (bytes 3) +[NR_MAC] Number of DRBs = 0 and SRBs = 0 +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 1] received securityModeComplete on UL-DCCH 1 from UE +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] Searching for nr band 78 DL Carrier frequency 3619200000 bw 40000000 +[NR_RRC] UE 1: Generate RRCReconfiguration (bytes 257, xid 0) +[NR_RRC] UE 1: Receive RRC Reconfiguration Complete message (xid 0) +[NR_RRC] Send message to sctp: NGAP_InitialContextSetupResponse +[NR_RRC] UE 1: Logical Channel DL-DCCH, Generate NR UECapabilityEnquiry (bytes 8, xid 1) +[NR_RRC] UE 1: received UE capabilities (xid 1) +[NR_RRC] Send message to ngap: NGAP_UE_CAPABILITIES_IND +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (6 meas) +UE 8379: dlsch_rounds 14/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.09790 MCS (0) 9 +UE 8379: ulsch_rounds 23/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.06561 MCS (0) 9 +UE 8379: MAC: TX 1776 RX 748 bytes +UE 8379: LCID 1: TX 612 RX 233 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (5 meas) +UE 96c8: dlsch_rounds 8/0/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.07290 MCS (0) 9 +UE 96c8: ulsch_rounds 16/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.07290 MCS (0) 9 +UE 96c8: MAC: TX 955 RX 580 bytes +UE 96c8: LCID 1: TX 311 RX 182 bytes + +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 110) +[NGAP] could not find NGAP_ProtocolIE_ID_id_UEAggregateMaximumBitRate +[NGAP] Initial Context Request, GUAMI mcc 1 mnc 1 mnc_len 2 +[NGAP] NGAP_FIND_PROTOCOLIE_BY_ID ie is NULL (searching for ie: 71) +[NGAP] AllowedNSSAI.list.count 2 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000001 +[NGAP] Initial Context Request, allowed_nssai ST 1 SD 0x000005 +[NR_RRC] [gNB 0][UE 2] Selected security algorithms (0x7fe3540068cc): ciphering 0, integrity 2 (algorithms changed) +[NR_RRC] [gNB 0][UE 96c8] Saved security key 8A950DDA5E9F0697ADDA13100575EE37AB297CCF246F8D5345AF4882AC08D8DD +[NR_RRC] UE 2 Logical Channel DL-DCCH, Generate SecurityModeCommand (bytes 3) +[NR_MAC] Number of DRBs = 0 and SRBs = 0 +[NR_RRC] [FRAME 00000][gNB][MOD 00][RNTI 2] received securityModeComplete on UL-DCCH 1 from UE +[NR_MAC] NR band duplex spacing is 0 KHz (nr_bandtable[37].band = 78) +[NR_MAC] Searching for nr band 78 DL Carrier frequency 3619200000 bw 40000000 +[NR_RRC] UE 2: Generate RRCReconfiguration (bytes 257, xid 3) +[NR_RRC] UE 2: Receive RRC Reconfiguration Complete message (xid 3) +[NR_RRC] Send message to sctp: NGAP_InitialContextSetupResponse +[NR_RRC] UE 2: Logical Channel DL-DCCH, Generate NR UECapabilityEnquiry (bytes 8, xid 0) +[NR_RRC] UE 2: received UE capabilities (xid 0) +[NR_RRC] Send message to ngap: NGAP_UE_CAPABILITIES_IND +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: dlsch_rounds 27/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.02488 MCS (0) 9 +UE 8379: ulsch_rounds 36/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.01668 MCS (0) 9 +UE 8379: MAC: TX 3138 RX 2256 bytes +UE 8379: LCID 1: TX 612 RX 233 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (15 meas) +UE 96c8: dlsch_rounds 17/0/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.04305 MCS (0) 9 +UE 96c8: ulsch_rounds 34/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.02059 MCS (0) 9 +UE 96c8: MAC: TX 1829 RX 2024 bytes +UE 96c8: LCID 1: TX 612 RX 237 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: dlsch_rounds 41/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00633 MCS (0) 9 +UE 8379: ulsch_rounds 54/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00471 MCS (0) 9 +UE 8379: MAC: TX 4860 RX 3700 bytes +UE 8379: LCID 1: TX 618 RX 312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: dlsch_rounds 17/0/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.04305 MCS (0) 9 +UE 96c8: ulsch_rounds 47/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00523 MCS (0) 9 +UE 96c8: MAC: TX 1829 RX 3532 bytes +UE 96c8: LCID 1: TX 612 RX 237 bytes + +[NGAP] PDUSESSIONSetup initiating message +[NGAP] Handle Pdusession Setup Request, nssai ST 1 SD 0x000001 +[NR_RRC] [gNB 0] gNB_ue_ngap_id 1 +[NR_RRC] Adding pdusession 10, total nb of sessions 1 +[NR_RRC] UE 1: configure DRB ID 1 for PDU session ID 10 +[RRC] selecting CU-UP ID 3584 based on exact NSSAI match (1:0x000001) +[RRC] UE 1 associating to CU-UP assoc_id -1 out of 1 CU-UPs +[GTPU] [100] Created tunnel for UE ID 1, teid for incoming: 537afd27, teid for outgoing 1 to remote IPv4: 192.168.70.134, IPv6 :: +[PDCP] added drb 1 to UE ID 1 +[SDAP] Default DRB for the created SDAP entity: 1 +[RRC] activate SRB 2 of UE 1 +[RLC] Added srb 2 to UE with RNTI 0x8379 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0x8379 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0x8379 +[NR_MAC] UE 8379: received capabilities, updating CellGroupConfig +[NR_RRC] SRS configured with 1 ports +[NR_MAC] Number of DRBs = 1 and SRBs = 1 +[NR_MAC] number of QOS flows mapped to DRB_id 1: 1 +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 2 +[NR_MAC] Setting NSSAI sst: 1, sd: 1 for DRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0x8379 to slice idx 1, sst 1, sd 1 +[E1AP] UE 1: updating PDU session ID 10 (1 bearers) +[RRC] UE 8379 replacing existing CellGroupConfig with new one received from DU +[NR_RRC] UE 1: Generate RRCReconfiguration (bytes 393, xid 1) +[RRC] UE 1: PDU session ID 10 modified 1 bearers +[NR_RRC] UE 1: Receive RRC Reconfiguration Complete message (xid 1) +[NR_RRC] msg index 0, pdu_sessions index 0, status 2, xid 1): nb_of_pdusessions 1, pdusession_id 10, teid: 1400569127 + [NR_RRC] NGAP_PDUSESSION_SETUP_RESP: sending the message +[NGAP] pdusession_setup_resp_p: pdusession ID 10, gnb_addr 192.168.70.1, SIZE 4, TEID 1400569127 +[NGAP] PDUSESSIONSetup initiating message +[NGAP] Handle Pdusession Setup Request, nssai ST 1 SD 0x000005 +[NR_RRC] [gNB 0] gNB_ue_ngap_id 2 +[NR_RRC] Adding pdusession 10, total nb of sessions 1 +[NR_RRC] UE 2: configure DRB ID 1 for PDU session ID 10 +[RRC] second best match: CU-UP ID 3584 matches SST 1 +[RRC] selecting CU-UP ID 3584 based on exact NSSAI match (1:0x000005) +[RRC] UE 2 associating to CU-UP assoc_id -1 out of 1 CU-UPs +[GTPU] [100] Created tunnel for UE ID 2, teid for incoming: 9a915553, teid for outgoing 1 to remote IPv4: 192.168.70.143, IPv6 :: +[PDCP] added drb 1 to UE ID 2 +[SDAP] Default DRB for the created SDAP entity: 1 +[RRC] activate SRB 2 of UE 2 +[RLC] Added srb 2 to UE with RNTI 0x96c8 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:838:add_drb_am: added drb 1 to UE with RNTI 0x96c8 +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c:nr_rlc_add_drb:908: added DRB to UE with RNTI 0x96c8 +[NR_MAC] UE 96c8: received capabilities, updating CellGroupConfig +[NR_RRC] SRS configured with 1 ports +[NR_MAC] Number of DRBs = 1 and SRBs = 1 +[NR_MAC] number of QOS flows mapped to DRB_id 1: 1 +[NR_MAC] Setting NSSAI sst: 0, sd: 0 for SRB: 2 +[NR_MAC] Setting NSSAI sst: 1, sd: 5 for DRB: 1 +[NR_MAC] Matched slice, Add UE rnti 0x96c8 to slice idx 2, sst 1, sd 5 +[E1AP] UE 2: updating PDU session ID 10 (1 bearers) +[RRC] UE 96c8 replacing existing CellGroupConfig with new one received from DU +[NR_RRC] UE 2: Generate RRCReconfiguration (bytes 395, xid 2) +[RRC] UE 2: PDU session ID 10 modified 1 bearers +[NR_RRC] UE 2: Receive RRC Reconfiguration Complete message (xid 2) +[NR_RRC] msg index 0, pdu_sessions index 0, status 2, xid 2): nb_of_pdusessions 1, pdusession_id 10, teid: 2593215827 + [NR_RRC] NGAP_PDUSESSION_SETUP_RESP: sending the message +[NGAP] pdusession_setup_resp_p: pdusession ID 10, gnb_addr 192.168.70.1, SIZE 4, TEID 2593215827 +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 55/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00179 MCS (0) 9 +UE 8379: ulsch_rounds 67/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00120 MCS (0) 9 +UE 8379: MAC: TX 6896 RX 5116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 0 RX 0 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 31/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.03319 MCS (0) 9 +UE 96c8: ulsch_rounds 72/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00148 MCS (0) 9 +UE 96c8: MAC: TX 3865 RX 5134 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 68/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00045 MCS (0) 9 +UE 8379: ulsch_rounds 82/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00030 MCS (0) 9 +UE 8379: MAC: TX 8495 RX 6648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 0 RX 19 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 43/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00937 MCS (0) 9 +UE 96c8: ulsch_rounds 85/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00038 MCS (0) 9 +UE 96c8: MAC: TX 5329 RX 6612 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 82/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00012 MCS (0) 9 +UE 8379: ulsch_rounds 97/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00009 MCS (0) 9 +UE 8379: MAC: TX 10217 RX 8136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3 RX 69 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 56/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00238 MCS (0) 9 +UE 96c8: ulsch_rounds 97/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00011 MCS (0) 9 +UE 96c8: MAC: TX 6904 RX 7974 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 95/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00003 MCS (0) 9 +UE 8379: ulsch_rounds 110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00002 MCS (0) 9 +UE 8379: MAC: TX 11816 RX 9644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3 RX 69 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 69/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00061 MCS (0) 9 +UE 96c8: ulsch_rounds 110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00003 MCS (0) 9 +UE 96c8: MAC: TX 8491 RX 9442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00001 MCS (0) 9 +UE 8379: ulsch_rounds 123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00001 MCS (0) 9 +UE 8379: MAC: TX 13292 RX 11152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3 RX 69 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 82/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00015 MCS (0) 9 +UE 96c8: ulsch_rounds 123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00001 MCS (0) 9 +UE 96c8: MAC: TX 10078 RX 10920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 14891 RX 12660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3 RX 69 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 95/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00004 MCS (0) 9 +UE 96c8: ulsch_rounds 136/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 11653 RX 12398 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3 RX 69 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: ulsch_rounds 176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 163519 RX 14873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 146192 RX 757 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00001 MCS (0) 9 +UE 96c8: ulsch_rounds 176/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 147321 RX 14591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 132855 RX 758 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 8379: ulsch_rounds 265/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2796332 RX 17021 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2756281 RX 997 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 96c8: ulsch_rounds 259/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 4340436 RX 16635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4314492 RX 995 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5472691 RX 19061 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5400579 RX 1123 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12991690 RX 18636 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12945411 RX 1183 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 437/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8190547 RX 21177 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8087352 RX 1321 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 422/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 22158755 RX 20580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 22090593 RX 1312 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 523/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10912671 RX 23241 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10778033 RX 1450 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 4011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 502/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 31458057 RX 22476 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 31367703 RX 1441 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 4069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 609/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 13729064 RX 25281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13561674 RX 1579 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 4977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 581/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 40772739 RX 24396 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 40660648 RX 1567 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1209 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1042 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 4834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 16608201 RX 27321 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16408971 RX 1705 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 5945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 662/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 50099626 RX 26340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 49965287 RX 1696 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 5577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 779/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19356624 RX 29385 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19127389 RX 1834 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 6913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 743/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 59393681 RX 28352 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 59237168 RX 1825 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 6306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 865/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 22034800 RX 31425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 21776083 RX 1963 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 7879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 822/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 68700746 RX 30272 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 68522522 RX 1951 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 7048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 24740683 RX 33465 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 24451488 RX 2089 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 8847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 78027441 RX 32216 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 77826965 RX 2080 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 7828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1035/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 27820322 RX 35529 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 27498930 RX 2218 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 9815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 87321880 RX 34112 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 87099224 RX 2209 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 8561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1121/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 30469808 RX 37569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 30118049 RX 2347 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 10781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 96635089 RX 36032 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 96390704 RX 2335 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 9317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1205/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 33248568 RX 39609 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 32866057 RX 2473 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 11749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1143/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 105968477 RX 37976 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 105701860 RX 2464 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 10058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 35958293 RX 41673 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 35545377 RX 2602 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 12711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1227/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 115223526 RX 39996 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 114934846 RX 2662 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 10790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1377/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 38630596 RX 43713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 38187232 RX 2731 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 13665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1307/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 124387152 RX 41892 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 124077094 RX 2791 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 11527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 41317759 RX 45833 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 40843414 RX 2929 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 14624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1386/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 133613230 RX 43812 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 133281160 RX 2917 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 12285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 44054972 RX 47849 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 43548469 RX 3055 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 15590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1467/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 142932056 RX 45756 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 142577751 RX 3046 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 13051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1634/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 46784945 RX 49913 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 46247571 RX 3184 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 16557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1547/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 152251919 RX 47652 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 151875876 RX 3175 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 13800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 49518339 RX 51977 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 48949667 RX 3313 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 17525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1626/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 161559414 RX 49572 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 161161162 RX 3301 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 682 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 14526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1805/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 52138796 RX 53993 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 51540583 RX 3439 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 18492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 170860063 RX 51516 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 170439631 RX 3430 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 616 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 15281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 54909484 RX 56057 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 54281221 RX 3568 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 19459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1787/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 180186646 RX 53412 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 179744463 RX 3559 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1527 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 16062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 1976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 57889832 RX 58121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 57229354 RX 3697 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 20427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1866/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 189487229 RX 55332 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 189022850 RX 3685 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 16812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2061/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 60595383 RX 60137 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 59901820 RX 3823 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 21394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 1947/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 198788070 RX 57276 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 198301496 RX 3814 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 17559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2146/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 63259920 RX 62201 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 62534322 RX 3952 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 22361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2027/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 208120989 RX 59172 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 207612647 RX 3943 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 652 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 18311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 65978207 RX 64265 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 65221553 RX 4081 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 23328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2106/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 217412521 RX 61092 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 216882034 RX 4069 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 19054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2317/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 68675412 RX 66281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 67888021 RX 4207 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 24296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2187/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 226722551 RX 63036 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 226169877 RX 4198 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 19811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2402/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 71407808 RX 68345 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 70590102 RX 4336 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 25263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2267/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 236055278 RX 64932 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 235480828 RX 4327 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 20573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 74120182 RX 70409 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 73270969 RX 4465 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 26229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2346/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 245366679 RX 66852 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 244770022 RX 4453 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 21355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 76883003 RX 72425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 76001734 RX 4591 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 27197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 254673982 RX 68796 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 254055124 RX 4582 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 22111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2658/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 79588444 RX 74489 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 78675727 RX 4720 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 28165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2507/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 263989813 RX 70692 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 263349218 RX 4711 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 22869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 82276316 RX 76553 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 81331841 RX 4849 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 29131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2586/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 273302495 RX 72612 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 272639685 RX 4837 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 635 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 23637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2829/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 84972804 RX 78569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 83996902 RX 4975 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 30099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2667/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 282629190 RX 74556 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 281944127 RX 4966 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 601 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 24382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 2914/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 87617979 RX 80633 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 86611505 RX 5104 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 31066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2747/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 291929661 RX 76452 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 291222887 RX 5095 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1661 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 25160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 90643147 RX 82697 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 89604133 RX 5233 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 32033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2826/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 301230310 RX 78372 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 300501340 RX 5221 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 612 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1404 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 25949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3085/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 93593351 RX 84713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 92522656 RX 5359 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 33001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2907/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 310557197 RX 80316 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 309805981 RX 5350 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 26704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 96319791 RX 86777 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 95217327 RX 5488 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 33968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 2987/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 319857668 RX 82212 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 319084755 RX 5479 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 628 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 27453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 99026048 RX 88841 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 97892752 RX 5617 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 34935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3069/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 329164818 RX 84188 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 328369725 RX 5677 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 28195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3341/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 101713556 RX 90857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 100548871 RX 5743 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 35903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3148/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 338498398 RX 86108 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 337681071 RX 5803 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 28946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3426/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 104439679 RX 92921 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 103243522 RX 5872 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 36869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 347797270 RX 88052 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 346958248 RX 5932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 29700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 107187884 RX 94985 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 105960403 RX 6001 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 37837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3309/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 357099326 RX 89948 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 356238101 RX 6061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 30454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3599/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 109900285 RX 97081 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 108640307 RX 6194 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 38805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3388/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 366432741 RX 91868 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 365549269 RX 6187 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 31216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3684/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 112660329 RX 99097 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 111369074 RX 6320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 39770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 375751263 RX 93812 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 374846057 RX 6316 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 31979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 115364555 RX 101161 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 114041530 RX 6449 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 40737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3549/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 385064790 RX 95708 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 384137856 RX 6445 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 32727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3855/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 118014102 RX 103225 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 116659117 RX 6578 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 41706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 394364588 RX 97628 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 393414965 RX 6571 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 33492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 3940/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 120771802 RX 105241 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 119384895 RX 6704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 42672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 403679270 RX 99572 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 402707918 RX 6700 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 677 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 616 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 34235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4025/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 123432873 RX 107305 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 122014373 RX 6833 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 43639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3789/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 413005661 RX 101468 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 412012556 RX 6829 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 34978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 126105295 RX 109369 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 124655677 RX 6962 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 44608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3868/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 422300212 RX 103388 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 421284431 RX 6955 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1128 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 35751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4196/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 129183602 RX 111385 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 127703129 RX 7088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 45574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 3949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 431607277 RX 105332 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 430569783 RX 7084 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1312 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 36484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4281/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 131858512 RX 113449 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 130347462 RX 7217 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 46541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4029/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 440933476 RX 107228 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 439874223 RX 7213 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 37246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4367/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 134701488 RX 115513 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 133157759 RX 7346 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 47510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4108/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 450228357 RX 109148 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 449146489 RX 7339 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1016 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 37992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 137464359 RX 117529 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 135889565 RX 7472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 48476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 459541566 RX 111092 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 458437982 RX 7468 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 38725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4537/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 140152866 RX 119593 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 138547206 RX 7601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 49443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4269/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 468874485 RX 112988 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 467749142 RX 7597 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 699 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 39472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4623/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 142846763 RX 121657 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 141210750 RX 7730 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 50410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 478172045 RX 114908 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 477024028 RX 7723 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 639 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 40213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4708/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 145504082 RX 123673 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 143837244 RX 7856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 51378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 487482629 RX 116852 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 486312878 RX 7852 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 40954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4793/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 148224927 RX 125737 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 146527444 RX 7985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 52345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4509/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 496802684 RX 118748 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 495611184 RX 7981 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 41706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4879/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 150977693 RX 127801 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 149248841 RX 8114 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 53312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4588/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 506122006 RX 120668 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 504907788 RX 8107 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 954 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 617 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 42442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 4964/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 153653186 RX 129817 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 151894556 RX 8240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 54279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4669/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 515441869 RX 122612 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 514205912 RX 8236 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 43196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 156350554 RX 131881 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 154561099 RX 8369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 55246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4749/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 524748868 RX 124508 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 523491196 RX 8365 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 43948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5135/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 159017005 RX 133945 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 157196530 RX 8498 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 56214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4828/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 534050013 RX 126428 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 532769657 RX 8491 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 605 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 44706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5220/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 161715098 RX 135961 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 159863068 RX 8624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 57181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4909/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 543376596 RX 128372 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 542074486 RX 8620 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 45472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5305/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 164502144 RX 138025 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 162620018 RX 8753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 58148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 4989/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 552676683 RX 130268 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 551352868 RX 8749 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 46262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 167452633 RX 140089 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 165537044 RX 8882 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 59116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 561977966 RX 132188 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 560631525 RX 8875 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 47012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5476/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 170207759 RX 142105 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 168261350 RX 9008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 60083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5149/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 571310885 RX 134132 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 569942668 RX 9004 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 586 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 615 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 47744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5561/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 172863429 RX 144169 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 170887378 RX 9137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 61049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5229/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 580601948 RX 136028 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 579212056 RX 9133 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 48478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5647/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 175551911 RX 146233 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 173544023 RX 9266 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 62018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5308/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 589912501 RX 137948 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 588499908 RX 9259 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 49225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 178240638 RX 148249 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 176200172 RX 9392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 62985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5389/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 599245228 RX 139892 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 597810877 RX 9388 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 49991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5817/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 181128357 RX 150313 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 179055965 RX 9521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 63950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5469/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 608556133 RX 141788 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 607100057 RX 9517 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1609 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 50743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5903/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 184014166 RX 152377 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 181909766 RX 9650 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 64918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5548/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 617863436 RX 143708 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 616385154 RX 9643 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 51506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 5988/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 186741688 RX 154393 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 184605884 RX 9776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 65887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5629/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 627179763 RX 145652 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 625679262 RX 9772 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 52256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6073/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 189452572 RX 156457 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 187284265 RX 9905 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 66852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5709/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 636491949 RX 147548 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 634969723 RX 9901 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 52998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6159/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 192143067 RX 158521 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 189943381 RX 10034 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 67820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5788/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 645818644 RX 149468 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 644274174 RX 10027 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 53738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6244/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 194803837 RX 160537 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 192572819 RX 10160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 68788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5869/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 655119611 RX 151412 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 653552947 RX 10156 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 678 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 54476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6329/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 197470827 RX 162601 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 195209667 RX 10289 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 69754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 5949/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 664419764 RX 153308 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 662831401 RX 10285 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 646 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 55216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6415/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 200164539 RX 164665 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 197873251 RX 10418 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 70722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6028/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 673746624 RX 155228 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 672136048 RX 10411 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 675 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 55965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6500/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 202851017 RX 166681 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 200526376 RX 10544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 71690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6109/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 683047564 RX 157172 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 681414822 RX 10540 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 56714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6585/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 205610327 RX 168745 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 203255143 RX 10673 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 72656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6189/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 692354245 RX 159068 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 690699791 RX 10669 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 57484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 208724080 RX 170809 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 206338158 RX 10802 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 73624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 701687852 RX 160988 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 700011141 RX 10795 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 58230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6756/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 211411624 RX 172825 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 208994317 RX 10928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 74591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6349/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 710987220 RX 162932 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 709288326 RX 10924 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 58978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6841/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 214132970 RX 174889 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 211684547 RX 11057 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 75558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6429/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 720288780 RX 164828 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 718568178 RX 11053 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 59750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 6927/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 216893869 RX 176953 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 214413299 RX 11186 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 76526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6508/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 729622195 RX 166748 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 727879331 RX 11179 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 60507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 219586842 RX 178969 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 217073849 RX 11312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 77492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6589/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 738941213 RX 168692 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 737176129 RX 11308 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 61261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7097/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 222291850 RX 181033 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 219747321 RX 11441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 78455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6670/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 748212752 RX 170644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 746426034 RX 11506 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 62004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7183/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 225015232 RX 183097 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 222440490 RX 11570 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 79412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 757396587 RX 172588 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 755587943 RX 11635 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 62737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7268/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 227710029 RX 185113 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 225104530 RX 11696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 80365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 766564807 RX 174484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 764734284 RX 11764 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 63469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7353/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 230401845 RX 187177 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 227765055 RX 11825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 81321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6910/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 775775731 RX 176404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 773923707 RX 11890 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 64193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7439/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 233094822 RX 189241 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 230428559 RX 11954 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 82278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 6991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 784954292 RX 178348 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 783080391 RX 12019 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 64941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7524/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 235762923 RX 191257 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 233065447 RX 12080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 83232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 794125365 RX 180244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 792229599 RX 12148 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 694 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 65677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7611/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 238432306 RX 193353 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 235703815 RX 12278 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 84195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7150/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 803409576 RX 182164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 801492145 RX 12274 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 66422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7696/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 241109966 RX 195417 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 238351092 RX 12407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 85163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 812704015 RX 184108 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 810764410 RX 12403 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 67166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7782/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 243806573 RX 197481 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 241016148 RX 12536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 86130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 822017720 RX 186004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 820055885 RX 12532 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 67919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7867/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 246514849 RX 199497 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 243694532 RX 12662 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 87097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7390/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 831350639 RX 187924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 829367038 RX 12658 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 68682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 7952/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 249280261 RX 201561 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 246428721 RX 12791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 88063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 840647703 RX 189868 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 838641923 RX 12787 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 963 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 69436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8038/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 252055886 RX 203625 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 249172854 RX 12920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 89032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7551/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 849958783 RX 191764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 847930791 RX 12916 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 70180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8123/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 254754352 RX 205641 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 251840844 RX 13046 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 89999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7630/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 859278838 RX 193684 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 857229108 RX 13042 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 70941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8208/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 257487623 RX 207705 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 254542985 RX 13175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 90965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 868597664 RX 195628 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 866525707 RX 13171 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 71736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8294/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 260644998 RX 209769 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 257667511 RX 13304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 91933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7791/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 877918023 RX 197524 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 875823834 RX 13300 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 567 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 72481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8379/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 263285015 RX 211785 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 260277708 RX 13430 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 92900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7870/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 887225022 RX 199444 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 885109112 RX 13426 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 73254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8464/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 265980553 RX 213849 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 262941257 RX 13559 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 93867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 7951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 896525644 RX 201388 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 894387570 RX 13555 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 74002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 268733923 RX 215913 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 265664051 RX 13688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 94835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 905852696 RX 203284 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 903692402 RX 13684 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 74784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8635/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 271451577 RX 217929 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 268349825 RX 13814 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 95802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 915152783 RX 205204 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 912970782 RX 13810 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 687 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 75532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8720/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 274151070 RX 219993 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 271017765 RX 13943 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 96769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 924453624 RX 207148 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 922249433 RX 13939 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1415 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 76324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8806/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 277129227 RX 222057 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 273962924 RX 14072 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 97737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8271/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 933787039 RX 209044 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 931560596 RX 14068 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 77075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8891/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 279829543 RX 224073 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 276630899 RX 14198 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 98703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8350/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 943078102 RX 210964 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 940829974 RX 14194 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 77832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 8976/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 282519704 RX 226137 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 279289957 RX 14327 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 99671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 952388159 RX 212908 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 950117819 RX 14323 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 78589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9062/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 285273799 RX 228201 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 282012791 RX 14456 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 100639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8511/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 961721382 RX 214804 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 959428774 RX 14452 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 79353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9147/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 288018546 RX 230217 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 284725246 RX 14582 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 101604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8590/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 971032287 RX 216724 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 968717952 RX 14578 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 80102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9232/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 290734572 RX 232281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 287409528 RX 14711 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 102571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 980339094 RX 218668 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 978003042 RX 14707 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 80860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9318/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 293638718 RX 234345 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 290280572 RX 14840 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 103541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 989655917 RX 220564 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 987297143 RX 14836 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 81605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9403/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 296376874 RX 236361 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 292987069 RX 14966 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 104506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 998968103 RX 222484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 996587612 RX 14962 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 82379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9488/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 299129983 RX 238425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 295708406 RX 15095 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 105473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1008294302 RX 224428 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1005892059 RX 15091 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 83135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9574/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 301829057 RX 240489 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 298376351 RX 15224 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 106442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 8991/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1017595711 RX 226324 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1015170835 RX 15220 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 83884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9659/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 304512289 RX 242505 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 301028024 RX 15350 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 107408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9070/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1026895864 RX 228244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1024449285 RX 15346 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 84628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9744/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 307241403 RX 244569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 303727146 RX 15479 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 108375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1036222255 RX 230188 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1033753928 RX 15475 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 85371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9830/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 309936896 RX 246633 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 306390680 RX 15608 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 109344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9231/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1045523718 RX 232084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1043032707 RX 15604 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 86121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 9915/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 312599383 RX 248649 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 309021655 RX 15734 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 110310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9310/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1054830399 RX 234004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1052317674 RX 15730 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 86869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10000/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 315300578 RX 250713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 311692589 RX 15863 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 111277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1064163510 RX 235948 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1061629023 RX 15859 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 87633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10086/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 318039095 RX 252777 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 314398630 RX 15992 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 112245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1073463374 RX 237844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1070906200 RX 15988 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 88400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10171/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 320738384 RX 254793 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 317065664 RX 16118 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 113212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9550/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1082764934 RX 239764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1080186061 RX 16114 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 89174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10256/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 323442480 RX 256857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 319738120 RX 16247 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 114179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9631/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1092097853 RX 241708 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1089497209 RX 16243 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 89927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10342/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 326149051 RX 258921 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 322413029 RX 16376 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 115146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9711/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1101417367 RX 243604 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1098794010 RX 16372 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 90700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10427/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 328849129 RX 260937 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 325081029 RX 16502 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 116113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9790/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1110730894 RX 245524 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1108085820 RX 16498 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1138 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 91481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10512/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 331826666 RX 263001 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 328026649 RX 16631 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 117080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9871/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1120029700 RX 247468 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1117362930 RX 16627 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 92231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10598/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 334577399 RX 265065 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 330743555 RX 16760 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 118048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 9951/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1129345320 RX 249364 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1126655892 RX 16756 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 93003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10683/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 337435286 RX 267081 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 333568647 RX 16886 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 119015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10030/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1138671711 RX 251284 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1135960533 RX 16882 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1119 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 93761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10768/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 340168636 RX 269145 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 336270758 RX 17015 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 119982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10111/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1147965270 RX 253228 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1145232400 RX 17011 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 94521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10854/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 342888474 RX 271209 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 338958034 RX 17144 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 120950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10191/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1157273327 RX 255124 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1154517761 RX 17140 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 95280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 10939/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 345625001 RX 273225 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 341664576 RX 17270 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 121917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10270/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1166599526 RX 257044 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1163822204 RX 17266 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 96033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11024/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 348366028 RX 275289 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 344374052 RX 17399 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 122884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10351/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1175893469 RX 258988 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1173094468 RX 17395 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 632 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 96769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11110/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 351049283 RX 277353 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 347027192 RX 17528 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 123852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10431/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1185207670 RX 260884 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1182385956 RX 17524 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 97518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11195/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 353751852 RX 279369 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 349698151 RX 17654 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 124819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10510/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1194540589 RX 262804 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1191697111 RX 17650 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 98255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11280/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 356442535 RX 281433 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 352358190 RX 17783 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 125784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1203837157 RX 264748 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1200971989 RX 17779 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 99000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11366/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 359169777 RX 283497 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 355053277 RX 17912 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 126753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10671/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1213148237 RX 266644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1210260854 RX 17908 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 99739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11451/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 361844695 RX 285513 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 357697560 RX 18038 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 127721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10750/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1222468788 RX 268564 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1219559169 RX 18034 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 661 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 100479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11536/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 364535407 RX 287577 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 360358135 RX 18167 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 128686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10831/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1231787118 RX 270508 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1228855768 RX 18163 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 624 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 101226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11622/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 367193004 RX 289641 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 362983127 RX 18296 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 129654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10911/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1241107450 RX 272404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1238153895 RX 18292 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 101971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11707/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 369982526 RX 291657 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 365741544 RX 18422 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 130622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 10990/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1250414918 RX 274324 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1247439177 RX 18418 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1500 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 102752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11792/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 372964732 RX 293721 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 368691164 RX 18551 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 131588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11071/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1259715071 RX 276268 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1256717631 RX 18547 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 103539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11878/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 375962503 RX 295785 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 371654132 RX 18680 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 132556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11151/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1269042150 RX 278164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1266022471 RX 18676 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1524 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 104298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 11963/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 378697274 RX 297801 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 374357680 RX 18806 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 133524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11230/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1278342733 RX 280084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1275300862 RX 18802 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 105070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12048/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 381535004 RX 299865 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 377165003 RX 18935 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 134490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1287643078 RX 282028 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1284579503 RX 18931 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 105846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12134/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 384606007 RX 301929 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 380203623 RX 19064 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 135458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11391/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1296976493 RX 283924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1293890657 RX 19060 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1544 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 106585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12219/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 387265319 RX 303945 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 382832555 RX 19190 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 136425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11470/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1306268052 RX 285844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1303160056 RX 19186 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 106963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 8379: ulsch_rounds 12291/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 388581653 RX 306588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 384127762 RX 20168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 137392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11552/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 1315577613 RX 287828 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1312447894 RX 19389 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 443 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 106975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: ulsch_rounds 12304/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 388584505 RX 308066 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 384127762 RX 20168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 138125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 96c8: ulsch_rounds 11641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 1322577595 RX 290790 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1319427304 RX 20606 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 107733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 19 +UE 8379: ulsch_rounds 12396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 391314506 RX 310735 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 386849205 RX 21058 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 138657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11730/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1324487114 RX 293469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1321310151 RX 21483 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 108711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12482/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 399211648 RX 312799 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 394727447 RX 21187 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 139369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11809/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1327122845 RX 295389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1323915782 RX 21609 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 109688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12568/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 408388373 RX 314839 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 403882201 RX 21316 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 140086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1329786337 RX 297333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1326548104 RX 21738 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 110668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 417565688 RX 316879 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 413038027 RX 21442 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 140812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 11970/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1332504893 RX 299229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1329236707 RX 21867 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 111646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12738/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 426739292 RX 318943 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 422190159 RX 21571 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 141521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12049/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1335201618 RX 301149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1331904081 RX 21993 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 882 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 112624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12824/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 435911985 RX 320983 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 431340893 RX 21700 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 142241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12130/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1337902976 RX 303093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1334574930 RX 22122 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 113603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 445107669 RX 323023 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 440515052 RX 21826 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 142963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12210/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1340634459 RX 304989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1337277372 RX 22251 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 114581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 12994/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 454281273 RX 325087 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 449667186 RX 21955 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 143679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12289/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1343338555 RX 306909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1339952687 RX 22377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 115559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13080/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 463453774 RX 327127 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 458817719 RX 22084 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 144401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12370/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1346018521 RX 308853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1342602818 RX 22506 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 116537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 472639153 RX 329167 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 467981601 RX 22210 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 145109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12450/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1348713592 RX 310749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1345269216 RX 22635 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 117515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13250/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 481806037 RX 331231 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 477127023 RX 22339 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 145826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12529/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1351425587 RX 312669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1347951986 RX 22761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1222 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 118495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13336/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 490977386 RX 333271 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 486276396 RX 22468 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 146573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12610/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1354539963 RX 314613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1351036443 RX 22890 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1528 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 119473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 500177102 RX 335311 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 495454590 RX 22594 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 147286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12690/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1357212337 RX 316509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1353679119 RX 23019 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 120450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13506/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 509334962 RX 337375 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 504591017 RX 22723 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 148010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12769/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1359951932 RX 318429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1356389511 RX 23145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 121431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13592/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 518506437 RX 339415 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 513740517 RX 22852 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 148727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12850/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1362676962 RX 320373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1359084618 RX 23274 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 122409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 527686377 RX 341455 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 522898971 RX 22978 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 149458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 12930/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1365423915 RX 322269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1361801419 RX 23403 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 995 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 123386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13762/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 536872911 RX 343519 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 532064001 RX 23107 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 150186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13009/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1368185789 RX 324189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1364534537 RX 23529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 124365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13848/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 546044449 RX 345559 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 541213583 RX 23236 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 150907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13090/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1370876035 RX 326133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1367195017 RX 23658 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 125343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 13932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 555217861 RX 347599 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 550365524 RX 23362 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 151622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13170/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1373561567 RX 328029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1369851076 RX 23787 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 126321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14018/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 564400747 RX 349663 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 559526918 RX 23491 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 152345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1376251053 RX 329949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1372511586 RX 23913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 127300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14104/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 573579710 RX 351703 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 568683899 RX 23620 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 153073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13330/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1378990413 RX 331893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1375220992 RX 24042 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 128278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 582753314 RX 353743 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 577836021 RX 23746 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 153803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13410/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1381714934 RX 333789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1377915578 RX 24171 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 129256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14274/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 591942536 RX 355807 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 587003731 RX 23875 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 154523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13489/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1384465741 RX 335709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1380637816 RX 24297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 130235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14360/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 601128219 RX 357847 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 596167418 RX 24004 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 155233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13570/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1387123061 RX 337653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1383266213 RX 24426 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 131213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 610288767 RX 359887 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 605306522 RX 24130 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 155951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13650/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1389809178 RX 339549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1385922262 RX 24555 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 132192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14530/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 619458147 RX 361951 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 614454427 RX 24259 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 156675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13729/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1392537281 RX 341469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1388621299 RX 24681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 133171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14616/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 628651831 RX 363991 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 623626104 RX 24388 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 157384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13810/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1395210302 RX 343413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1391265472 RX 24810 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 134148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14700/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 637824028 RX 366031 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 632776831 RX 24514 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 158139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13890/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1398320199 RX 345309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1394343916 RX 24939 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 135127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14786/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 646984510 RX 368095 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 641915858 RX 24643 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 158849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 13969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1401045177 RX 347229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1397039924 RX 25065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 136105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14872/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 656164642 RX 370135 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 651074509 RX 24772 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 159575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14050/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1403744596 RX 349173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1399710267 RX 25194 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 137084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 14956/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 665347640 RX 372175 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 660235520 RX 24898 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 160289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1406450308 RX 351165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1402386056 RX 25387 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 138062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15042/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 674533019 RX 374239 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 669399400 RX 25027 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 161015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1409182068 RX 353085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1405088027 RX 25513 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 882 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 139040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15128/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 683706431 RX 376279 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 678551337 RX 25156 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 161737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1411891325 RX 355029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1407767728 RX 25642 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 140018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 692879124 RX 378319 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 687702068 RX 25282 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 162453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1414652403 RX 356925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1410499344 RX 25771 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 140997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15298/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 702075000 RX 380383 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 696876420 RX 25411 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 163158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14452/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1417336135 RX 358845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1413153936 RX 25897 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 141975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15384/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 711241884 RX 382423 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 706021843 RX 25540 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 163886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1420047304 RX 360789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1415836100 RX 26026 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 142954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15471/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 720417265 RX 384541 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 715175249 RX 25738 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 164604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1422825748 RX 362685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1418584534 RX 26155 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 143932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15556/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 729616789 RX 386557 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 724353243 RX 25864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 165313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14692/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1425521463 RX 364605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1421251963 RX 26281 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 144910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15641/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 738777337 RX 388621 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 733492341 RX 25993 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 166028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1428225926 RX 366549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1423927263 RX 26410 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 145890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15727/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 747939596 RX 390685 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 742632653 RX 26122 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 166747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1430896992 RX 368445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1426568953 RX 26539 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 146868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 757126064 RX 392701 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 751797628 RX 26248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 167458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 14932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1433610343 RX 370365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1429254622 RX 26665 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 147844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15897/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 766302293 RX 394765 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 760952382 RX 26377 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 168205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1436663803 RX 372309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1432276790 RX 26794 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 626 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 148825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 15983/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 775480104 RX 396829 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 770108214 RX 26506 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 168915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1439299743 RX 374205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1434882451 RX 26923 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 149803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16068/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 784653708 RX 398845 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 779260342 RX 26632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 169650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15172/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1442131259 RX 376125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1437684747 RX 27049 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 150780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16153/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 793825905 RX 400909 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 788411066 RX 26761 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 170370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1444851054 RX 378069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1440375408 RX 27178 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 151760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16239/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 803022085 RX 402973 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 797585233 RX 26890 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 171089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1447541371 RX 379965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1443035387 RX 27307 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 152738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16324/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 812195689 RX 404989 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 806737359 RX 27016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 171780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15412/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1450192350 RX 381885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1445657931 RX 27433 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 153715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16409/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 821367694 RX 407053 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 815887892 RX 27145 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 172493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1452901150 RX 383829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1448336235 RX 27562 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 154694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16495/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 830553569 RX 409117 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 825051770 RX 27274 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 173201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1455601994 RX 385725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1451007084 RX 27691 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 155672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16580/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 839720453 RX 411133 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 834197202 RX 27400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 173929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1458312764 RX 387645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1453688322 RX 27817 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 990 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 156651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16665/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 848891306 RX 413197 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 843346575 RX 27529 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 174650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1461070690 RX 389589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1456416974 RX 27946 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 157630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16751/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 858091518 RX 415261 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 852524764 RX 27658 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 175376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1463807436 RX 391485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1459123356 RX 28075 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 158607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16836/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 867249378 RX 417277 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 861661188 RX 27784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 176092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15892/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1466488101 RX 393405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1461774919 RX 28201 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 159587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 16921/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 876420357 RX 419341 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 870810695 RX 27913 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 176806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 15973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1469165713 RX 395349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1464423538 RX 28330 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 160566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17007/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 885600793 RX 421405 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 879969150 RX 28042 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 177517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1471932001 RX 397245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1467161022 RX 28459 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 161543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 894787327 RX 423421 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 889134180 RX 28168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 178239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16132/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1474626148 RX 399165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1469824476 RX 28585 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 162521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17177/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 903958369 RX 425485 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 898283755 RX 28297 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 178987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1477676837 RX 401109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1472845077 RX 28714 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 163500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17263/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 913132277 RX 427549 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 907435696 RX 28426 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 179695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16293/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1480360434 RX 403005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1475498142 RX 28843 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 697 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 164478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17348/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 922315163 RX 429565 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 916597085 RX 28552 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 180422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1483022973 RX 404925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1478130424 RX 28969 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1158 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 165456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17433/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 931493630 RX 431629 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 925754064 RX 28681 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 181157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1485885972 RX 406869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1480962771 RX 29098 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 166435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17519/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 940667730 RX 433693 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 934906202 RX 28810 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 181864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16533/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1488567738 RX 408765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1483615325 RX 29227 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 167413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17604/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 949856952 RX 435709 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 944073916 RX 28936 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 182587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16612/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1491270038 RX 410685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1486286725 RX 29353 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 168391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17689/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 959042139 RX 437773 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 953237601 RX 29065 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 183301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1493940563 RX 412629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1488927949 RX 29482 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 169370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17775/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 968203183 RX 439837 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 962376699 RX 29194 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 184029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16773/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1496667972 RX 414525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1491626490 RX 29611 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 170349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17860/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 977372563 RX 441853 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 971524613 RX 29320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 184752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16852/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1499409432 RX 416445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1494337879 RX 29737 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 171327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 17945/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 986565751 RX 443917 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 980696288 RX 29449 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 185471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 16933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1502112248 RX 418389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1497011662 RX 29866 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 172305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18031/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 995738444 RX 445981 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 989847024 RX 29578 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 186193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17013/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1504821433 RX 420285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1499691423 RX 29995 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 173284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18116/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1004898926 RX 447997 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 998986049 RX 29704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 186906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17092/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1507487347 RX 422205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1502328206 RX 30121 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 174262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18201/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1014079058 RX 450061 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1008144693 RX 29833 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 187634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1510172628 RX 424149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1504984255 RX 30250 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 175241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18287/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1023262056 RX 452125 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1017305703 RX 29962 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 188342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17253/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1512838595 RX 426045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1507621053 RX 30379 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 176219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18372/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1032447435 RX 454141 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1026469584 RX 30088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 189067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17332/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1515494033 RX 427965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1510247467 RX 30505 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1501 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 177197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18457/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1041620847 RX 456205 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1035621519 RX 30217 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 189810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1518442046 RX 429909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1513163837 RX 30634 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 702 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 178175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18543/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1050793540 RX 458269 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1044772257 RX 30346 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 190516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17493/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1521138703 RX 431805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1515832213 RX 30763 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 179154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18628/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1059989416 RX 460285 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1053946607 RX 30472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 191251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17572/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1523874592 RX 433725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1518538640 RX 30889 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 180132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18713/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1069156300 RX 462349 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1063092030 RX 30601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 191970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1526591281 RX 435669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1521225360 RX 31018 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1110 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 181111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18799/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1078331681 RX 464413 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1072245438 RX 30730 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 192706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17733/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1529398023 RX 437565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1524000435 RX 31147 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 955 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 182089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18884/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1087531205 RX 466429 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1081423438 RX 30856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 193434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17812/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1532248786 RX 439485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1526822027 RX 31273 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1055 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 183067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 18969/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1096691753 RX 468493 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1090562540 RX 30985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 194140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1534909371 RX 441429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1529454289 RX 31402 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 184047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19055/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1105854012 RX 470557 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1099702846 RX 31114 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 194847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 17973/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1537599553 RX 443325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1532115335 RX 31531 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 185025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19140/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1115040480 RX 472573 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1108867818 RX 31240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 195568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18052/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1540311933 RX 445245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1534798025 RX 31657 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 186001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19225/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1124216709 RX 474637 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1118022571 RX 31369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 196298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1543010722 RX 447189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1537465875 RX 31786 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 186982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19311/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1133394520 RX 476701 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1127178403 RX 31498 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 197014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18213/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1545688462 RX 449085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1540113983 RX 31915 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 187960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19396/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1142568124 RX 478717 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1136330526 RX 31624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 197726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18292/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1548396910 RX 451005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1542793709 RX 32041 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 188937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19481/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1151740321 RX 480781 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1145481260 RX 31753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 198476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18373/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1551126094 RX 452949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1545491755 RX 32170 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 189917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19567/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1160936501 RX 482845 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1154655423 RX 31882 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 199204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18453/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1553793355 RX 454845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1548129499 RX 32299 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 190895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19652/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1170110105 RX 484861 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1163807548 RX 32008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 199944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18532/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1556548409 RX 456765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1550854226 RX 32425 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 191872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19737/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1179282110 RX 486925 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1172958076 RX 32137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 200667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18613/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1559241260 RX 458709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1553517695 RX 32554 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 192851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19823/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1188467985 RX 488989 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1182121958 RX 32266 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 201388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18693/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1561980344 RX 460605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1556228042 RX 32683 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 193829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19908/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1197634869 RX 491005 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1191267379 RX 32392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 202109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18772/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1564681892 RX 462525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1558899362 RX 32809 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 194808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 19993/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1206805722 RX 493069 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1200416766 RX 32521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 202835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18853/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1567375447 RX 464469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1561564343 RX 32938 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 195787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20079/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1216005934 RX 495133 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1209594956 RX 32650 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 203538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 18933/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1570070804 RX 466365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1564230721 RX 33067 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 196764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20164/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1225163794 RX 497149 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1218731379 RX 32776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 204276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19012/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1572927551 RX 468285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1567056734 RX 33193 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1086 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 197744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20249/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1234334773 RX 499213 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1227880878 RX 32905 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 204995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19093/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1575658656 RX 470229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1569759156 RX 33322 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 198723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20335/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1243515209 RX 501277 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1237039336 RX 33034 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 205718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19173/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1578379032 RX 472125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1572449266 RX 33451 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 199700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20420/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1252701743 RX 503293 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1246204375 RX 33160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 206453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19252/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1581136690 RX 474045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1575174964 RX 33577 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 200678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20505/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1261872785 RX 505357 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1255353947 RX 33289 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 207161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19333/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1583838684 RX 475989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1577847295 RX 33706 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 201656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20591/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1271046197 RX 507421 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1264505882 RX 33418 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 207887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19413/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1586527032 RX 477885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1580506308 RX 33835 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 202635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20676/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1280229579 RX 509437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1273667274 RX 33544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 208604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19492/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1589194349 RX 479805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1583143071 RX 33961 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 203613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20761/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1289408046 RX 511501 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1282824252 RX 33673 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 209323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19573/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1591909526 RX 481749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1585828705 RX 34090 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 204591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20847/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1298581650 RX 513565 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1291976387 RX 33802 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 210050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19653/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1594619971 RX 483645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1588509908 RX 34219 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 205570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 20932/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1307771368 RX 515581 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1301144108 RX 33928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 210771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19732/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1597291325 RX 485565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1591151147 RX 34345 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 206548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21017/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1316956555 RX 517645 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1310307797 RX 34057 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 211486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19813/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1599983942 RX 487509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1593814571 RX 34474 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 207526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21103/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1326117103 RX 519709 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1319446909 RX 34186 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 212202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19893/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1602707477 RX 489405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1596508621 RX 34603 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 208506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21188/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1335286979 RX 521725 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1328594821 RX 34312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 212922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 19972/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1605391940 RX 491325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1599162177 RX 34729 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 209484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21273/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1344480167 RX 523789 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1337766499 RX 34441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 213634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20053/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1608093418 RX 493269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1601833021 RX 34858 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 210461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21359/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1353652364 RX 525853 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1346917229 RX 34570 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 214366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20133/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1610827949 RX 495165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1604538982 RX 34987 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 211441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21444/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1362813342 RX 527869 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1356056256 RX 34696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 215075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20212/0/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1613533475 RX 497085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1607214783 RX 35113 bytes + +[RLC] ack_sn (130821) not valid (tx_next_ack 36208 tx_next 36260), discard control PDU +[NR_MAC] Unexpected ULSCH HARQ PID 7 (have 6) for RNTI 0x96c8 (ignore this warning for RA) +[NR_MAC] Unexpected ULSCH HARQ PID 7 (have -1) for RNTI 0x96c8 (ignore this warning for RA) +[NR_MAC] Unexpected ULSCH HARQ PID 8 (have 7) for RNTI 0x8379 (ignore this warning for RA) +[NR_MAC] Unexpected ULSCH HARQ PID 6 (have -1) for RNTI 0x96c8 (ignore this warning for RA) +[RLC] ack_sn (36258) not valid (tx_next_ack 130668 tx_next 130920), discard control PDU +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1223 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 212419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00759 MCS (0) 10 +UE 8379: MAC: TX 1371993474 RX 529933 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1365214909 RX 34825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 215801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00984 MCS (0) 17 +UE 96c8: MAC: TX 1616360553 RX 499053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1610012653 RX 35248 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 213397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00214 MCS (0) 10 +UE 8379: MAC: TX 1381175976 RX 531997 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1374375915 RX 34954 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 216530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00309 MCS (0) 17 +UE 96c8: MAC: TX 1619081360 RX 500949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1612703309 RX 35377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 214376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00061 MCS (0) 10 +UE 8379: MAC: TX 1390361851 RX 534013 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1383539799 RX 35080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 217252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00108 MCS (0) 17 +UE 96c8: MAC: TX 1621832271 RX 502869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1615424546 RX 35503 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 215354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00017 MCS (0) 10 +UE 8379: MAC: TX 1399535263 RX 536077 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1392691734 RX 35209 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 217982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00034 MCS (0) 17 +UE 96c8: MAC: TX 1624557293 RX 504813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1618120088 RX 35632 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1422 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 216331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00005 MCS (0) 10 +UE 8379: MAC: TX 1408707460 RX 538141 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1401842468 RX 35338 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 218737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00011 MCS (0) 17 +UE 96c8: MAC: TX 1627503656 RX 506709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1621037430 RX 35761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 217311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 21956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00001 MCS (0) 10 +UE 8379: MAC: TX 1417903832 RX 540157 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1411016826 RX 35464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 219468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00004 MCS (0) 17 +UE 96c8: MAC: TX 1630227085 RX 508629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1623731485 RX 35887 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 218289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1427070716 RX 542221 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1420162247 RX 35593 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 220183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00001 MCS (0) 17 +UE 96c8: MAC: TX 1632927289 RX 510573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1626402865 RX 36016 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 219267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1436245601 RX 544285 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1429315662 RX 35722 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 220903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1635620074 RX 512469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1629066299 RX 36145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 220246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1445445621 RX 546301 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1438493659 RX 35848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 221622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 20931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1638310778 RX 514389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1631726799 RX 36271 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 221224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1454606169 RX 548365 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1447632764 RX 35977 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 222337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21012/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1641006023 RX 516333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1634392676 RX 36400 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 222203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1463767932 RX 550429 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1456773074 RX 36106 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 223055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1643680979 RX 518229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1637038767 RX 36529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 223182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1472954896 RX 552445 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1465938045 RX 36232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 223763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1646462466 RX 520149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1639791146 RX 36655 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1104 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 224158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1482131125 RX 554509 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1475092804 RX 36361 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 224481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1649157258 RX 522093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1642456087 RX 36784 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 664 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 225138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1491308440 RX 556573 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1484248627 RX 36490 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 225215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1651884020 RX 523989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1645153572 RX 36913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 226117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1500482540 RX 558589 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1493400751 RX 36616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 225930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1654573272 RX 525909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1647814042 RX 37039 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 227094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1509654737 RX 560653 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1502551485 RX 36745 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 226654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1657320393 RX 527853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1650531859 RX 37168 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1131 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 228073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1518850421 RX 562717 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1511725654 RX 36874 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 227394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1660148834 RX 529749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1653330641 RX 37297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 229052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 22980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1528024521 RX 564733 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1520877782 RX 37000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 228111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1662849177 RX 531669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1656000999 RX 37423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 230029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1537196526 RX 566797 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1530028313 RX 37129 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 228827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1665550292 RX 533613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1658672324 RX 37552 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 231007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1546381905 RX 568861 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1539192183 RX 37258 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 229550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1668213145 RX 535509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1661305622 RX 37681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 231986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1555549285 RX 570877 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1548337609 RX 37384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 230269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1670873397 RX 537429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1663935481 RX 37807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 232965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1564720138 RX 572941 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1557486989 RX 37513 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 231002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 21972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1673594435 RX 539373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1666625591 RX 37936 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 233943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1573919854 RX 575005 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1566665181 RX 37642 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 231727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1676280958 RX 541269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1669282626 RX 38065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 670 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 234921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1583078210 RX 577021 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1575801609 RX 37768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 232443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1678967109 RX 543189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1671939101 RX 38191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 235901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1592249189 RX 579085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1584951108 RX 37897 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 233133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1681612730 RX 545133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1674556563 RX 38320 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 682 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 236879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1601429129 RX 581149 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1594109564 RX 38026 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 233851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1684272793 RX 547029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1677187383 RX 38449 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 237857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1610616159 RX 583165 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1603274599 RX 38152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 234570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1686975925 RX 548949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1679859749 RX 38575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 238835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1619787201 RX 585229 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1612424177 RX 38281 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 235283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1689658258 RX 550893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1682512824 RX 38704 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 239813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 23919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1628960613 RX 587293 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1621576117 RX 38410 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 235997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1692335365 RX 552789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1685161428 RX 38833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 240792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1638143995 RX 589309 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1630737509 RX 38536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 236708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1695079716 RX 554709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1687875250 RX 38959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 241770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1647322462 RX 591373 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1639894489 RX 38665 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 237424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1697804482 RX 556653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1690570802 RX 39088 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 955 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 242748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1656496066 RX 593437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1649046626 RX 38794 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 238146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1700513742 RX 558549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1693249572 RX 39217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 243727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1665685784 RX 595453 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1658214347 RX 38920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 238870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1703264661 RX 560469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1695970819 RX 39343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 244705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1674870971 RX 597517 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1667378032 RX 39049 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 239587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 22932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1705958851 RX 562413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1698635805 RX 39472 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 245683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1684031519 RX 599581 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1676517136 RX 39178 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 240294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23012/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 1708613576 RX 564309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1701260737 RX 39601 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 246663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 1693201395 RX 601597 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1685665048 RX 39304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 240907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 96c8: ulsch_rounds 23091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 96c8: MAC: TX 1710875682 RX 566722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1703494557 RX 40270 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 176 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 247640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 1702384086 RX 603855 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1694826236 RX 39661 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 240924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: ulsch_rounds 23114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 1710882232 RX 568520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1703494971 RX 40597 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 248013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1704369712 RX 607391 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1696789842 RX 41472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 241230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: ulsch_rounds 23174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1711649272 RX 571065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1704257569 RX 41427 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 248750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1707194375 RX 609431 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1699583832 RX 41601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 242179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 96c8: ulsch_rounds 23255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1717100202 RX 572985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1709694220 RX 41556 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 249485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1709828784 RX 611471 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1702186619 RX 41727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 243125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1726132545 RX 574905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1718704973 RX 41682 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 250227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 24955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1712505048 RX 613535 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1704830907 RX 41856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 244066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1735166622 RX 576849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1727717968 RX 41811 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 250972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1715585513 RX 615575 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1707881340 RX 41985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 245013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1744257304 RX 578745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1736786979 RX 41940 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 251697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1718269089 RX 617615 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1710536035 RX 42111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 245960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1753363919 RX 580665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1745871883 RX 42066 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 252433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1720947728 RX 619679 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1713184724 RX 42240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 246901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1762391084 RX 582609 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1754877973 RX 42195 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 253173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1723670164 RX 621719 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1715876401 RX 42369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 247848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1771481985 RX 584505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1763947171 RX 42324 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 253906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1726325116 RX 623759 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1718501383 RX 42495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 248792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1780563472 RX 586425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1773006980 RX 42450 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 254648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1729032793 RX 625823 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1721179747 RX 42624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 249736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1789623601 RX 588369 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1782045970 RX 42579 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 255380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1731670361 RX 627863 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1723786965 RX 42753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 250682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 23975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1798702724 RX 590265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1791103408 RX 42708 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1048 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 256110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1734437186 RX 629903 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1726523107 RX 42879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 251627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1807794516 RX 592185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1800173500 RX 42834 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 256846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1737120324 RX 631967 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1729176322 RX 43008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 252571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1816884984 RX 594129 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1809242765 RX 42963 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 257616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1740184039 RX 634007 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1732208934 RX 43137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 253513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1825929366 RX 596025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1818266040 RX 43092 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1793 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 258333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1742796805 RX 636047 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1734792470 RX 43263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 254461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1835015255 RX 597945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1827329736 RX 43218 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 259071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 25979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1745472164 RX 638111 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1737436778 RX 43392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 255404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1844096507 RX 599889 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1836389802 RX 43347 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 259790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1748126070 RX 640151 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1740061805 RX 43521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 256348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1853181275 RX 601785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1845453372 RX 43476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 260522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1750824292 RX 642191 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1742729775 RX 43647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 257295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1862251750 RX 603705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1854501746 RX 43602 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 261251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1753567071 RX 644255 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1745443702 RX 43776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 258237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1871299975 RX 605649 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1863528856 RX 43731 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 261987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1756231662 RX 646295 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1748077681 RX 43905 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 259184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1880416426 RX 607545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1872624031 RX 43860 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 262728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1758964340 RX 648335 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1750779772 RX 44031 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 260128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1889455464 RX 609465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1881640992 RX 43986 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 949 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 263481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1761651943 RX 650399 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1753435956 RX 44160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 261072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1898531211 RX 611409 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1890695564 RX 44115 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 264228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1764377356 RX 652439 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1756130647 RX 44289 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 262018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 24935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1907643885 RX 613305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1899786982 RX 44244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 264973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1767077242 RX 654479 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1758798657 RX 44415 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 262962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1916691821 RX 615225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1908812817 RX 44370 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 265689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1769730529 RX 656543 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1761420705 RX 44544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 263908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1925772944 RX 617169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1917872747 RX 44499 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 266433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1772440606 RX 658583 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1764100556 RX 44673 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 264850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1934843438 RX 619065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1926922077 RX 44628 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 267166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 26917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1775104792 RX 660623 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1766733023 RX 44799 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 265797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1943953012 RX 620985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1936009413 RX 44754 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 267913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1777857843 RX 662687 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1769454435 RX 44928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 266740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1953014611 RX 622929 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1945049869 RX 44883 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 268671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1780672542 RX 664727 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1772237545 RX 45057 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 267683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1962061489 RX 624825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1954075632 RX 45012 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1166 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 269415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1783367779 RX 666767 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1774901600 RX 45183 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 268631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1971167169 RX 626745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1963159136 RX 45138 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 270194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1786275199 RX 668831 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1777777120 RX 45312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 269573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1980231135 RX 628689 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1972201954 RX 45267 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1500 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 270936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1788954784 RX 670871 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1780425854 RX 45441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 270518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1989293760 RX 630585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1981243425 RX 45396 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 271691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1791665036 RX 672911 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1783105750 RX 45567 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 271464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 1998370883 RX 632505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1990298386 RX 45522 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 272431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1794335897 RX 674975 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1785745652 RX 45696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 272409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2007466148 RX 634449 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 1999372426 RX 45651 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 273150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1797041171 RX 677015 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1788422599 RX 45825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 273354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2016529157 RX 636345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2008414284 RX 45780 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 273895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1799755213 RX 679055 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1791105414 RX 45951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 274298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 25974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2025591430 RX 638265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2017454421 RX 45906 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 274634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1802468698 RX 681119 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1793788254 RX 46080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 275244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2034703912 RX 640209 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2026545654 RX 46035 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 275370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1805173537 RX 683159 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1796463163 RX 46209 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 276185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2043748552 RX 642105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2035569192 RX 46164 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 276120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 27941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1807867158 RX 685199 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1799124274 RX 46335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 277132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2052828698 RX 644025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2044627648 RX 46290 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 276841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1810503566 RX 687263 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1801730010 RX 46464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 278078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2061918315 RX 645969 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2053695562 RX 46419 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 277574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1813134643 RX 689303 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1804329873 RX 46593 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 279020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2070995214 RX 647865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2062751289 RX 46548 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 278316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1815826492 RX 691343 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1806990428 RX 46719 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 279966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2080084612 RX 649785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2071819017 RX 46674 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 279063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1818501730 RX 693407 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1809634220 RX 46848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 280908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2089119158 RX 651729 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2080832014 RX 46803 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 279807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1821197490 RX 695447 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1812298280 RX 46977 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 281854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2098209371 RX 653625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2089901015 RX 46932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 280584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1824304127 RX 697487 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1815372443 RX 47103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 282801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2107316013 RX 655545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2098985912 RX 47058 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 281320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1826976196 RX 699551 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1818013732 RX 47232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 283743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2116343674 RX 657489 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2107992012 RX 47187 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 282079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1829625179 RX 701591 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1820631354 RX 47361 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 284689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2125434079 RX 659385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2117061210 RX 47316 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 282828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1832343944 RX 703631 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1823318640 RX 47487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 285633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 26934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2134515566 RX 661305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2126121019 RX 47442 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 283569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1835019479 RX 705695 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1825963964 RX 47616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 286578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2143576191 RX 663249 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2135160006 RX 47571 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 284300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1837732591 RX 707735 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1828647335 RX 47745 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 287523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2152654818 RX 665145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2144217441 RX 47700 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 285049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 28965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1840442216 RX 709775 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1831325709 RX 47871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 288468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2161746610 RX 667065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2153287531 RX 47826 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 285783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1843118659 RX 711839 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1833970973 RX 48000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 289413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2170837574 RX 669009 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2162356794 RX 47955 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 286531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1845840210 RX 713879 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1836661694 RX 48129 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 290355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2179881956 RX 670905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2171380071 RX 48084 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 287257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1848519148 RX 715919 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1839310393 RX 48255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 291302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2188967322 RX 672825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2180443764 RX 48210 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2016 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 288030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1851637711 RX 717983 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1842397934 RX 48384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 292246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2198049043 RX 674769 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2189503832 RX 48339 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 288776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1854316109 RX 720023 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1845045156 RX 48513 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 293190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2207133811 RX 676665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2198567404 RX 48468 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 963 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 289506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1857007296 RX 722063 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1847705751 RX 48639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 294136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2216203844 RX 678585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2207615773 RX 48594 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 290244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1859669314 RX 724127 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1850335244 RX 48768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 295079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2225252565 RX 680529 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2216642894 RX 48723 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 291018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1862728555 RX 726167 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1853363430 RX 48897 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 296026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2234369016 RX 682425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2225738075 RX 48852 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 291740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1865354861 RX 728207 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1855958772 RX 49023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 296969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2243407558 RX 684345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2234755025 RX 48978 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 292480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1868145270 RX 730271 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1858718671 RX 49152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 297914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 27975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2252483801 RX 686289 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2243809596 RX 49107 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 910 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 293215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1870798050 RX 732311 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1861340809 RX 49281 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 298860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2261596475 RX 688185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2252901013 RX 49236 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 293951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 29989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1873527879 RX 734351 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1864039460 RX 49407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 299803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2270643915 RX 690105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2261926844 RX 49362 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 294695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1876263151 RX 736415 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1866744926 RX 49536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 300750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2279725534 RX 692049 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2270986774 RX 49491 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 295445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1878961728 RX 738455 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1869412976 RX 49665 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 301692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2288796028 RX 693945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2280036108 RX 49620 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 958 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 296194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1881671005 RX 740495 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1872092371 RX 49791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 302638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2297905079 RX 695865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2289123450 RX 49746 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 296928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1884364785 RX 742559 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1874756391 RX 49920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 303582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2306967147 RX 697809 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2298163906 RX 49875 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 297657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1887028992 RX 744663 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1877390288 RX 50113 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 304528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2316045516 RX 699805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2307221085 RX 50073 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 298381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1889739025 RX 746703 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1880070154 RX 50242 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 305481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2325213736 RX 701701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2316367424 RX 50202 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 299149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1892806107 RX 748743 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1883105800 RX 50368 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 306438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2334425156 RX 703621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2325556858 RX 50328 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 299884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1895493832 RX 750807 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1885761934 RX 50497 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 307394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2343603248 RX 705565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2334713534 RX 50457 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 300620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1898183797 RX 752847 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1888422489 RX 50626 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 308348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2352774348 RX 707461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2343862731 RX 50586 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 301375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1901196962 RX 754887 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1891404718 RX 50752 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 309305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 28937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2361985576 RX 709381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2353051972 RX 50712 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 302092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 30930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1903906217 RX 756951 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1894084599 RX 50881 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 310260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2371153555 RX 711325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2362198563 RX 50841 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 302808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1906554130 RX 758991 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1896702196 RX 51010 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 311214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2380330799 RX 713221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2371353896 RX 50970 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 648 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 303552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1909246126 RX 761031 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1899364313 RX 51136 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 312170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2389538250 RX 715141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2380539378 RX 51096 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 304279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1911975174 RX 763095 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1902063470 RX 51265 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 313125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2398729848 RX 717085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2389709533 RX 51225 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 305010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1914652754 RX 765135 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1904709205 RX 51394 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 314079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2407893474 RX 718981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2398851787 RX 51354 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 305747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1917375832 RX 767175 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1907400912 RX 51520 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 315037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2417099000 RX 720901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2408034903 RX 51480 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 306471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1920072946 RX 769239 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1910067465 RX 51649 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 315991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2426301863 RX 722845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2417216303 RX 51609 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 307200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1922722206 RX 771279 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1912686569 RX 51778 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 316945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2435485265 RX 724741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2426378281 RX 51738 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1360 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 307956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1925640843 RX 773319 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1915572398 RX 51904 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 317904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2444688286 RX 726661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2435558840 RX 51864 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 308680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1928293464 RX 775383 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1918194416 RX 52033 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 318856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2453841481 RX 728605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2444690675 RX 51993 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 309416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1930946556 RX 777423 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1920816459 RX 52162 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 319811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2463042100 RX 730501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2453869829 RX 52122 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 310154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1933660079 RX 779463 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1923499274 RX 52288 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 320770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2472238209 RX 732421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2463043492 RX 52248 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 310900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 31954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1936348340 RX 781527 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1926155433 RX 52417 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 321721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 29978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2481381099 RX 734365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2472165045 RX 52377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 311624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1939027834 RX 783567 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1928804152 RX 52546 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 322678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2490609048 RX 736261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2481371460 RX 52506 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2524 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 312415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1942347841 RX 785607 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1932090271 RX 52672 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 323635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2499785636 RX 738181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2490525647 RX 52632 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 633 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 313138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1944961891 RX 787671 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1934673767 RX 52801 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 324588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2508948239 RX 740125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2499666867 RX 52761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 650 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 313866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1947645034 RX 789711 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1937326972 RX 52930 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 325545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2518175996 RX 742021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2508873103 RX 52890 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 314616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1950346023 RX 791751 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1939997485 RX 53056 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 326499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2527351378 RX 743941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2518026149 RX 53016 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 315340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1953048318 RX 793815 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1942669966 RX 53185 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 327454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2536532221 RX 745885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2527185568 RX 53145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 316084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1955801603 RX 795855 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1945391884 RX 53314 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 328410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2545722088 RX 747781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2536353993 RX 53274 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 316826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1958466289 RX 797895 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1948025843 RX 53440 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 329366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2554919799 RX 749701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2545529262 RX 53400 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 317536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1961130252 RX 799959 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1950661264 RX 53569 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 330321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2564120034 RX 751645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2554708037 RX 53529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 660 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 318268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1963794260 RX 801999 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1953295198 RX 53698 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 331277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2573305038 RX 753541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2563871608 RX 53658 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 319006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1966490146 RX 804039 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1955960229 RX 53824 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 332232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2582469722 RX 755461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2573013919 RX 53784 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 319728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 32978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1969187762 RX 806103 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1958628234 RX 53953 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 333186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 30938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2591659652 RX 757405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2582182405 RX 53913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 636 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 320456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1971806522 RX 808143 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1961216196 RX 54082 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 334143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2600855153 RX 759301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2591356447 RX 54042 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 321197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1974506996 RX 810183 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1963885673 RX 54208 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 335097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2610015868 RX 761221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2600494803 RX 54168 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 321960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1977467250 RX 812247 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1966814565 RX 54337 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 336053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2619233512 RX 763165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2609690949 RX 54297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1506 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1390 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 322724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1980379038 RX 814287 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1969694045 RX 54466 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 337009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2628427414 RX 765061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2618863399 RX 54426 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 659 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 323424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1983013478 RX 816327 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1972298800 RX 54592 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 337962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2637571988 RX 766981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2627986169 RX 54552 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 642 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 324148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1985776389 RX 818391 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1975033550 RX 54721 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 338920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2646800406 RX 768925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2637192598 RX 54681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 979 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 324881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1988432324 RX 820431 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1977659603 RX 54850 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 339873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2655992964 RX 770821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2646363718 RX 54810 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 623 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 325606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1991075641 RX 822471 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1980273250 RX 54976 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 340829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2665181023 RX 772741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2655529847 RX 54936 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 326339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1993855155 RX 824535 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1983021293 RX 55105 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 341786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2674364858 RX 774685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2664691751 RX 55065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 327075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1996576830 RX 826575 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1985713000 RX 55234 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 342738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2683532582 RX 776581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2673838094 RX 55194 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 971 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 327817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 33916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 1999336361 RX 828615 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1988441777 RX 55360 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 343695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2692744002 RX 778501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2683027533 RX 55320 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 328568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2002020801 RX 830679 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1991095002 RX 55489 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 344652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2701922590 RX 780445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2692184202 RX 55449 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 329290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2004701465 RX 832719 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1993746705 RX 55618 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 345605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 31978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2711093194 RX 782341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2701333403 RX 55578 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 330030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2007437977 RX 834759 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1996453267 RX 55744 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 346562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2720304422 RX 784261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2710522664 RX 55704 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 330771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2010140188 RX 836823 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 1999124216 RX 55873 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 347518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2729472897 RX 786205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2719669245 RX 55833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 331484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2012800285 RX 838863 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2001755161 RX 56002 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 348471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2738649645 RX 788101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2728824586 RX 55962 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 332233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2015703122 RX 840903 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2004626230 RX 56128 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 349427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2747857069 RX 790021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2738010071 RX 56088 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1539 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 332965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2018468646 RX 842967 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2007362437 RX 56257 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 350383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2757049136 RX 791965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2747180230 RX 56217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 333704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2021174376 RX 845007 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2010037832 RX 56386 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 351337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2766212762 RX 793861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2756322475 RX 56346 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 334434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2023861257 RX 847047 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2012695423 RX 56512 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 352294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2775417846 RX 795781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2765505598 RX 56472 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 335155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2026498777 RX 849111 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2015302656 RX 56641 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 353249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2784621205 RX 797725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2774687004 RX 56601 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 646 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 335885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2029199503 RX 851151 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2017973640 RX 56770 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 354203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2793804607 RX 799621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2783848977 RX 56730 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 336618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 34940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2031915811 RX 853191 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2020659464 RX 56896 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 355161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2803007132 RX 801541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2793029542 RX 56856 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 337359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2034694401 RX 855255 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2023407537 RX 57025 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 356114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2812160823 RX 803485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2802161383 RX 56985 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 963 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 338100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2037445842 RX 857295 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2026127447 RX 57154 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 357069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 32938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2821361442 RX 805381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2811340533 RX 57114 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 338832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2040182094 RX 859335 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2028832502 RX 57280 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 358027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2830557055 RX 807301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2820514192 RX 57240 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 339573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2042969837 RX 861375 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2031587950 RX 57409 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 358992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2839836902 RX 809245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2829771897 RX 57369 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 340304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2045642847 RX 863415 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2034230766 RX 57535 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 359959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2849169821 RX 811141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2839083041 RX 57498 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 682 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 341055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2048321057 RX 865479 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2036877933 RX 57664 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 360926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2858461353 RX 813061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2848352425 RX 57624 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 341811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2051026208 RX 867519 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2039553363 RX 57793 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 361894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2867771383 RX 815005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2857640273 RX 57753 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 342557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2053705186 RX 869559 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2042202117 RX 57919 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 362861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2877104110 RX 816901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2866951229 RX 57882 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 621 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1231 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 343333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2056700763 RX 871623 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2045165160 RX 58048 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 363827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2886415511 RX 818821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2876240427 RX 58008 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1125 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 344074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2059412489 RX 873663 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2047847500 RX 58177 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 364795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2895722814 RX 820765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2885525526 RX 58137 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 344826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2062121528 RX 875703 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2050524937 RX 58303 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 365763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2905038645 RX 822661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2894819614 RX 58266 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 345573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 35964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2064882597 RX 877767 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2053253709 RX 58432 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 366729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2914351327 RX 824581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2904110092 RX 58392 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 346320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2067588551 RX 879807 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2055929104 RX 58561 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 367697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2923678022 RX 826525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2913414539 RX 58521 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 347082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2070334377 RX 881847 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2058643061 RX 58687 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 368664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2932978493 RX 828421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2922693304 RX 58650 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 347837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2073040752 RX 883911 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2061318456 RX 58816 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 369631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 33977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2942279142 RX 830341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2931971758 RX 58776 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 348582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2075763985 RX 885951 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2064010158 RX 58945 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 370599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2951606029 RX 832285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2941276404 RX 58905 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 349333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2078477209 RX 887991 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2066692948 RX 59071 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 371566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2960906500 RX 834181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2950555173 RX 59034 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 350067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2081206057 RX 890055 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2069390608 RX 59200 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 372533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2970213650 RX 836101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2959840142 RX 59160 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 350817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2083916757 RX 892095 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2072070384 RX 59329 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 373501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2979547230 RX 838045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2969151489 RX 59289 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 351572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2086673921 RX 894135 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2074795676 RX 59455 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 374467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2988846102 RX 839941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2978428660 RX 59418 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 352310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2089369066 RX 896199 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2077459731 RX 59584 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 375435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 2998148158 RX 841861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2987708526 RX 59544 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 666 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 353062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 36818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 2092026114 RX 898239 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2080084753 RX 59726 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 376403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 3007481573 RX 843805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 2997019674 RX 59673 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 463 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 353091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: ulsch_rounds 36854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 2092065635 RX 900612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2080116598 RX 60623 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 377368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 3016800095 RX 846015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3006316449 RX 60027 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 353268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: ulsch_rounds 36899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2092423870 RX 902816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2080471390 RX 61357 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 377743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 24 +UE 96c8: ulsch_rounds 34716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3019564353 RX 849538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3009062123 RX 61844 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 354245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 8379: ulsch_rounds 36985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2096982759 RX 904870 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2085018122 RX 61556 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 378466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3022206232 RX 851458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3011672220 RX 61970 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 355223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2105858340 RX 906934 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2093872826 RX 61685 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 379196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3024929473 RX 853402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3014366776 RX 62099 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 356201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2115031752 RX 908998 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2103024770 RX 61814 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 379893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 34956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3027646945 RX 855298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3017056911 RX 62228 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 713 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 357180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2124215134 RX 911014 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2112186161 RX 61940 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 380618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3030333643 RX 857218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3019712965 RX 62354 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 916 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 358158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2133393601 RX 913078 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2121343144 RX 62069 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 381357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3033105000 RX 859162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3022454394 RX 62483 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 359136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2142567205 RX 915142 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2130495264 RX 62198 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 382081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3035867501 RX 861058 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3025187502 RX 62612 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 992 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 360115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2151756923 RX 917158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2139662985 RX 62324 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 382817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3038654323 RX 862978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3027943266 RX 62738 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 361093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2160942110 RX 919222 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2148826678 RX 62453 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 383549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3041390908 RX 864922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3030649698 RX 62867 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 362071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2170102658 RX 921286 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2157965779 RX 62582 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 384261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3044097753 RX 866818 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3033327922 RX 62996 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 363051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2179272534 RX 923302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2167113693 RX 62708 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 384990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3046793458 RX 868738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3035992868 RX 63122 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 688 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 364029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2188465722 RX 925366 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2176285361 RX 62837 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 385699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3049460069 RX 870682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3038629631 RX 63251 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1168 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 365006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 37924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2197637919 RX 927430 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2185436089 RX 62966 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 386433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3052292269 RX 872578 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3041430946 RX 63380 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 365986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2206798897 RX 929446 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2194575124 RX 63092 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 387147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3054983189 RX 874498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3044091401 RX 63506 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 366964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2215979029 RX 931510 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2203733765 RX 63221 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 387873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3057664423 RX 876442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3046742934 RX 63635 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 367942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2225161531 RX 933574 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2212894780 RX 63350 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 388593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3060331918 RX 878338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3049381204 RX 63764 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 368921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2234347406 RX 935590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2222058663 RX 63476 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 389313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 35995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3063004608 RX 880258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3052023424 RX 63890 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 369899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2243520818 RX 937654 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2231210595 RX 63605 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 390034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3065691554 RX 882202 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3054681411 RX 64019 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 370876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2252693015 RX 939718 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2240361322 RX 63734 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 390760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3068385238 RX 884098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3057346317 RX 64148 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 371856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2261889387 RX 941734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2249535682 RX 63860 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 391466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3071066689 RX 886018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3059997905 RX 64274 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 372834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2271056271 RX 943798 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2258681106 RX 63989 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 392200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3073818804 RX 887962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3062719102 RX 64403 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 373812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2280231156 RX 945862 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2267834514 RX 64118 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 392931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3076554477 RX 889858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3065425529 RX 64532 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 374791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2289431176 RX 947878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2277012514 RX 64244 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 393656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3079279331 RX 891778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3068120080 RX 64658 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 375769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2298591724 RX 949942 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2286151611 RX 64373 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 394377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3081981278 RX 893722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3070792000 RX 64787 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 376748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 38948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2307753487 RX 952006 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2295291925 RX 64502 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 395082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3084684650 RX 895618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3073466368 RX 64916 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 377727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2316940451 RX 954022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2304456892 RX 64628 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 395814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3087384689 RX 897538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3076135656 RX 65042 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 378703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2326116680 RX 956086 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2313611649 RX 64757 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 396549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3090096093 RX 899482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3078816884 RX 65171 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1465 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 379683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2335293995 RX 958150 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2322767475 RX 64886 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 397309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3093091133 RX 901378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3081781194 RX 65300 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1101 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 380662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2344468095 RX 960166 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2331919608 RX 65012 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 398034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 36955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3095870128 RX 903298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3084530063 RX 65426 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 381639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2353640292 RX 962230 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2341070323 RX 65141 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 398744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3098543575 RX 905242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3087174732 RX 65555 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 382618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2362835976 RX 964294 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2350244479 RX 65270 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 399475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3101224594 RX 907138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3089826325 RX 65684 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 383597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2372010076 RX 966310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2359396613 RX 65396 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 400187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3103922328 RX 909058 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3092494185 RX 65810 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 384574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2381182081 RX 968374 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2368547153 RX 65525 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 400914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3106636180 RX 911002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3095177881 RX 65939 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 385552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2390367460 RX 970438 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2377711033 RX 65654 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 401635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3109346887 RX 912898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3097857587 RX 66068 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 386531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2399534840 RX 972454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2386856459 RX 65780 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 402358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3112063150 RX 914818 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3100543777 RX 66194 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 387510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2408705693 RX 974518 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2396005838 RX 65909 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 403074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3114785149 RX 916762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3103235379 RX 66323 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 388488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 39972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2417905409 RX 976582 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2405184029 RX 66038 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 403806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3117512811 RX 918658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3105932388 RX 66452 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 389466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2427063765 RX 978598 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2414320455 RX 66164 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 404527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3120224230 RX 920578 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3108612625 RX 66578 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 390446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2436234744 RX 980662 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2423469957 RX 66293 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 405248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3122928297 RX 922522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3111287910 RX 66707 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 391424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2445414684 RX 982726 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2432628411 RX 66422 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 405964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3125569922 RX 924418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3113900981 RX 66836 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 392402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2454601714 RX 984742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2441793444 RX 66548 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 406691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3128286899 RX 926338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3116588117 RX 66962 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 393380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2463772756 RX 986806 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2450943017 RX 66677 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 407436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 37996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3131040989 RX 928282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3119310836 RX 67091 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 394358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2472946168 RX 988870 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2460094952 RX 66806 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 408169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3133734044 RX 930178 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3121974250 RX 67220 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 395337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2482129550 RX 990886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2469256346 RX 66932 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 408909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3136571292 RX 932098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3124779966 RX 67346 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1184 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1448 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 396315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2491308017 RX 992950 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2478413338 RX 67061 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 409657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3139484267 RX 934042 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3127662230 RX 67475 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 397293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2500481621 RX 995014 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2487565467 RX 67190 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 410380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3142243489 RX 935938 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3130391383 RX 67604 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 398272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2509671339 RX 997030 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2496733195 RX 67316 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 411118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3145312179 RX 937858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3133428321 RX 67730 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1736 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 399250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2518856526 RX 999094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2505896889 RX 67445 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 411834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3147963269 RX 939802 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3136048762 RX 67859 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 400228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 40996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2528017074 RX 1001158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2515035985 RX 67574 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 412562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3150654176 RX 941698 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3138709222 RX 67988 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 401208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2537186950 RX 1003174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2524183902 RX 67700 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 413282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3153409829 RX 943618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3141434900 RX 68114 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 402186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2546380138 RX 1005238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2533355571 RX 67829 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 413990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3156142342 RX 945562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3144137872 RX 68243 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 403163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2555552335 RX 1007302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2542506305 RX 67958 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 414739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3158889977 RX 947458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3146855159 RX 68372 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 404143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2564713313 RX 1009318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2551645341 RX 68084 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 415461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3161623818 RX 949378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3149560079 RX 68498 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 405121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2573893445 RX 1011382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2560803981 RX 68213 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 416178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 38956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3164325461 RX 951322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3152231909 RX 68627 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 406099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2583075947 RX 1013446 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2569964993 RX 68342 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 416919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3167011244 RX 953218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3154885460 RX 68756 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 407078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2592261822 RX 1015462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2579128876 RX 68468 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 417651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3169715778 RX 955138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3157560284 RX 68882 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 408056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2601435234 RX 1017526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2588280819 RX 68597 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 418375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3172428892 RX 957082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3160243480 RX 69011 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 409033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2610607431 RX 1019590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2597431543 RX 68726 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 419104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3175165261 RX 958978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3162949882 RX 69140 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 410013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2619803803 RX 1021606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2606605905 RX 68852 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 419832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3177872298 RX 960898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3165628141 RX 69266 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 410991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 41934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2628970687 RX 1023670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2615751325 RX 68981 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 420571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3180620572 RX 962842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3168346384 RX 69395 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 411969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2638145572 RX 1025734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2624904742 RX 69110 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 421341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3183801768 RX 964738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3171494497 RX 69524 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2062 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 666 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 412948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2647345592 RX 1027750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2634082741 RX 69236 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 422055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3186438549 RX 966658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3174100083 RX 69650 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 413926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2656506140 RX 1029814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2643221847 RX 69365 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 422798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3189156174 RX 968602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3176786728 RX 69779 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 414905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2665667903 RX 1031878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2652362154 RX 69494 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 423506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3191889050 RX 970498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3179490612 RX 69908 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 415884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2674854867 RX 1033894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2661527116 RX 69620 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 424248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3194605624 RX 972418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3182176251 RX 70034 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 670 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 416860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2684031096 RX 1035958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2670681872 RX 69749 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 424970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3197291810 RX 974362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3184832245 RX 70163 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 417840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2693208411 RX 1038022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2679837707 RX 69878 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 425677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 39996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3199998225 RX 976258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3187509988 RX 70292 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 418818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2702382015 RX 1040038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2688989832 RX 70004 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 426401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3202685446 RX 978178 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3190167504 RX 70418 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 419796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2711554708 RX 1042102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2698140559 RX 70133 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 427138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3205409247 RX 980122 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3192860603 RX 70547 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 420775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2720750392 RX 1044166 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2707314714 RX 70262 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 427858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3208128392 RX 982018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3195549662 RX 70676 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 421753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2729923996 RX 1046182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2716466841 RX 70388 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 428601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3210833670 RX 983938 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3198224937 RX 70802 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 422731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 42958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2739096497 RX 1048246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2725617383 RX 70517 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 429310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3213457249 RX 985882 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3200818712 RX 70931 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 423709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2748281876 RX 1050310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2734781258 RX 70646 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 430019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3216124667 RX 987778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3203456391 RX 71060 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 424687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2757448760 RX 1052326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2743926684 RX 70772 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 430736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3218789116 RX 989698 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3206090703 RX 71186 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 425667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2766620109 RX 1054390 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2753076068 RX 70901 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 431462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3221455290 RX 991642 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3208727489 RX 71315 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 426645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2775819825 RX 1056454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2762254257 RX 71030 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 432200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3224182822 RX 993538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3211424518 RX 71444 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 427622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2784977685 RX 1058470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2771390680 RX 71156 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 432946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3226987646 RX 995458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3214199593 RX 71570 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 428603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2794149160 RX 1060534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2780540187 RX 71285 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 433680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3229704808 RX 997402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3216886714 RX 71699 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 429581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2803329100 RX 1062598 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2789698641 RX 71414 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 434404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 40956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3232428281 RX 999298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3219581295 RX 71828 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 980 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 430558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2812515634 RX 1064614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2798863679 RX 71540 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 435151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3235176590 RX 1001218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3222299608 RX 71954 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 431537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2821687172 RX 1066678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2808013250 RX 71669 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 435870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3237937054 RX 1003162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3225028220 RX 72083 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 432515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2830860584 RX 1068742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2817165194 RX 71798 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 436606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3240631905 RX 1005058 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3227691624 RX 72212 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 433493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2840043470 RX 1070758 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2826326593 RX 71924 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 437338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3243364226 RX 1006978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3230395077 RX 72338 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 434472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 43982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2849222433 RX 1072822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2835483576 RX 72053 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 438061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3246107582 RX 1008922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3233108408 RX 72467 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 435450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2858396037 RX 1074886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2844635694 RX 72182 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 438783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3248823407 RX 1010818 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3235794488 RX 72596 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 436428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2867585259 RX 1076902 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2853803418 RX 72308 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 439511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3251552416 RX 1012738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3238493505 RX 72722 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 437407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2876770942 RX 1078966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2862967115 RX 72437 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 440237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3254228395 RX 1014682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3241139080 RX 72851 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 438385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2885931490 RX 1081030 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2872106214 RX 72566 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 440966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3257000228 RX 1016578 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3243881075 RX 72980 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 439364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2895100870 RX 1083046 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2881254128 RX 72692 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 441689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3259693908 RX 1018498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3246543032 RX 73106 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 440343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2904294554 RX 1085110 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2890425799 RX 72821 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 442420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3262409802 RX 1020442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3249229642 RX 73235 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 441320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2913466751 RX 1087174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2899576527 RX 72950 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 443163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3265114812 RX 1022338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3251904967 RX 73364 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 442299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2922627233 RX 1089190 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2908715559 RX 73076 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 443893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 41995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3267817601 RX 1024258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3254576257 RX 73490 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 443278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2931807861 RX 1091254 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2917874203 RX 73205 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 444619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3270624239 RX 1026202 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3257351817 RX 73619 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1131 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 444256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2940990363 RX 1093318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2927035215 RX 73334 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 445338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3273352333 RX 1028098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3260049803 RX 73748 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 445234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 44921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2950175742 RX 1095334 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2936199098 RX 73460 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 446085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3276070254 RX 1030018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3262736939 RX 73874 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 446213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2959349650 RX 1097398 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2945351039 RX 73589 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 446823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3278833599 RX 1031962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3265469581 RX 74003 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 986 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 447190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2968521847 RX 1099462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2954501769 RX 73718 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 447552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3281548812 RX 1033858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3268154279 RX 74132 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 448169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2977717723 RX 1101478 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2963676122 RX 73844 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 448269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3284284671 RX 1035778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3270860215 RX 74258 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 449148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2986885103 RX 1103542 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2972821541 RX 73973 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 449003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3286997972 RX 1037722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3273543381 RX 74387 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 450126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 2996059988 RX 1105606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2981974950 RX 74102 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 449761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3290096132 RX 1039618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3276609929 RX 74516 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 451104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3005259512 RX 1107622 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 2991152942 RX 74228 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 450483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3292746187 RX 1041538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3279230410 RX 74642 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 452083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3014420556 RX 1109686 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3000292053 RX 74357 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 451215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3295470836 RX 1043482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3281924956 RX 74771 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 453062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3023582319 RX 1111750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3009432362 RX 74486 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 451940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3298142040 RX 1045378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3284566150 RX 74900 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 454040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3032768787 RX 1113766 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3018597325 RX 74612 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 452653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 42955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3300838664 RX 1047298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3287234040 RX 75026 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 455017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3041945512 RX 1115830 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3027752077 RX 74741 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 453382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3303549385 RX 1049242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3289913776 RX 75155 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 455997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3051122827 RX 1117894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3036907907 RX 74870 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 454099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3306249915 RX 1051138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3292584660 RX 75284 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 456975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 45945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3060296431 RX 1119910 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3046060038 RX 74996 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 454815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3308939927 RX 1053058 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3295246146 RX 75410 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 457953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3069469124 RX 1121974 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3055210771 RX 75125 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 455547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3311671169 RX 1055002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3297948142 RX 75539 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 458932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3078664808 RX 1124038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3064384929 RX 75254 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 456288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3314480369 RX 1056898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3300727197 RX 75668 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 459910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3087838412 RX 1126054 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3073537056 RX 75380 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 456996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3317188821 RX 1058818 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3303405451 RX 75794 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 460888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3097010913 RX 1128118 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3082687596 RX 75509 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 457731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3319937740 RX 1060762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3306124230 RX 75923 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 461866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3106196292 RX 1130182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3091851478 RX 75638 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 458486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3322854279 RX 1062658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3309010950 RX 76052 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1459 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 462844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3115363176 RX 1132198 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3100996897 RX 75764 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 459221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3325617777 RX 1064578 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3311744554 RX 76178 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 463824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3124534525 RX 1134262 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3110146288 RX 75893 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 459957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3328297390 RX 1066522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3314394685 RX 76307 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 464802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3133734241 RX 1136326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3119324470 RX 76022 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 460701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3331368017 RX 1068418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3317434577 RX 76436 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 465779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3142892101 RX 1138342 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3128460888 RX 76148 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 461430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3334078273 RX 1070338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3320114278 RX 76562 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 466760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3152063576 RX 1140406 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3137610397 RX 76277 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 462145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 43996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3336775051 RX 1072282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3322782163 RX 76691 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 467738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3161243516 RX 1142470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3146768851 RX 76406 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 462875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3339512361 RX 1074178 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3325488545 RX 76820 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 468715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 46969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3170430050 RX 1144486 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3155933889 RX 76532 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 463602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3342275796 RX 1076098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3328221698 RX 76946 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 935 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 469694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3179601588 RX 1146550 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3165083462 RX 76661 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 464332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3345004437 RX 1078042 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3330919218 RX 77075 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 470672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3188775000 RX 1148614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3174235403 RX 76790 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 465058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3347761685 RX 1079938 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3333646353 RX 77204 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 471650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3197957886 RX 1150630 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3183396794 RX 76916 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 465797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3350502106 RX 1081858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3336355263 RX 77330 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 472629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3207136849 RX 1152694 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3192553781 RX 77045 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 466535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3353241179 RX 1083802 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3339063162 RX 77459 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 473607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3216310453 RX 1154758 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3201705904 RX 77174 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 467262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3355947761 RX 1085698 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3341739954 RX 77588 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1067 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 474585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3225499675 RX 1156774 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3210873627 RX 77300 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 467998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3358752506 RX 1087618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3344515034 RX 77714 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 475564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3234685358 RX 1158838 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3220037315 RX 77429 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 468743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3361506022 RX 1089562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3347237753 RX 77843 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 948 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 476542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47652/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3243845906 RX 1160902 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3229176410 RX 77558 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 469465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3364249418 RX 1091458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3349951079 RX 77972 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 477521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3253015286 RX 1162918 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3238324314 RX 77684 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 470205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3366935513 RX 1093378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3352606067 RX 78098 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 478500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3262208970 RX 1164982 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3247495986 RX 77813 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 470949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 44956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3370006165 RX 1095322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3355647521 RX 78227 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 479477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3271381167 RX 1167046 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3256646714 RX 77942 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 471671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3372754619 RX 1097218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3358364332 RX 78356 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 962 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 480456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 47993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3280541649 RX 1169062 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3265785752 RX 78068 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 472399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3375460831 RX 1099138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3361039587 RX 78482 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 481434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3289721781 RX 1171126 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3274944398 RX 78197 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 473118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3378128457 RX 1101082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3363677867 RX 78611 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 482413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3298904779 RX 1173190 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3284105410 RX 78326 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 473835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3380848879 RX 1102978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3366367972 RX 78740 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 483391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3308090158 RX 1175206 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3293269288 RX 78452 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 474581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3383593788 RX 1104898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3369081799 RX 78866 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 484369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3317263570 RX 1177270 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3302421225 RX 78581 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 475304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3386348990 RX 1106842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3371807542 RX 78995 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 485347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3326436263 RX 1179334 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3311571957 RX 78710 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 476029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3389097056 RX 1108738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3374524363 RX 79124 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 486326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3335632139 RX 1181350 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3320746314 RX 78836 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 476734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3391732428 RX 1110658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3377130970 RX 79250 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 487304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3344799023 RX 1183414 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3329891733 RX 78965 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 477478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3394499812 RX 1112602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3379867503 RX 79379 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 488283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3353974404 RX 1185478 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3339045139 RX 79094 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 478200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3397186068 RX 1114498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3382523522 RX 79508 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 489261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3363173928 RX 1187494 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3348223132 RX 79220 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 478924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3399921584 RX 1116418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3385229503 RX 79634 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1032 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 490239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3372334476 RX 1189558 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3357362236 RX 79349 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 479665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3402688751 RX 1118362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3387967082 RX 79763 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 491219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 48932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3381496735 RX 1191622 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3366502554 RX 79478 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 480393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 45996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 3405396176 RX 1120258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3390644395 RX 79892 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 492194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3390651712 RX 1193638 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3375636108 RX 79604 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 480966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 96c8: ulsch_rounds 46075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 3407528596 RX 1122626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3392750758 RX 80598 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 281 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 493169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3399817444 RX 1195888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3384780381 RX 79961 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 480982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: ulsch_rounds 46096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 3407534335 RX 1124453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3392751172 RX 80887 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 493572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3401835921 RX 1199609 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3386775003 RX 81794 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 481371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: ulsch_rounds 46160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3408642101 RX 1126928 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3393853991 RX 81724 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 494323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3404443304 RX 1201673 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3389351084 RX 81923 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 482335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 96c8: ulsch_rounds 46241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3414784656 RX 1128848 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3399981236 RX 81853 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 495070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3407136585 RX 1203713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3392014588 RX 82052 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 483302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3424078115 RX 1130768 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3409253015 RX 81979 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 495820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3409871864 RX 1205753 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3394718161 RX 82178 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 484270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3433379260 RX 1132712 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3418531466 RX 82108 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 496576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3412560120 RX 1207817 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3397374360 RX 82307 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 485237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3442705651 RX 1134724 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3427836110 RX 82237 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 497309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3415272134 RX 1209857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3400057160 RX 82436 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 486204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3452006122 RX 1136644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3437114875 RX 82363 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 498063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3417986106 RX 1211897 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3402738428 RX 82562 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 487172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3461313795 RX 1138588 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3446399851 RX 82492 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 498819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3420698671 RX 1213961 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3405419791 RX 82691 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 488139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3470646906 RX 1140484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3455711204 RX 82621 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 499586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3423450727 RX 1216001 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3408141158 RX 82820 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 489105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3479945778 RX 1142404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3464988381 RX 82747 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 647 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 500346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 49973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3426125329 RX 1218041 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3410782482 RX 82946 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 490073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3489247807 RX 1144348 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3474268239 RX 82876 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 501098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3428831185 RX 1220105 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3413457957 RX 83075 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 491041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 46962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3498581195 RX 1146244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3483579393 RX 83005 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 501859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3431548479 RX 1222145 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3416144797 RX 83204 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 492006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3507899717 RX 1148164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3492876179 RX 83131 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 502627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3434290841 RX 1224185 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3418854759 RX 83330 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 492974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3517213740 RX 1150108 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3502167982 RX 83260 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 634 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 503363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3436961543 RX 1226249 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3421495482 RX 83459 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 493942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3526513042 RX 1152004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3511445095 RX 83389 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1004 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 504150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3440028127 RX 1228289 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3424528615 RX 83588 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 494908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3535827724 RX 1153924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3520738053 RX 83515 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1316 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 504900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3442669673 RX 1230329 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3427138827 RX 83714 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 495876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3545154611 RX 1155868 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3530042692 RX 83644 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 663 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 505661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3445375789 RX 1232393 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3429814217 RX 83843 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 496844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3554448666 RX 1157764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3539314569 RX 83773 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 506403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3448067345 RX 1234433 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3432474847 RX 83972 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 497810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3563755731 RX 1159684 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3548599927 RX 83899 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 507149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3450775529 RX 1236473 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3435153231 RX 84098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 498778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3573082426 RX 1161628 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3557904378 RX 84028 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 507897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3453490851 RX 1238537 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3437837518 RX 84227 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 499746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3582376865 RX 1163524 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3567176637 RX 84157 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 508647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3456272732 RX 1240577 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3440588605 RX 84356 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 500712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3591690074 RX 1165444 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3576468126 RX 84283 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 509392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 50997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3459022043 RX 1242617 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3443307018 RX 84482 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 501680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3601023462 RX 1167388 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3585779277 RX 84412 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 510141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3461728496 RX 1244681 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3445982418 RX 84611 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 502646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 47922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3610320499 RX 1169284 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3595054165 RX 84541 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 510891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3464395671 RX 1246721 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3448619356 RX 84740 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 503614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3619631083 RX 1171204 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3604343030 RX 84667 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 663 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 702 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 511644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3467071553 RX 1248761 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3451265116 RX 84866 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 504582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3628951634 RX 1173148 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3613641349 RX 84796 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 512405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3469809645 RX 1250825 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3453970176 RX 84995 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 505548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3638270460 RX 1175044 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3622937945 RX 84925 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 513145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3472493203 RX 1252865 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3456623366 RX 85124 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 506515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3647590323 RX 1176964 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3632236070 RX 85051 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 641 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 513881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3475167481 RX 1254905 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3459267649 RX 85250 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 507483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3656897818 RX 1178908 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3641521360 RX 85180 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1016 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 514630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3477989778 RX 1256969 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3462057163 RX 85379 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 508450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3666198467 RX 1180804 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3650799825 RX 85309 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1220 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 515383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3480818979 RX 1259009 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3464854197 RX 85508 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 509417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3675525050 RX 1182724 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3660104652 RX 85435 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 516141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3483541807 RX 1261049 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3467544422 RX 85634 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 510385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3684825633 RX 1184668 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3669383039 RX 85564 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 679 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 516883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3486204447 RX 1263113 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3470176884 RX 85763 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 511352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3694126474 RX 1186564 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3678661685 RX 85693 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1366 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 517657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 51937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3489128165 RX 1265153 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3473068681 RX 85892 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 512319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3703459393 RX 1188484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3687972845 RX 85819 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 683 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 518398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3491790002 RX 1267193 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3475701018 RX 86018 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 513286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3712750925 RX 1190428 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3697242231 RX 85948 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 655 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 519130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3494494014 RX 1269257 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3478373464 RX 86147 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 514254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3722060955 RX 1192324 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3706530079 RX 86077 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 519879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3497214514 RX 1271297 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3481063749 RX 86276 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 515221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 48961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3731393682 RX 1194244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3715841041 RX 86203 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 520632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3499925694 RX 1273337 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3483743610 RX 86402 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 516187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3740705083 RX 1196188 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3725130232 RX 86332 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 521409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3502851203 RX 1275401 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3486636879 RX 86531 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 517155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3750012386 RX 1198084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3734415329 RX 86461 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1414 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 642 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 522147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3505522809 RX 1277441 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3489278163 RX 86660 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 518123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3759328217 RX 1200004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3743709429 RX 86587 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 678 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 522901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3508222625 RX 1279481 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3491946143 RX 86786 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 519089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3768640899 RX 1201948 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3752999898 RX 86716 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 635 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 523660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3510887359 RX 1281545 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3494580067 RX 86915 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 520057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3777967594 RX 1203844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3762304340 RX 86845 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 524409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3513588348 RX 1283585 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3497250996 RX 87044 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 521024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3787268065 RX 1205764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3771583100 RX 86971 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 525166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3516273838 RX 1285625 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3499904191 RX 87170 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 521991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3796568714 RX 1207708 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3780861553 RX 87100 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 525923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3519000098 RX 1287689 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3502598837 RX 87299 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 522959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3805895601 RX 1209604 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3790166194 RX 87229 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1006 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 526673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 52961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3521813218 RX 1289729 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3505380956 RX 87428 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 523926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3815196072 RX 1211524 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3799444968 RX 87355 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 527419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3524531789 RX 1291769 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3508068252 RX 87554 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 524893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3824503222 RX 1213468 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3808729939 RX 87484 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 528196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3527486141 RX 1293833 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3510991156 RX 87683 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 525861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3833836802 RX 1215364 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3818041285 RX 87613 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1213 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 528949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3530230280 RX 1295873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3513703566 RX 87812 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 526827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 49921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3843135674 RX 1217284 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3827318461 RX 87739 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 529690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3532914922 RX 1297913 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3516356721 RX 87938 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 527795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3852437730 RX 1219228 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3836598324 RX 87868 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 611 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 530443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3535662952 RX 1299977 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3519073602 RX 88067 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 528763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3861771145 RX 1221124 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3845909485 RX 87997 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 531209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3538320199 RX 1302017 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3521699640 RX 88196 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 529728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3871089667 RX 1223044 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3855206272 RX 88123 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 621 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 531954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3541034700 RX 1304057 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3524382951 RX 88322 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 530695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3880403194 RX 1224988 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3864498074 RX 88252 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1443 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 532737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3543984633 RX 1306121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3527299922 RX 88451 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 531664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3889702992 RX 1226884 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3873775182 RX 88381 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 533478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3546644372 RX 1308161 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3529929435 RX 88580 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 532630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3899017674 RX 1228804 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3883068141 RX 88507 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 534217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3549342940 RX 1310201 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3532597455 RX 88706 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 533597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3908344065 RX 1230748 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3892372781 RX 88636 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 534964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3552035193 RX 1312265 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3535258035 RX 88835 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 534566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3917638616 RX 1232644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3901644665 RX 88765 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 600 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 535714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 53985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3554705923 RX 1314305 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3537897842 RX 88964 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 535532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3926945681 RX 1234564 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3910930019 RX 88891 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 536478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3557431985 RX 1316345 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3540592543 RX 89090 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 536499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3936271880 RX 1236508 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3920234468 RX 89020 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 537227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3560135082 RX 1318409 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3543264964 RX 89219 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 537468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3945566761 RX 1238404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3929506732 RX 89149 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 641 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 537979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3562818625 RX 1320449 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3545916647 RX 89348 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 538434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3954879970 RX 1240324 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3938798220 RX 89275 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 538733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3565598535 RX 1322489 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3548666162 RX 89474 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 539401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 50962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3964212889 RX 1242268 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3948109368 RX 89404 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 539480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3568269766 RX 1324553 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3551306009 RX 89603 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 540368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3973510449 RX 1244164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3957384256 RX 89533 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 678 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 540239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3570972224 RX 1326593 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3553976983 RX 89732 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 541336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3982821033 RX 1246084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3966673111 RX 89659 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 541002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3573692436 RX 1328633 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3556665706 RX 89858 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 542303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 3992141088 RX 1248028 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3975971430 RX 89788 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 541750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3576414484 RX 1330697 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3559355971 RX 89987 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 543270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4001460410 RX 1249924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3985268038 RX 89917 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 542517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3579120609 RX 1332737 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3562031391 RX 90116 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 544237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4010780273 RX 1251844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 3994566164 RX 90043 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 543276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3581817493 RX 1334777 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3564696417 RX 90242 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 545204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4020087272 RX 1253788 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4003851442 RX 90172 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 625 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 544029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 54923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3584462328 RX 1336841 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3567309593 RX 90371 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 546172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4029388417 RX 1255684 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4013129907 RX 90301 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 688 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 544792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3587166766 RX 1338881 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3569981999 RX 90500 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 547139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4038715000 RX 1257604 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4022434736 RX 90427 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 545549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3589858156 RX 1340921 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3572642574 RX 90626 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 548106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4048015087 RX 1259548 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4031713118 RX 90556 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 546303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3592588710 RX 1342985 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3575340199 RX 90755 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 549074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4057316370 RX 1261444 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4040991775 RX 90685 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 547033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3595291775 RX 1345025 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3578012650 RX 90884 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 550041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4066649289 RX 1263480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4050302918 RX 90811 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 655 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 547775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3597981523 RX 1347065 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3580671773 RX 91010 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 551007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 51923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4075940352 RX 1265424 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4059572306 RX 90940 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 643 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 548529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3600651859 RX 1349129 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3583310108 RX 91139 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 551976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4085250905 RX 1267320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4068860158 RX 91069 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 639 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 549277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3603322361 RX 1351169 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3585949945 RX 91268 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 552943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4094583632 RX 1269240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4078171127 RX 91195 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 550044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3606037666 RX 1353209 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3588633786 RX 91394 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 553908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4103894537 RX 1271184 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4087460307 RX 91324 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1144 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 550854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3609322062 RX 1355273 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3591884853 RX 91523 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 554876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4113201840 RX 1273080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4096745404 RX 91453 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 551585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3611977555 RX 1357313 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3594509850 RX 91652 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 555845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4122518167 RX 1275000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4106039512 RX 91579 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 674 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 552351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3614705047 RX 1359353 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3597206083 RX 91778 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 556810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4131830353 RX 1276944 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4115329973 RX 91708 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 553089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 55947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3617408578 RX 1361417 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3599877007 RX 91907 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 557778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4141157048 RX 1278840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4124634424 RX 91837 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 553838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3620160754 RX 1363457 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3602598334 RX 92036 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 558746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4150458015 RX 1280760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4133913197 RX 91963 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 554604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3622891153 RX 1365497 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3605297476 RX 92162 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 559712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4159758168 RX 1282704 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4143191651 RX 92092 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 555376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3626004130 RX 1367561 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3608379029 RX 92291 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 560680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4169085028 RX 1284600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4152496298 RX 92221 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1655 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 556119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3628649799 RX 1369601 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3610993652 RX 92420 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 561648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4178385968 RX 1286520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4161775072 RX 92347 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 672 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 556875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3631344452 RX 1371641 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3613657221 RX 92546 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 562614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4187692649 RX 1288464 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4171060041 RX 92476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 557632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3634070515 RX 1373705 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3616351917 RX 92675 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 563582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 52963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4197026256 RX 1290360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4180371391 RX 92605 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 558386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3636777195 RX 1375745 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3619027297 RX 92804 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 564549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4206325624 RX 1292280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4189648576 RX 92731 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 652 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 559144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3639442655 RX 1377785 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3621661231 RX 92930 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 565516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4215627184 RX 1294224 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4198928428 RX 92860 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 559902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3642165927 RX 1379849 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3624352963 RX 93059 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 566484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4224960599 RX 1296120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4208239581 RX 92989 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 560644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3644857813 RX 1381889 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3627012046 RX 93188 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 567450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4234279617 RX 1298040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4217536379 RX 93115 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 561388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3647608891 RX 1383929 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3629729928 RX 93314 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 568417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4243593144 RX 1299984 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4226828168 RX 93244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 924 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 562155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 56971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3650458395 RX 1385993 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3632548151 RX 93443 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 569385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4252892446 RX 1301880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4236105282 RX 93373 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1104 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 562921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3653218528 RX 1388033 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3635276958 RX 93572 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 570352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4262207624 RX 1303800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4245398240 RX 93499 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 563668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3655894206 RX 1390073 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3637922738 RX 93698 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 571319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4271534015 RX 1305744 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4254702879 RX 93628 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 652 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 564412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3658563855 RX 1392137 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3640562620 RX 93827 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 572287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4280828043 RX 1307640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4263974751 RX 93757 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 565161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3661254707 RX 1394177 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3643223220 RX 93956 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 573254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4290135577 RX 1309560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4273260112 RX 93883 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 565924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3663944041 RX 1396217 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3645879384 RX 94082 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 574221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4299461776 RX 1311504 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4282564555 RX 94012 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 566695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3667007202 RX 1398281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3648910564 RX 94211 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 575189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 53923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4308756215 RX 1313400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4291836808 RX 94141 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 558 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 567437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3669695018 RX 1400321 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3651568225 RX 94340 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 576156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4318069920 RX 1315320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4301128289 RX 94267 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 568199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3672389633 RX 1402361 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3654231794 RX 94466 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 577123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4327402839 RX 1317264 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4310439434 RX 94396 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 608 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 568954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3675061958 RX 1404425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3656873118 RX 94595 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 578089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4336699903 RX 1319160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4319714322 RX 94525 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 569717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3677765418 RX 1406465 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3659544112 RX 94724 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 579058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4346010983 RX 1321080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4329003182 RX 94651 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 570468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3680407633 RX 1408505 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3662155816 RX 94850 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 580025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4355331038 RX 1323024 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4338301499 RX 94780 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 618 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 671 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 571208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 57995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3683075033 RX 1410569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3664792674 RX 94979 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 580991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4364649864 RX 1324920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4347598108 RX 94909 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 571974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3685796080 RX 1412609 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3667482974 RX 95108 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 581959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4373970223 RX 1326840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4356896235 RX 95035 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 572738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3688518762 RX 1414649 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3670174215 RX 95234 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 582926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4383277222 RX 1328784 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4366181526 RX 95164 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 573501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3691294762 RX 1416713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3672918283 RX 95363 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 583893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4392577844 RX 1330680 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4375459983 RX 95293 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 574264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3694113081 RX 1418753 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3675704798 RX 95492 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 584861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4401904896 RX 1332600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4384764813 RX 95419 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1081 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 575022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3696842882 RX 1420793 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3678403910 RX 95618 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 585828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4411204983 RX 1334544 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4394043193 RX 95548 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 659 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 575764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3699549516 RX 1422857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3681079310 RX 95747 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 586795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4420505824 RX 1336440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4403321847 RX 95677 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 576510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3702232749 RX 1424897 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3683732445 RX 95876 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 587763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 54962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4429839239 RX 1338360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4412632996 RX 95803 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 577283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3705325163 RX 1426937 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3686794752 RX 96002 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 588729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4439130302 RX 1340304 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4421902372 RX 95932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 578013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3707959583 RX 1429001 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3689398981 RX 96131 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 589697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4448440359 RX 1342200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4431190220 RX 96061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 638 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 578768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3710683852 RX 1431041 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3692092190 RX 96260 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 590665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4457773582 RX 1344120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4440501190 RX 96187 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 579515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 58933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3713442233 RX 1433081 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3694818023 RX 96386 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 591630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4467084487 RX 1346064 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4449790387 RX 96316 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 547 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 580245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3716059816 RX 1435145 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3697405449 RX 96515 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 592597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4476391294 RX 1347960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4459075479 RX 96445 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 580989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3718723132 RX 1437185 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3700038297 RX 96644 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 593567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4485708117 RX 1349880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4468369578 RX 96571 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 563 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 581751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3721453852 RX 1439225 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3702737454 RX 96770 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 594532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4495020303 RX 1351824 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4477660037 RX 96700 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 582497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3724136484 RX 1441289 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3705389107 RX 96899 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 595499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4504346502 RX 1353720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4486964482 RX 96829 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 601 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 583229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3726812459 RX 1443329 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3708034887 RX 97028 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 596468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4513647911 RX 1355640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4496243260 RX 96955 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 584006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3729940461 RX 1445369 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3711129793 RX 97154 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 597434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4522948064 RX 1357584 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4505521711 RX 97084 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1888 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 649 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 584748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3732616779 RX 1447433 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3713775563 RX 97283 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 598401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4532274455 RX 1359596 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4514826348 RX 97213 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 585501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3735337671 RX 1449473 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3716464311 RX 97412 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 599370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 55923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4541575918 RX 1361516 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4524105128 RX 97339 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 586263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3738132325 RX 1451513 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3719227224 RX 97538 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 600336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4550882599 RX 1363460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4533390096 RX 97468 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1015 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 587013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3740881380 RX 1453577 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3721945602 RX 97667 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 601303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4560215710 RX 1365356 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4542701438 RX 97597 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 587764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3743568732 RX 1455617 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3724601741 RX 97796 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 602271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4569515574 RX 1367276 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4551978615 RX 97723 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 700 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 588504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 59957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3746256407 RX 1457657 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3727259372 RX 97922 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 603238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4578817134 RX 1369220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4561258458 RX 97852 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 683 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 589240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3748906209 RX 1459721 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3729879933 RX 98051 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 604205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4588150053 RX 1371116 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4570569609 RX 97981 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 665 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 590002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3751640605 RX 1461761 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3732582059 RX 98180 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 605172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4597469567 RX 1373036 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4579866404 RX 98107 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 590746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3754298747 RX 1463865 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3735208060 RX 98370 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 606139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4606783094 RX 1374980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4589158205 RX 98236 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 643 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 591493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3756986838 RX 1465929 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3737864600 RX 98499 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 607106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4616081900 RX 1376876 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4598435313 RX 98365 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 592261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3759679396 RX 1467993 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3740525240 RX 98628 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 608074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4625397520 RX 1378796 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4607728273 RX 98491 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 593009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3762393688 RX 1470009 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3743208070 RX 98754 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 609041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4634723911 RX 1380740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4617032907 RX 98620 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 593755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3765129282 RX 1472073 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3745913090 RX 98883 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 610008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4644017470 RX 1382636 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4626304782 RX 98749 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 594512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3767799909 RX 1474137 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3748551480 RX 99012 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 610976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4653325527 RX 1384556 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4635590150 RX 98875 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 595276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3770545344 RX 1476153 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3751266879 RX 99138 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 611943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 56964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4662651726 RX 1386500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4644894598 RX 99004 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 596038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3773238313 RX 1478217 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3753928951 RX 99267 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 612910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4671945669 RX 1388396 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4654166850 RX 99133 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 596782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3775937414 RX 1480281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3756596931 RX 99396 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 613878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4681259870 RX 1390316 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4663458334 RX 99259 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 597533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 60984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3778675161 RX 1482297 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3759303398 RX 99522 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 614845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4690592789 RX 1392260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4672769490 RX 99388 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 598295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3781446236 RX 1484361 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3762043555 RX 99651 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 615810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4699889357 RX 1394156 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4682044371 RX 99517 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 969 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 599054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3784176374 RX 1486425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3764741706 RX 99780 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 616779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4709200437 RX 1396076 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4691333238 RX 99643 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 659 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 599793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3786814669 RX 1488441 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3767348929 RX 99906 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 617747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4718520988 RX 1398020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4700631561 RX 99772 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 559 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 600504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 3789338514 RX 1490692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3769843595 RX 100236 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 618712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 4727839318 RX 1399916 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4709928162 RX 99901 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 81 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 600524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: ulsch_rounds 61357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 3789347158 RX 1492873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3769844250 RX 100932 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 619677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 4737128159 RX 1402060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4719194858 RX 100252 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 600783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: ulsch_rounds 61411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 3789931946 RX 1495155 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3770424701 RX 101688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 620058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 96c8: ulsch_rounds 57698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4739498605 RX 1405610 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4721542133 RX 102067 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 601761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 8379: ulsch_rounds 61499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3795047931 RX 1497281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3775527402 RX 101887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 620785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4742188294 RX 1407554 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4724202598 RX 102196 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 602740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3804091838 RX 1499345 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3784549616 RX 102016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 621513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4744885924 RX 1409450 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4726869962 RX 102325 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 603717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3813264035 RX 1501409 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3793700339 RX 102145 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 622249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 57938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4747611523 RX 1411370 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4729565019 RX 102451 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 604696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3822459911 RX 1503425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3802874689 RX 102271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 622985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4750335335 RX 1413314 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4732259535 RX 102580 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 605675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3831627291 RX 1505489 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3812020112 RX 102400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 623711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4753037392 RX 1415210 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4734931841 RX 102709 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 606653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 61926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3840802176 RX 1507553 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3821173522 RX 102529 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 624478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4756015327 RX 1417130 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4737878387 RX 102835 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1509 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 607631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3850001700 RX 1509569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3830351518 RX 102655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 625218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4758778803 RX 1419074 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4740611505 RX 102964 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 608610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3859162744 RX 1511633 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3839490615 RX 102784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 625936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4761453312 RX 1421064 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4743256642 RX 103157 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 609589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3868324507 RX 1513697 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3848630930 RX 102913 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 626682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4764187560 RX 1422960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4745959114 RX 103286 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 610567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3877510975 RX 1515713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3857795887 RX 103039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 627424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4766894190 RX 1424880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4748635921 RX 103412 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 611544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3886687700 RX 1517777 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3866950647 RX 103168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 628171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4769564721 RX 1426824 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4751275603 RX 103541 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 612524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3895865015 RX 1519841 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3876106474 RX 103297 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 628917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4772320200 RX 1428720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4754000795 RX 103670 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 613502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3905038619 RX 1521857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3885258611 RX 103423 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 629651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4775058470 RX 1430640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4756710727 RX 103796 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 614480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3914211312 RX 1523921 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3894409339 RX 103552 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 630412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4777787610 RX 1432584 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4759409729 RX 103925 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 615459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3923406996 RX 1525985 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3903583495 RX 103681 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 631148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4780474577 RX 1434480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4762067215 RX 104054 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 616437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3932580600 RX 1528001 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3912735627 RX 103807 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 631877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 58980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4783157475 RX 1436400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4764721266 RX 104180 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 617415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3941753101 RX 1530065 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3921886165 RX 103936 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 632620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4785882169 RX 1438344 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4767415782 RX 104309 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 618393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 62950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3950938480 RX 1532129 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3931050044 RX 104065 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 633350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4788568282 RX 1440240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4770071826 RX 104438 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 633 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 619371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3960105364 RX 1534145 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3940195464 RX 104191 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 634072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4791204201 RX 1442160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4772677938 RX 104564 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 620351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3969276713 RX 1536209 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3949344853 RX 104320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 634813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4793998289 RX 1444104 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4775442163 RX 104693 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1070 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 621329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3978476429 RX 1538273 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3958523038 RX 104449 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 635537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4796729940 RX 1446000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4778143623 RX 104822 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 622306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3987634289 RX 1540289 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3967659455 RX 104575 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 636266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4799448776 RX 1447920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4780832732 RX 104948 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 623287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 3996805764 RX 1542353 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3976808959 RX 104704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 636975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4802136820 RX 1449864 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4783491725 RX 105077 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 624265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4005985704 RX 1544417 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3985967411 RX 104833 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 637707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4804846448 RX 1451760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4786171476 RX 105206 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 625242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4015172238 RX 1546433 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 3995132449 RX 104959 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 638428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4807547691 RX 1453680 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4788842370 RX 105332 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 943 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 626221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4024343776 RX 1548497 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4004282028 RX 105088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 639171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4810302939 RX 1455624 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4791568053 RX 105461 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 898 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 627199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4033517188 RX 1550561 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4013433964 RX 105217 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 639910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4813044675 RX 1457520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4794278926 RX 105590 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1151 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 628177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4042700074 RX 1552577 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4022595352 RX 105343 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 640648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 59940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4815833600 RX 1459440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4797038174 RX 105716 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 629156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4051879037 RX 1554641 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4031752338 RX 105472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 641375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4818530015 RX 1461384 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4799705078 RX 105845 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 630134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 63974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4061052641 RX 1556705 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4040904466 RX 105601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 642111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4821250790 RX 1463280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4802396720 RX 105974 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1598 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 631112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4070241863 RX 1558721 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4050072184 RX 105727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 642887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4824232490 RX 1465200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4805347757 RX 106100 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 632091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4079427546 RX 1560785 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4059235880 RX 105856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 643607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4826918414 RX 1467144 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4808003781 RX 106229 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 633069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4088588094 RX 1562849 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4068374974 RX 105985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 644350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4829624570 RX 1469040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4810679041 RX 106358 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 634048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4097757474 RX 1564865 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4077522885 RX 106111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 645105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4832392130 RX 1470960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4813416590 RX 106484 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 635027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4106951158 RX 1566929 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4086694557 RX 106240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 645840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4835197943 RX 1472904 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4816192691 RX 106613 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 961 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 636004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4116123355 RX 1568993 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4095845291 RX 106369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 646565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4837879720 RX 1474800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4818843748 RX 106742 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 636983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4125283837 RX 1571009 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4104984326 RX 106495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 647292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4840634866 RX 1476720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4821569426 RX 106868 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 637961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4134463969 RX 1573073 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4114142967 RX 106624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 648020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4843297653 RX 1478664 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4824202194 RX 106997 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 638940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4143646967 RX 1575137 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4123303982 RX 106753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 648770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4846029282 RX 1480560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4826902643 RX 107126 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 639918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4152832346 RX 1577153 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4132467860 RX 106879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 649510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4848755526 RX 1482480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4829598696 RX 107252 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 640896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4162005758 RX 1579217 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4141619800 RX 107008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 650251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 60981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4851458366 RX 1484424 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4832270987 RX 107381 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 641874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 64998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4171178451 RX 1581281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4150770525 RX 107137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 651005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4854167886 RX 1486320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4834949246 RX 107510 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 642853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4180374327 RX 1583297 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4159944882 RX 107263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 651771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4856959887 RX 1488240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4837709966 RX 107636 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1054 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 643831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4189541211 RX 1585361 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4169090304 RX 107392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 652512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4859665139 RX 1490184 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4840385271 RX 107765 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 644810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4198716592 RX 1587425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4178243709 RX 107521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 653257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4862347800 RX 1492080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4843037290 RX 107894 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 645788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4207916116 RX 1589441 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4187421700 RX 107647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 653994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4865076786 RX 1494000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4845735806 RX 108020 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 646766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4217076664 RX 1591505 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4196560796 RX 107776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 654725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4867808404 RX 1495944 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4848438263 RX 108149 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 647746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4226238923 RX 1593569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4205701110 RX 107905 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 655465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4870656894 RX 1497840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4851255840 RX 108278 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2062 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 648724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4235425391 RX 1595585 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4214866082 RX 108031 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 656210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4873668684 RX 1499760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4854237919 RX 108404 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 649700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4244601620 RX 1597649 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4224020838 RX 108160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 656957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4876384746 RX 1501704 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4856925115 RX 108533 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 650681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4253779431 RX 1599713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4233176664 RX 108289 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 657694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4879141356 RX 1503600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4859650763 RX 108662 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 651659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4262953035 RX 1601729 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4242328790 RX 108415 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 658440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4881882888 RX 1505520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4862362612 RX 108788 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 935 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 652636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 65936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4272125232 RX 1603793 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4251479526 RX 108544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 659184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 61941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4884597260 RX 1507464 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4865046769 RX 108917 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 653616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4281321412 RX 1605857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4260653688 RX 108673 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 659930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4887316619 RX 1509360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4867733915 RX 109046 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1202 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 654594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4290495016 RX 1607873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4269805819 RX 108799 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 660674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4890152093 RX 1511280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4870539706 RX 109172 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 655570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4299656524 RX 1610053 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4278945883 RX 108928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 661413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4892907016 RX 1513224 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4873264403 RX 109301 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 656549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4308842399 RX 1612117 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4288109761 RX 109057 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 662146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4895652603 RX 1515120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4875979667 RX 109430 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 657527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4318009283 RX 1614133 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4297255185 RX 109183 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 662879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4898362437 RX 1517040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4878659398 RX 109556 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1027 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 658506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4327180136 RX 1616197 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4306404568 RX 109312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 663620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4901181995 RX 1518984 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4881448832 RX 109685 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 659485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4336380348 RX 1618261 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4315582761 RX 109441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 664334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4903859241 RX 1520880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4884096955 RX 109814 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 660462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4345538208 RX 1620277 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4324719186 RX 109567 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 665082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4906594641 RX 1522800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4886799437 RX 109940 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 661442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4354709187 RX 1622341 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4333868693 RX 109696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 665794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4909286587 RX 1524744 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4889462841 RX 110069 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1667 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 662421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4363889623 RX 1624405 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4343027142 RX 109825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 666557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4912274941 RX 1526640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4892419766 RX 110198 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 663398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4373076157 RX 1626421 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4352192179 RX 109951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 667310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4915045413 RX 1528560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4895160249 RX 110324 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 664376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 66961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4382247199 RX 1628485 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4361341756 RX 110080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 668036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4917704626 RX 1530504 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4897789572 RX 110453 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 973 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 665355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4391421107 RX 1630549 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4370493692 RX 110209 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 668771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 62981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4920478537 RX 1532400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4900533034 RX 110582 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 666333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4400603993 RX 1632565 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4379655088 RX 110335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 669522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4923173661 RX 1534320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4903197519 RX 110708 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 667311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4409782460 RX 1634629 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4388812079 RX 110464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 670251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4925886952 RX 1536264 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4905880700 RX 110837 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 668290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67303/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4418956560 RX 1636693 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4397964215 RX 110593 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 670988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4928599966 RX 1538160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4908563365 RX 110966 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 669268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4428145782 RX 1638709 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4407131925 RX 110719 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 671722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4931307422 RX 1540080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4911240097 RX 111092 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 670246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4437330969 RX 1640773 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4416295613 RX 110848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 672457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4934002932 RX 1542024 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4913906470 RX 111221 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 671225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4446492013 RX 1642837 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4425434711 RX 110977 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 673218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4937093253 RX 1543920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4916965648 RX 111350 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1891 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 672204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4455661393 RX 1644853 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4434582624 RX 111103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 673937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4939769232 RX 1545840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4919611338 RX 111476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 673182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4464854581 RX 1646917 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4443754299 RX 111232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 674673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4942484272 RX 1547784 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4922296997 RX 111605 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 976 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 674160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4474027274 RX 1648981 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4452905031 RX 111361 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 675441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4945311104 RX 1549680 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4925092359 RX 111734 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 993 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 665 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 675139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4483187756 RX 1650997 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4462044063 RX 111487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 676166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4947937196 RX 1551600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4927689068 RX 111860 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 676117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 67985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4492367888 RX 1653061 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4471202709 RX 111616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 676908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4950682784 RX 1553544 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4930404352 RX 111989 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 677096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4501550886 RX 1655125 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4480363720 RX 111745 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 677646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 63941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4953404512 RX 1555440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4933095959 RX 112118 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 678074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4510736265 RX 1657141 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4489527600 RX 111871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 678370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4956116396 RX 1557360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4935778078 RX 112244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 679052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4519909677 RX 1659205 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4498679535 RX 112000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 679127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4958868012 RX 1559304 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4938499345 RX 112373 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 680030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4529082370 RX 1661269 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4507830257 RX 112129 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 679856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4961569268 RX 1561200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4941170690 RX 112502 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 681009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4538278246 RX 1663285 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4517004615 RX 112255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 680588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4964287012 RX 1563120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4943857886 RX 112628 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 681987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4547445130 RX 1665349 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4526150044 RX 112384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 681338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4967002574 RX 1565064 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4946541562 RX 112757 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 682966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4556620511 RX 1667413 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4535303448 RX 112513 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 682070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4969702883 RX 1566960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4949212917 RX 112886 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 683944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4565820035 RX 1669429 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4544481445 RX 112639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 682802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4972450477 RX 1568880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4951930689 RX 113012 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 684922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4574980583 RX 1671493 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4553620541 RX 112768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 683552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4975163085 RX 1570824 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4954613404 RX 113141 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 685902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4584142842 RX 1673557 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4562760860 RX 112897 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 684281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4977868425 RX 1572720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4957289190 RX 113270 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 686880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 68924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4593329310 RX 1675573 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4571925832 RX 113023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 685016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4980588865 RX 1574640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4959979335 RX 113396 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 687856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4602505539 RX 1677637 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4581080585 RX 113152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 685756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4983317509 RX 1576584 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4962678372 RX 113525 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 688837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4611683350 RX 1679701 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4590236410 RX 113281 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 686496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4986048684 RX 1578480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4965380318 RX 113654 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1174 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 689815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4620856954 RX 1681717 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4599388533 RX 113407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 687249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 64980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4988893700 RX 1580400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4968194420 RX 113780 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 988 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 690792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4630029151 RX 1683781 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4608539257 RX 113536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 687976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4991637230 RX 1582344 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4970908257 RX 113909 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 691772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4639225331 RX 1685845 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4617713419 RX 113665 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 688710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4994330499 RX 1584240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4973571711 RX 114038 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 692750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4648398935 RX 1687861 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4626865547 RX 113791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 689453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4997058749 RX 1586160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4976269732 RX 114164 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 693727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4657570940 RX 1689925 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4636016077 RX 113920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 690188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 4999803364 RX 1588104 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4978983559 RX 114293 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 694706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4666756815 RX 1691989 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4645179963 RX 114049 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 690928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5002486712 RX 1590000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4981636629 RX 114422 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 695684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4675923699 RX 1694005 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4654325383 RX 114175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 691653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5005223569 RX 1591920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4984343071 RX 114548 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 696663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4685094552 RX 1696069 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4663474765 RX 114304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 692368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5007979992 RX 1593864 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4987070236 RX 114677 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 697642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4694294764 RX 1698133 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4672652958 RX 114433 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 693107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5010674951 RX 1595760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4989735152 RX 114806 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 698619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 69948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4703452624 RX 1700149 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4681789381 RX 114559 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 693868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5013408689 RX 1597680 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4992438620 RX 114932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 909 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 699599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4712623603 RX 1702213 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4690938888 RX 114688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 694615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5016083969 RX 1599624 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4995082808 RX 115061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 700578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4721804039 RX 1704277 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4700097338 RX 114817 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 695338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5018822649 RX 1601520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 4997792109 RX 115190 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 701555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4730990573 RX 1706293 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4709262373 RX 114943 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 696076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 65940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5021552896 RX 1603440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5000491101 RX 115316 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 702533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4740161615 RX 1708357 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4718411946 RX 115072 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 696794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5024287866 RX 1605384 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5003197498 RX 115445 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 703511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4749335027 RX 1710421 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4727563882 RX 115201 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 697530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5026954477 RX 1607280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5005834251 RX 115574 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 704490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4758518409 RX 1712437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4736725278 RX 115327 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 698283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5029738095 RX 1609200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5008586059 RX 115700 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 705468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4767696876 RX 1714501 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4745882256 RX 115456 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 699022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5032563139 RX 1611144 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5011380375 RX 115829 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 706446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4776870480 RX 1716565 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4755034395 RX 115585 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 699758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5035282807 RX 1613040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5014070485 RX 115958 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 707425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4786060198 RX 1718581 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4764202105 RX 115711 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 700496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5038025422 RX 1614960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5016781368 RX 116084 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 708403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4795245385 RX 1720645 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4773365793 RX 115840 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 701227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5040731006 RX 1616904 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5019456613 RX 116213 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 709381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4804405933 RX 1722709 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4782504886 RX 115969 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 701963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5043431290 RX 1618800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5022127482 RX 116342 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 710361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 70972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4813575809 RX 1724725 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4791652796 RX 116095 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 702702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5046123712 RX 1620720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5024787952 RX 116468 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 711339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4822768997 RX 1726789 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4800824464 RX 116224 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 703451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5048833557 RX 1622664 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5027467227 RX 116597 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 712316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71143/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4831941194 RX 1728853 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4809975191 RX 116353 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 704186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5051516920 RX 1624560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5030120277 RX 116726 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 713296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4841102172 RX 1730869 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4819114223 RX 116479 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 704922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5054218883 RX 1626480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5032791111 RX 116852 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 714274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4850282304 RX 1732933 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4828272859 RX 116608 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 705668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 66981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5056943527 RX 1628424 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5035485687 RX 116981 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 715252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4859464806 RX 1734997 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4837433880 RX 116737 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 706403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5059630264 RX 1630320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5038142212 RX 117110 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 716231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4868650681 RX 1737013 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4846597760 RX 116863 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 707151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5062351383 RX 1632240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5040832297 RX 117236 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 717209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4877824093 RX 1739077 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4855749699 RX 116992 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 707887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5065052268 RX 1634184 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5043504142 RX 117365 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 718186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4886996290 RX 1741141 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4864900425 RX 117121 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 708631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5067763663 RX 1636080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5046184394 RX 117494 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 719166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4896192662 RX 1743157 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4874074777 RX 117247 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 709363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5070464518 RX 1638000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5048854737 RX 117620 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 720144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4905359546 RX 1745221 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4883220205 RX 117376 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 710089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5073186352 RX 1639944 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5051546790 RX 117749 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1436 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 721122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4914534431 RX 1747285 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4892373608 RX 117505 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 710870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5076158577 RX 1641840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5054485881 RX 117878 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1137 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 722101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 71996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4923734451 RX 1749301 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4901551609 RX 117631 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 711615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5078945648 RX 1643760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5057242175 RX 118004 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 723079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4932894999 RX 1751365 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4910690701 RX 117760 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 712344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5081627571 RX 1645704 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5059894269 RX 118133 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 724058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4942056762 RX 1753429 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4919831009 RX 117889 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 713077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5084279826 RX 1647600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5062516167 RX 118262 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 725037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4951243726 RX 1755445 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4928995979 RX 118015 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 713812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5086996399 RX 1649520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5065203333 RX 118388 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 726013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4960419955 RX 1757509 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4938150731 RX 118144 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 714550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 67941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5089713528 RX 1651464 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5067890434 RX 118517 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 726993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72423/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4969597270 RX 1759573 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4947306553 RX 118273 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 715278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5092410431 RX 1653360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5070558299 RX 118646 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 727972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4978771370 RX 1761589 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4956458691 RX 118399 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 716019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5095076716 RX 1655280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5073194566 RX 118772 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 728949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4987943567 RX 1763653 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4965609419 RX 118528 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 716752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5097756291 RX 1657224 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5075843686 RX 118901 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 729928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 4997139251 RX 1765717 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4974783577 RX 118657 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 717483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5100492856 RX 1659120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5078550118 RX 119030 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 730907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5006313351 RX 1767733 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4983935703 RX 118783 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 718224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5103187402 RX 1661040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5081213061 RX 119156 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 702 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 731884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5015485356 RX 1769797 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 4993086243 RX 118912 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 718955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5105866120 RX 1662984 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5083861680 RX 119285 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 732862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 72935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5024670735 RX 1771861 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5002250125 RX 119041 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 719686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5108621227 RX 1664880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5086587373 RX 119414 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 733841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5033838115 RX 1773877 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5011395553 RX 119167 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 720426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5111316291 RX 1666800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5089251323 RX 119540 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 734820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5043008968 RX 1775941 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5020544931 RX 119296 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 721161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5114036201 RX 1668744 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5091941428 RX 119669 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 735798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5052208684 RX 1778005 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5029723119 RX 119425 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 721903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5116967973 RX 1670640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5094843559 RX 119798 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 736776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5061367040 RX 1780021 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5038859537 RX 119551 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 722637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5119796432 RX 1672560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5097641825 RX 119924 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 737756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5070538019 RX 1782085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5048009042 RX 119680 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 723372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5122564123 RX 1674504 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5100379394 RX 120053 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1772 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1121 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 738734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 5079717959 RX 1784149 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5057167493 RX 119809 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 724140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 68981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5125662724 RX 1676400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5103446042 RX 120182 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 739711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 5088894492 RX 1786301 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5066322064 RX 120012 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 724575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 96c8: ulsch_rounds 69052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 5127229427 RX 1679022 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5104989650 RX 121148 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 82 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 740570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 5096944046 RX 1788433 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5074351781 RX 120277 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 724588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: ulsch_rounds 69065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 5127233199 RX 1680530 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5104989650 RX 121148 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 740971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5098445656 RX 1792174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5075827689 RX 122086 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 725089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: ulsch_rounds 69137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5128804101 RX 1682995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5106554661 RX 122005 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 741715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5101195063 RX 1794238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5078546007 RX 122215 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 726057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5135505929 RX 1684891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5113239627 RX 122131 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 742456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5103905575 RX 1796278 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5081224381 RX 122344 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 727024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5144813463 RX 1686835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5122524984 RX 122260 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 743208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 73969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5106630873 RX 1798318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5083919022 RX 122470 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 727991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5154139662 RX 1688731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5131829433 RX 122389 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 743963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5109369381 RX 1800382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5086625589 RX 122599 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 728959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5163434101 RX 1690651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5141101698 RX 122515 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 744707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5112119357 RX 1802422 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5089343917 RX 122728 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 729926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5172747806 RX 1692595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5150393189 RX 122644 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 745460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5114872391 RX 1804462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5092065279 RX 122854 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 730893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5182080725 RX 1694491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5159704334 RX 122773 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 746219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5117587841 RX 1806526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5094749095 RX 122983 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 731859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5191377789 RX 1696411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5168979215 RX 122899 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 746960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5120254893 RX 1808566 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5097384932 RX 123112 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 732828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5200688869 RX 1698355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5178268082 RX 123028 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 747723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5123331177 RX 1810606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5100429455 RX 123238 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 733795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5210008924 RX 1700251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5187566399 RX 123157 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 748467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5126014848 RX 1812670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5103082610 RX 123367 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 734761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 69936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5219327750 RX 1702171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5196863004 RX 123283 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 749215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5128743526 RX 1814710 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5105780295 RX 123496 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 735729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5228648109 RX 1704115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5206161133 RX 123412 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 749953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5131488624 RX 1816750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5108494212 RX 123622 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 736696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5237955108 RX 1706011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5215446420 RX 123541 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 750723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5134245846 RX 1818814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5111220030 RX 123751 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 737663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5247255730 RX 1707931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5224724879 RX 123667 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 751484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5136948706 RX 1820854 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5113891029 RX 123880 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 738631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5256582782 RX 1709875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5234029712 RX 123796 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 752226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 74993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5139659091 RX 1822894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5116570915 RX 124006 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 739598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5265882869 RX 1711771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5243308105 RX 123925 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 752981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5142411281 RX 1824958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5119292267 RX 124135 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 740565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5275183710 RX 1713691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5252586758 RX 124051 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 672 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 753714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5145090965 RX 1826998 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5121941021 RX 124264 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 741533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5284517125 RX 1715635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5261897911 RX 124180 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 754452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5147815950 RX 1829038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5124635687 RX 124390 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 742499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5293808188 RX 1717531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5271167287 RX 124309 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 755199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5150569314 RX 1831102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5127357029 RX 124519 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 743467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5303118245 RX 1719451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5280455134 RX 124435 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 755945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5153297738 RX 1833142 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5130053207 RX 124648 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 744435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5312451468 RX 1721395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5289766105 RX 124564 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 756693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5156034433 RX 1835182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5132758287 RX 124774 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 745400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5321762373 RX 1723291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5299055297 RX 124693 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 757434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5158738274 RX 1837246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5135430718 RX 124903 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 746367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5331069180 RX 1725211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5308340388 RX 124819 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 758224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5161864318 RX 1839286 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5138524172 RX 125032 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 747337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 70977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5340386003 RX 1727155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5317634487 RX 124948 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1869 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 758974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5164606187 RX 1841326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5141235170 RX 125158 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 748302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5349698189 RX 1729051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5326924955 RX 125077 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 759720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5167334385 RX 1843390 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5143932805 RX 125287 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 749269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5359024388 RX 1730971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5336229399 RX 125203 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 760476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 75933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5170033854 RX 1845430 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5146600850 RX 125416 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 750238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5368325797 RX 1732915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5345508182 RX 125332 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1141 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 761237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5172866801 RX 1847470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5149402215 RX 125542 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 751204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5377625950 RX 1734811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5354786636 RX 125461 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 762001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76103/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5175628746 RX 1849534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5152132469 RX 125671 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 752171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5386952341 RX 1736731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5364091281 RX 125587 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 762754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5178312137 RX 1851574 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5154784167 RX 125800 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 753140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5396253804 RX 1738675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5373370050 RX 125716 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1429 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 763535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5181284582 RX 1853614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5157724880 RX 125926 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 754106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5405560485 RX 1740571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5382655026 RX 125845 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 764276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5183966539 RX 1855678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5160376544 RX 126055 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 755073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5414893596 RX 1742491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5391966372 RX 125971 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 765028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5186695273 RX 1857718 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5163072751 RX 126184 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 756041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5424193460 RX 1744435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5401243549 RX 126100 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 765785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5189398421 RX 1859758 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5165743730 RX 126310 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 757008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5433495020 RX 1746331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5410523392 RX 126229 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 766536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5192131386 RX 1861822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5168445786 RX 126439 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 757975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5442827939 RX 1748251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5419834543 RX 126355 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 767309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5194835978 RX 1863862 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5171117741 RX 126568 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 758942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 71937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5452147453 RX 1750195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5429131338 RX 126484 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 768064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5197570711 RX 1865902 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5173820383 RX 126694 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 759909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5461460980 RX 1752091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5438423139 RX 126613 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 768836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5200389526 RX 1867966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5176606988 RX 126823 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 760876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5470759786 RX 1754011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5447700247 RX 126739 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1468 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 769603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 76957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5203310550 RX 1870006 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5179497313 RX 126952 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 761844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5480075406 RX 1755955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5456993207 RX 126868 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 588 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 770335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5205951411 RX 1872138 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5182107575 RX 127078 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 762811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5489401797 RX 1757851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5466297841 RX 126997 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 771083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5208628039 RX 1874202 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5184753350 RX 127207 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 763778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5498695356 RX 1759771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5475569716 RX 127123 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 771866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5211798888 RX 1876242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5187892686 RX 127336 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 764746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5508003413 RX 1761715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5484855084 RX 127252 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1949 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 772620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5214475661 RX 1878282 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5190538456 RX 127462 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 765713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5517329612 RX 1763611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5494159532 RX 127381 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 949 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 773397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5217308174 RX 1880346 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5193339876 RX 127591 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 766680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5526623555 RX 1765531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5503431784 RX 127507 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 774154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5220049079 RX 1882386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5196049377 RX 127720 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 767648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5535937756 RX 1767475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5512723268 RX 127636 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 774899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5222764817 RX 1884426 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5198733654 RX 127846 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 768615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5545270675 RX 1769371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5522034424 RX 127765 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 775635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5225485145 RX 1886490 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5201423849 RX 127975 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 769580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5554567243 RX 1771291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5531309305 RX 127891 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 776389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5228214929 RX 1888530 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5204123001 RX 128104 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 770549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5563878323 RX 1773235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5540598172 RX 128020 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 777148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5230943949 RX 1890570 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5206820636 RX 128230 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 771517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 72977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5573198874 RX 1775131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5549896495 RX 128149 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 586 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 777900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5233615525 RX 1892634 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5209461980 RX 128359 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 772482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5582517204 RX 1777051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5559193096 RX 128275 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 778646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 77981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5236327069 RX 1894674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5212141871 RX 128488 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 773450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5591837536 RX 1778995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5568491225 RX 128404 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 779399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5239025877 RX 1896714 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5214809365 RX 128614 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 774418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5601145004 RX 1780891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5577776512 RX 128533 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 780178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5242224011 RX 1898778 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5217975888 RX 128743 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 775384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5610445157 RX 1782811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5587054969 RX 128659 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2091 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 780922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5244928083 RX 1900818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5220648314 RX 128872 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 776352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5619772236 RX 1784755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5596359802 RX 128788 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 781665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5247572025 RX 1902858 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5223261445 RX 128998 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 777320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5629072819 RX 1786651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5605638186 RX 128917 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 622 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 782416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5250270851 RX 1904922 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5225929525 RX 129127 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 778286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5638373164 RX 1788571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5614916840 RX 129043 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 783184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5253371080 RX 1906962 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5228997720 RX 129256 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 779254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5647706579 RX 1790515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5624227997 RX 129172 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 643 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 783942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5256046611 RX 1909002 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5231642058 RX 129382 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 780221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5656998138 RX 1792411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5633497384 RX 129301 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 784679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5258740260 RX 1911066 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5234305557 RX 129511 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 781188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5666307699 RX 1794331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5642785223 RX 129427 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 785430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5261493366 RX 1913106 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5237026919 RX 129640 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 782156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5675640922 RX 1796275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5652096189 RX 129556 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 786189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5264193124 RX 1915146 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5239694914 RX 129766 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 783122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 73937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5684952323 RX 1798171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5661385383 RX 129685 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 786946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 78919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5266876448 RX 1917210 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5242348069 RX 129895 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 784089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5694259130 RX 1800091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5670670471 RX 129811 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 787684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5269613440 RX 1919250 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5245054591 RX 130024 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 785058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5703575430 RX 1802035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5679964572 RX 129940 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 788435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5272358629 RX 1921290 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5247768563 RX 130150 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 786024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5712888085 RX 1803931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5689255036 RX 130069 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 662 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 789183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5275026260 RX 1923354 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5250405416 RX 130279 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 786991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5722214284 RX 1805851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5698559481 RX 130195 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 789939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5277702273 RX 1925394 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5253049704 RX 130408 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 787959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5731515251 RX 1807795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5707838258 RX 130324 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 790744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5281044861 RX 1927434 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5256359505 RX 130534 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 788926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5740815900 RX 1809691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5717116723 RX 130453 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2304 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 694 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 791478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5283730765 RX 1929498 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5259015699 RX 130663 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 789893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5750142291 RX 1811611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5726421353 RX 130579 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 792228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5286468410 RX 1931538 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5261722236 RX 130792 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 790861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5759443258 RX 1813555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5735700123 RX 130708 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 792990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5289178645 RX 1933578 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5264400635 RX 130918 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 791828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5768750435 RX 1815451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5744985110 RX 130837 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 793744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5291885968 RX 1935642 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5267075975 RX 131047 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 792795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5778083546 RX 1817371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5754296453 RX 130963 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 794498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5294580645 RX 1937682 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5269739564 RX 131176 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 793762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5787382914 RX 1819315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5763573630 RX 131092 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 795249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5297279454 RX 1939722 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5272407559 RX 131302 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 794730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5796684970 RX 1821211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5772853491 RX 131221 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 796007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 79943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5300021829 RX 1941786 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5275118557 RX 131431 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 795697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 74976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5806017889 RX 1823131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5782164641 RX 131347 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 898 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 796765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5302763525 RX 1943826 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5277828053 RX 131560 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 796663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5815336880 RX 1825075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5791461436 RX 131476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 970 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 797539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5305555644 RX 1945866 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5280587972 RX 131686 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 797631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5824650876 RX 1826971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5800753245 RX 131605 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 798287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5308319743 RX 1947930 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5283321110 RX 131815 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 798598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5833949682 RX 1828891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5810030349 RX 131731 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 799074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5311269009 RX 1949970 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5286238071 RX 131944 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 799565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5843264860 RX 1830835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5819323313 RX 131860 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1422 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 799831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5313973257 RX 1952010 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5288910557 RX 132070 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 800533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5852591747 RX 1832731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5828627958 RX 131989 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 800588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5316706259 RX 1954074 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5291612618 RX 132199 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 801500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5861885306 RX 1834651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5837899824 RX 132115 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 801361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5319609183 RX 1956114 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5294483697 RX 132328 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 802467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5871192867 RX 1836595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5847185183 RX 132244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1409 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 802143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5322463587 RX 1958154 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5297305920 RX 132454 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 803435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5880519562 RX 1838491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5856489632 RX 132373 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 802910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5325222369 RX 1960218 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5300031778 RX 132583 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 804402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5889813505 RX 1840411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5865761884 RX 132499 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 803668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5327951049 RX 1962258 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5302729438 RX 132712 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 805369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5899127210 RX 1842355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5875053367 RX 132628 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 804402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5330605967 RX 1964298 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5305354430 RX 132838 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 806337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5908460625 RX 1844251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5884364529 RX 132757 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 805151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 80967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5333317500 RX 1966362 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5308034281 RX 132967 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 807302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 75936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5917757193 RX 1846171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5893639405 RX 132883 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 805891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5336020484 RX 1968402 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5310706677 RX 133096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 808270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5927067777 RX 1848115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5902928262 RX 133012 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 664 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 806641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5338727424 RX 1970442 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5313382102 RX 133222 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 809239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5936388770 RX 1850011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5912226582 RX 133141 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 807393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5341396304 RX 1972506 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5316018980 RX 133351 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 810204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5945707100 RX 1851931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5921523181 RX 133267 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 808131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5344102394 RX 1974546 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5318694360 RX 133480 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 811171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5955026963 RX 1853875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5930821306 RX 133396 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 713 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 808902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5346902543 RX 1976586 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5321461649 RX 133606 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 812140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5964334954 RX 1855771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5940106588 RX 133525 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1180 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 809651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5349613799 RX 1978650 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5324141515 RX 133735 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 813106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5973635107 RX 1857691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5949385036 RX 133651 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 596 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 810394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5352273442 RX 1980690 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5326770998 RX 133864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 814073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5982961690 RX 1859635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5958689867 RX 133780 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 652 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 811143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5354967707 RX 1982730 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5329434527 RX 133990 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 815042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 5992262769 RX 1861531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5967968253 RX 133909 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 811894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5357700588 RX 1984794 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5332136668 RX 134119 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 816008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6001563114 RX 1863451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5977246910 RX 134035 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 812649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5360434769 RX 1986834 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5334840231 RX 134248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 816975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6010896033 RX 1865395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5986558058 RX 134164 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 813408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5363151918 RX 1988874 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5337526035 RX 134374 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 817943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6020188088 RX 1867291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 5995827461 RX 134293 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 814146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 81991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5365860412 RX 1990938 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5340202917 RX 134503 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 818910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6029497649 RX 1869211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6005115307 RX 134419 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 814877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5368553407 RX 1992978 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5342866506 RX 134632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 819877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 76977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6038830376 RX 1871155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6014426267 RX 134548 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 815625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5371247008 RX 1995018 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5345529599 RX 134758 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 820844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6048142219 RX 1873051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6023715458 RX 134677 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 679 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 816362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5373931358 RX 1997082 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5348183280 RX 134887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 821811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6057449026 RX 1874971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6033000544 RX 134803 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 817105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5376663750 RX 1999122 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5350885391 RX 135016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 822779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6066764857 RX 1876915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6042294645 RX 134932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 817843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5379358152 RX 2001162 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5353548890 RX 135142 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 823746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6076078035 RX 1878811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6051585111 RX 135061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 818606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5382101821 RX 2003226 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5356259878 RX 135271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 824713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6085404234 RX 1880731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6060889546 RX 135187 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 819363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5384843052 RX 2005266 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5358969429 RX 135400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 825680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6094704705 RX 1882675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6070168322 RX 135316 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 820117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5387565889 RX 2007306 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5361659699 RX 135526 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 826648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6104005850 RX 1884571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6079446784 RX 135445 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 665 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 820866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5390336114 RX 2009370 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5364400307 RX 135655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 827615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6113332241 RX 1886491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6088751433 RX 135571 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 821609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5393088493 RX 2011410 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5367123146 RX 135784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 828582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6122632712 RX 1888435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6098030203 RX 135700 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 822358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 82929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5395830365 RX 2013450 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5369834129 RX 135910 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 829550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6131940385 RX 1890331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6107315177 RX 135829 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 675 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 823108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5398539484 RX 2015514 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5372512458 RX 136039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 830517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6141273496 RX 1892251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6116626514 RX 135955 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 823870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5401241081 RX 2017554 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5375181930 RX 136168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 831483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 77937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6150572368 RX 1894195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6125903688 RX 136084 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 824603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5403907026 RX 2019594 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5377817346 RX 136294 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 832451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6159874397 RX 1896091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6135183551 RX 136213 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 825358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5406613139 RX 2021658 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5380491204 RX 136423 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 833419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6169207785 RX 1898011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6144494704 RX 136339 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 826116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5409321573 RX 2023698 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5383167570 RX 136552 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 834384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6178526307 RX 1899955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6153791489 RX 136468 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 826872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5412021776 RX 2025738 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5385835555 RX 136678 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 835352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6187840330 RX 1901851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6163083298 RX 136597 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 827642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5414738352 RX 2027802 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5388520323 RX 136807 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 836320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6197139632 RX 1903771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6172360412 RX 136723 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 828390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5417461112 RX 2029842 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5391212065 RX 136936 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 837286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6206454314 RX 1905715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6181653363 RX 136852 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2355 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 829189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5420813901 RX 2031882 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5394530808 RX 137062 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 838254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6215781201 RX 1907611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6190957997 RX 136981 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1272 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 829985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5423794334 RX 2033946 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5397478881 RX 137191 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 839222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6225075256 RX 1909531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6200229864 RX 137107 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1443 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 830777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5426782451 RX 2035986 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5400434379 RX 137320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 840188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6234382321 RX 1911475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6209515206 RX 137236 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1211 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 831563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 83953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5429700453 RX 2038026 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5403320293 RX 137446 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 841156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6243709016 RX 1913371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6218819657 RX 137365 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1158 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1243 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 832356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5432615522 RX 2040090 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5406203193 RX 137575 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 842124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6253003455 RX 1915291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6228091915 RX 137491 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1476 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 833153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5435676752 RX 2042130 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5409232831 RX 137704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 843090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6262316664 RX 1917235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6237383396 RX 137620 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 833966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5439041928 RX 2044170 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5412563380 RX 137830 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 844058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 78977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6271650052 RX 1919131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6246694552 RX 137749 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2293 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 834733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5441953714 RX 2046234 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5415443341 RX 137959 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 845024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6280947089 RX 1921051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6255969440 RX 137875 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1095 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 835505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5444817057 RX 2048274 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5418275853 RX 138088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 845992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6290257673 RX 1922995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6265258298 RX 138004 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 967 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 836281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5447654654 RX 2050314 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5421080207 RX 138214 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 846960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6299578224 RX 1924891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6274556619 RX 138133 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 837058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5450474863 RX 2052378 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5423868279 RX 138343 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 847926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6308897050 RX 1926811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6283853226 RX 138259 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 837799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5453351099 RX 2054418 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5426712617 RX 138472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 848893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6318216913 RX 1928755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6293151341 RX 138388 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 965 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 838550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5456096495 RX 2056458 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5429426549 RX 138598 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 849861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6327524408 RX 1930651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6302436631 RX 138517 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 683 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 839291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5458849406 RX 2058522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5432147906 RX 138727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 850828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6336825057 RX 1932571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6311715088 RX 138643 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 945 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 840055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5461641731 RX 2060562 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5434907870 RX 138856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 851795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6346151640 RX 1934515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6321019919 RX 138772 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1092 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 840810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 84977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5464533810 RX 2062602 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5437767153 RX 138982 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 852763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6355452223 RX 1936411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6330298313 RX 138901 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 985 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 841565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5467333184 RX 2064666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5440534447 RX 139111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 853730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6364753064 RX 1938331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6339576966 RX 139027 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 842347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5470156298 RX 2066682 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5443325508 RX 139237 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 854697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6374085983 RX 1940275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6348888122 RX 139156 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1020 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 843119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5472949233 RX 2068746 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5446085407 RX 139366 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 855664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 79937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6383377515 RX 1942171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6358157510 RX 139285 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 843879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5475746399 RX 2070810 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5448849717 RX 139495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 856632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6392687545 RX 1944091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6367445360 RX 139411 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 844690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5479055247 RX 2072826 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5452123975 RX 139621 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 857599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6402020272 RX 1946035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6376756321 RX 139540 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2216 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 845450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5481810470 RX 2074890 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5454846889 RX 139750 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 858565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6411331673 RX 1947931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6386045508 RX 139669 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 846227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: MAC: TX 5484569898 RX 2076954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5457574174 RX 139879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 859533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6420638976 RX 1949851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6395330603 RX 139795 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 611 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 846468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 21 +UE 8379: ulsch_rounds 85630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: MAC: TX 5485419141 RX 2079437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5458407805 RX 140811 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 860499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6429933813 RX 1951955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6404603747 RX 140075 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 846484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 85655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 5485422079 RX 2081192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5458407994 RX 141084 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 861094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 80431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 6435528743 RX 1954988 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6410179421 RX 141471 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 847332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 20 +UE 8379: ulsch_rounds 85742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5488517439 RX 2083676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5461494094 RX 141713 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 861722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6437798837 RX 1957448 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6412418780 RX 142092 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 848309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5496585543 RX 2085716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5469542957 RX 141842 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 862452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6440488589 RX 1959368 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6415078304 RX 142218 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 849289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5505781723 RX 2087756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5478717136 RX 141968 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 863150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6443189641 RX 1961312 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6417750209 RX 142347 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 850267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 85998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5514955327 RX 2089820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5487869264 RX 142097 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 863855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6445875527 RX 1963208 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6420406203 RX 142476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 851244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5524127332 RX 2091860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5497019798 RX 142226 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 864584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6448631082 RX 1965128 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6423131956 RX 142602 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1008 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 943 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 852223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5533313207 RX 2093900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5506183676 RX 142352 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 865297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6451396399 RX 1967072 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6425868504 RX 142731 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 853201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5542480091 RX 2095964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5515329097 RX 142481 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 866009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 80996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6454017441 RX 1968968 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6428459325 RX 142860 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 576 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 854180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5551650944 RX 2098004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5524478485 RX 142610 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 866724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6456673452 RX 1970888 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6431085714 RX 142986 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 855159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5560851156 RX 2100044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5533656678 RX 142736 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 867454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6459355421 RX 1972832 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6433737282 RX 143115 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 856136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5570009016 RX 2102108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5542793095 RX 142865 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 868167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6462036791 RX 1974728 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6436389876 RX 143244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 857116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5579179995 RX 2104148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5551942596 RX 142994 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 868887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6464756942 RX 1976648 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6439080472 RX 143370 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1009 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 858095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5588360431 RX 2106188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5561101048 RX 143120 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 869616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6467516737 RX 1978592 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6441810606 RX 143499 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 859072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5597546965 RX 2108252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5570266087 RX 143249 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 870381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6470714255 RX 1980488 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6444976553 RX 143628 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2099 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 663 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 860050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5606718007 RX 2110292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5579415659 RX 143378 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 871079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6473338401 RX 1982408 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6447571795 RX 143754 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 861028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 86936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5615891419 RX 2112332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5588567601 RX 143504 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 871793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6476010868 RX 1984352 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6450215933 RX 143883 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 862007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5625074801 RX 2114396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5597728993 RX 143633 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 872513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6478696874 RX 1986248 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6452871952 RX 144012 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 862985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5634253268 RX 2116436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5606885971 RX 143762 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 873251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6481466303 RX 1988168 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6455609486 RX 144138 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 863963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5643426872 RX 2118476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5616038102 RX 143888 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 873968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6484197844 RX 1990112 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6458311372 RX 144267 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 713 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 864942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5652616590 RX 2120540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5625205822 RX 144017 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 874693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 81956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6486869709 RX 1992008 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6460952576 RX 144396 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 865920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5661801777 RX 2122580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5634369515 RX 144146 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 875405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6489566294 RX 1993928 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6463619965 RX 144522 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 866898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5670962325 RX 2124620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5643508612 RX 144272 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 876133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6492279912 RX 1995872 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6466304628 RX 144651 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 867878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5680132201 RX 2126684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5652656526 RX 144401 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 876835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6494939779 RX 1997768 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6468935473 RX 144780 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 868856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5689325389 RX 2128724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5661828198 RX 144530 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 877563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6497635446 RX 1999688 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6471600374 RX 144906 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 869833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5698497586 RX 2130764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5670978931 RX 144656 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 878294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6500390824 RX 2001632 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6474325581 RX 145035 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 870813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5707658564 RX 2132828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5680117960 RX 144785 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 879002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6503123634 RX 2003528 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6477028108 RX 145164 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 871791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5716838696 RX 2134868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5689276606 RX 144914 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 879719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6505793731 RX 2005448 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6479668806 RX 145290 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -57 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 872769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 87960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5726021198 RX 2136908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5698437616 RX 145040 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 880439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6508448112 RX 2007392 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6482294209 RX 145419 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 873748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5735207073 RX 2138972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5707601496 RX 145169 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 881190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6511542470 RX 2009288 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6485357387 RX 145548 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1021 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 874726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5744380485 RX 2141012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5716753428 RX 145298 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 881920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6514339823 RX 2011208 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6488125047 RX 145674 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 875703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5753552682 RX 2143052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5725904149 RX 145424 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 882646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6517056291 RX 2013152 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6490812203 RX 145803 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 876683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5762749054 RX 2145116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5735078504 RX 145553 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 883369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6519769276 RX 2015048 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6493494923 RX 145932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 877661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5771915938 RX 2147156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5744223933 RX 145682 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 884101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 82995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6522468880 RX 2016968 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6496165777 RX 146058 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 878639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5781090823 RX 2149196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5753377344 RX 145808 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 884841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6525175550 RX 2018912 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6498842514 RX 146187 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 879618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5790290843 RX 2151260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5762555340 RX 145937 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 885591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6528177487 RX 2020808 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6501812792 RX 146316 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1588 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 880596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5799451391 RX 2153300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5771694437 RX 146066 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 886305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6530866131 RX 2022728 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6504472771 RX 146442 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 881575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5808613154 RX 2155340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5780834753 RX 146192 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 887019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6533542957 RX 2024672 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6507120440 RX 146571 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 882554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5817800118 RX 2157404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5789999722 RX 146321 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 887739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6536256447 RX 2026568 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6509804576 RX 146700 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 883530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5826976347 RX 2159444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5799154478 RX 146450 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 888470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6539000197 RX 2028488 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6512518438 RX 146826 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 884510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 88984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5836153662 RX 2161484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5808310304 RX 146576 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 889184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6541671413 RX 2030432 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6515159592 RX 146955 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 885489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5845327762 RX 2163548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5817462432 RX 146705 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 889915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6544378966 RX 2032328 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6517837836 RX 147084 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 886466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5854499959 RX 2165588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5826613155 RX 146834 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 890656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6547103986 RX 2034248 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6520532377 RX 147210 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 887445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5863695643 RX 2167628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5835787314 RX 146960 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 891368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6549805880 RX 2036192 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6523204703 RX 147339 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 597 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 888424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5872869743 RX 2169692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5844939452 RX 147089 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 892073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6552410179 RX 2038088 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6525780203 RX 147468 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 662 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 889401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5882041748 RX 2171732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5854089994 RX 147218 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 892785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 83955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6555057376 RX 2040008 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6528397685 RX 147594 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 890379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5891227127 RX 2173772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5863253884 RX 147344 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 893502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6557883096 RX 2041952 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6531194975 RX 147723 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 973 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 891358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5900394507 RX 2175836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5872399305 RX 147473 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 894220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6560592491 RX 2043848 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6533874721 RX 147852 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1584 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 892337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5909565360 RX 2177876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5881548694 RX 147602 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 894967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6563560428 RX 2045768 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6536812380 RX 147978 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 893315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5918765076 RX 2179916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5890726882 RX 147728 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 895664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6566220847 RX 2047712 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6539444697 RX 148107 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 894293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5927923432 RX 2181980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5899863303 RX 147857 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 896401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6568992559 RX 2049608 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6542185140 RX 148236 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 982 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 895273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 89924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5937094411 RX 2184020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5909012808 RX 147986 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 897131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6571674162 RX 2051528 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6544836768 RX 148362 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 896251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5946274351 RX 2186060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5918171262 RX 148112 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 897867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6574414600 RX 2053472 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6547547646 RX 148491 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 897229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5955461381 RX 2188124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5927336301 RX 148241 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 898600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6577114147 RX 2055368 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6550217038 RX 148620 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 898207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5964632423 RX 2190164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5936485875 RX 148370 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 899320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6579849926 RX 2057288 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6552921973 RX 148746 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 899185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5973805835 RX 2192204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5945637817 RX 148496 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 900024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6582508260 RX 2059232 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6555551306 RX 148875 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 900164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5982989217 RX 2194268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5954799208 RX 148625 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 900744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6585232045 RX 2061128 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6558245401 RX 149004 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 901142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 5992167684 RX 2196308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5963956195 RX 148754 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 901448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6587913421 RX 2063048 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6560897450 RX 149130 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 634 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 902120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6001341288 RX 2198348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5973108322 RX 148880 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 902133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 84996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6590560618 RX 2064992 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6563515913 RX 149259 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 903099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6010531006 RX 2200412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5982276048 RX 149009 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 902869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6593255281 RX 2066888 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6566179828 RX 149388 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 904077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6019716193 RX 2202452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 5991439738 RX 149138 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 903588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6595938101 RX 2068808 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6568831436 RX 149514 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 905055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6028876741 RX 2204492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6000578842 RX 149264 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 904305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6598652473 RX 2070752 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6571515573 RX 149643 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1086 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 906035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6038046617 RX 2206556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6009726754 RX 149393 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 905040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6601431935 RX 2072648 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6574264933 RX 149772 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 907013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 90948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6047239805 RX 2208596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6018898432 RX 149522 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 905767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6604124598 RX 2074568 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6576926855 RX 149898 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 907990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6056412002 RX 2210636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6028049159 RX 149648 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 906497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6606910434 RX 2076512 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6579683179 RX 150027 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1016 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 908970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6065572980 RX 2212700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6037188184 RX 149777 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 907206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6609583936 RX 2078408 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6582327878 RX 150156 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 909948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6074753112 RX 2214740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6046346831 RX 149906 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 907944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6612612902 RX 2080328 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6585326314 RX 150282 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 649 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 910926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6083935614 RX 2216780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6055507849 RX 150032 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 908654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6615280845 RX 2082272 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6587964489 RX 150411 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 911905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6093121489 RX 2218844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6064671723 RX 150161 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 909384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6618056614 RX 2084168 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6590710935 RX 150540 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1068 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 912883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6102294901 RX 2220884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6073823663 RX 150290 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 910093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6620757679 RX 2086088 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6593382790 RX 150666 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 913860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6111467098 RX 2222924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6082974382 RX 150416 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 910805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 85956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6623475262 RX 2088032 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6596070462 RX 150795 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 914840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6120663470 RX 2224988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6092148736 RX 150545 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 911523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6626183266 RX 2089928 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6598748706 RX 150924 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 915818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6129830354 RX 2227028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6101294158 RX 150674 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 912247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6628889001 RX 2091848 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6601424001 RX 151050 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 916796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6139005239 RX 2229068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6110447567 RX 150800 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 912966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6631567222 RX 2093792 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6604072635 RX 151179 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 917775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6148205259 RX 2231132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6119625570 RX 150929 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 913693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6634271289 RX 2095688 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6606746488 RX 151308 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 918753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 91972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6157365807 RX 2233172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6128764667 RX 151058 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 914421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6636970035 RX 2097608 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6609415815 RX 151434 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 919732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6166527570 RX 2235212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6137904983 RX 151184 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 915136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6639710316 RX 2099552 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6612126663 RX 151563 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 920711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6175714534 RX 2237276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6147069951 RX 151313 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 915853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6642444573 RX 2101448 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6614831608 RX 151692 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1187 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 921687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6184890763 RX 2239316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6156224706 RX 151442 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 916577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6645250840 RX 2103368 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6617607679 RX 151818 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 922667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6194068078 RX 2241356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6165380536 RX 151568 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 917295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6647951786 RX 2105312 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6620278513 RX 151947 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 923645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6203241682 RX 2243420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6174532667 RX 151697 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 918048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6651084896 RX 2107208 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6623380253 RX 152076 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 924623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6212414375 RX 2245460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6183683390 RX 151826 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 918760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6653702494 RX 2109128 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6625967159 RX 152202 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 925602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6221610059 RX 2247500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6192857556 RX 151952 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 919477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6656428442 RX 2111072 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6628663197 RX 152331 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 898 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 926580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6230783663 RX 2249564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6202009692 RX 152081 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 920201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 86996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6659135986 RX 2112968 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6631340970 RX 152460 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 927558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6239956164 RX 2251604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6211160229 RX 152210 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 920916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6661781499 RX 2114888 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6633956009 RX 152586 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 928536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6249141543 RX 2253644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6220324113 RX 152336 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 921637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6664512844 RX 2116832 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6636657995 RX 152715 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 929514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6258308427 RX 2255708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6229469532 RX 152465 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 922343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6667210293 RX 2118728 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6639325895 RX 152844 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 930494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 92996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6267479776 RX 2257748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6238618918 RX 152594 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 923065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6669888965 RX 2120648 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6641974539 RX 152970 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 931472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6276679492 RX 2259788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6247797109 RX 152720 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 923770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6672550657 RX 2122592 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6644606821 RX 153099 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 665 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 932449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6285837352 RX 2261852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6256933532 RX 152849 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 924486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6675245514 RX 2124488 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6647271226 RX 153228 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 933430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6295008827 RX 2263892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6266083036 RX 152978 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 925208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6677934791 RX 2126408 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6649930705 RX 153354 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 949 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 934408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6304188767 RX 2265932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6275241484 RX 153104 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 925916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6680697456 RX 2128352 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6652665230 RX 153483 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 935385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6313375301 RX 2267996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6284406517 RX 153233 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 926642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6683391060 RX 2130248 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6655328624 RX 153612 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 936364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6322546839 RX 2270036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6293556096 RX 153362 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 927379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6686190005 RX 2132168 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6658095778 RX 153738 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1070 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1164 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 937342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6331720251 RX 2272076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6302708032 RX 153488 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 928111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6689039882 RX 2134112 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6660913350 RX 153867 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 938320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6340903137 RX 2274140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6311869430 RX 153617 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 928834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 87956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6691779230 RX 2136008 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6663622756 RX 153996 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 939299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6350082100 RX 2276180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6321026419 RX 153746 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 929552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6694464880 RX 2137928 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6666278805 RX 154122 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 940277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6359255704 RX 2278220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6330178546 RX 153872 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 930284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6697157056 RX 2139872 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6668942249 RX 154251 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 941255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 93934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6368444926 RX 2280284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6339346259 RX 154001 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 930993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6699825007 RX 2141768 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6671580494 RX 154380 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 942234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6377630609 RX 2282324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6348509951 RX 154130 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 931724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6702525044 RX 2143688 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6674248424 RX 154506 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 943212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6386791157 RX 2284364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6357649048 RX 154256 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 932449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6705297475 RX 2145632 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6676991946 RX 154635 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 985 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 944191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6395960537 RX 2286428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6366796958 RX 154385 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 933167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6707988290 RX 2147528 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6679653908 RX 154764 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 945170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6405154221 RX 2288468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6375968638 RX 154514 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 933887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6710687666 RX 2149448 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6682323285 RX 154890 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 946147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6414326418 RX 2290508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6385119366 RX 154640 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 934610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6713405551 RX 2151392 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6685011402 RX 155019 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 947126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6423486900 RX 2292572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6394258393 RX 154769 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 935337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6716101704 RX 2153288 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6687678291 RX 155148 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 948105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6432667528 RX 2294612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6403417036 RX 154898 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 936058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6718804014 RX 2155208 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6690350632 RX 155274 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 949083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6441850030 RX 2296652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6412578051 RX 155024 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 936770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6721484847 RX 2157152 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6693002235 RX 155403 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 950061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6451035409 RX 2298716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6421741932 RX 155153 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 937491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6724216896 RX 2159048 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6695705202 RX 155532 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 951040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6460209317 RX 2300756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6430893872 RX 155282 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 938225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 88995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6726949734 RX 2160968 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6698407208 RX 155658 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 952017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6469381514 RX 2302796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6440044597 RX 155408 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 938939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6729658457 RX 2162912 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6701085908 RX 155787 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 952996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 94958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6478577390 RX 2304860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6449218951 RX 155537 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 939677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6732548635 RX 2164808 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6703945977 RX 155916 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1612 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 953975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6487744770 RX 2306900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6458364375 RX 155666 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 940411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6735424322 RX 2166728 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6706790716 RX 156042 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 954953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6496919655 RX 2308940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6467517781 RX 155792 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 941125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6738113495 RX 2168672 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6709449669 RX 156171 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 955931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6506119179 RX 2311004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6476695780 RX 155921 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 941848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6740880275 RX 2170568 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6712186707 RX 156300 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1477 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 956910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6515280223 RX 2313044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6485834884 RX 156050 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 942595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6743766821 RX 2172488 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6715042811 RX 156426 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 957889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6524441986 RX 2315084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6494975193 RX 156176 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 943306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6746462280 RX 2174432 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6717709665 RX 156555 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 958867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6533628454 RX 2317148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6504140159 RX 156305 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 944015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6749161387 RX 2176328 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6720379037 RX 156684 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 959844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6542805179 RX 2319188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6513294916 RX 156434 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 944728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6751830246 RX 2178248 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6723018744 RX 156810 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 960824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6551982494 RX 2321228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6522450744 RX 156560 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 945441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6754515302 RX 2180192 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6725674778 RX 156939 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 961802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6561156098 RX 2323292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6531602877 RX 156689 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 946179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6757583315 RX 2182088 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6728712742 RX 157068 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 962780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6570328791 RX 2325332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6540753601 RX 156818 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 946915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 89955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6760268062 RX 2184008 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6731367289 RX 157194 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 963759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6579524475 RX 2327372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6549927764 RX 156944 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 947648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6763018340 RX 2185952 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6734085998 RX 157323 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 898 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 964737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 95982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6588698079 RX 2329436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6559079894 RX 157073 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 948362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6765764116 RX 2187848 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6736802789 RX 157452 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 965715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6597870580 RX 2331476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6568230433 RX 157202 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 949092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6768504479 RX 2189768 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6739513191 RX 157578 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 966693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6607055959 RX 2333516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6577394318 RX 157328 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 949817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6771190893 RX 2191712 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6742169200 RX 157707 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 967671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6616222843 RX 2335580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6586539739 RX 157457 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 950552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6774037970 RX 2193608 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6744987328 RX 157833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1294 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 968651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6625394192 RX 2337620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6595689122 RX 157586 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 951267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6776762301 RX 2195552 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6747681829 RX 157962 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 969629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6634593908 RX 2339660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6604867305 RX 157712 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 951988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6779540022 RX 2197448 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6750429241 RX 158091 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1408 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 970606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6643751768 RX 2341724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6614003715 RX 157841 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 952730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6782480756 RX 2199368 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6753339203 RX 158217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 971587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6652923243 RX 2343764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6623153224 RX 157970 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 953453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6785192496 RX 2201312 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6756021853 RX 158346 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 972565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6662103183 RX 2345804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6632311673 RX 158096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 954189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6787899176 RX 2203208 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6758697153 RX 158475 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 973542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6671289717 RX 2347868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6641476712 RX 158225 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 954921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6790608773 RX 2205128 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6761376939 RX 158601 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 974521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6680461255 RX 2349908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6650626291 RX 158354 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 955628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6793344666 RX 2207072 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6764083351 RX 158730 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 975499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 96920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6689634667 RX 2351948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6659778225 RX 158480 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 956354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 90996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6796038146 RX 2208968 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6766746745 RX 158859 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 976477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6698817553 RX 2354012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6668939620 RX 158609 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 957091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6798751473 RX 2210888 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6769429465 RX 158985 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 977456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6707996516 RX 2356052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6678096605 RX 158738 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 957821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6801441643 RX 2212832 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6772089915 RX 159114 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 978434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6717170120 RX 2358092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6687248737 RX 158864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 958551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6804212290 RX 2214728 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6774830463 RX 159243 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 979412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6726359342 RX 2360156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6696416452 RX 158993 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 959266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6806906665 RX 2216648 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6777494918 RX 159369 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 980391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6735545025 RX 2362196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6705580140 RX 159122 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 959983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6809606500 RX 2218592 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6780165767 RX 159498 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 981369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6744705573 RX 2364236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6714719239 RX 159248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 960707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6812297429 RX 2220488 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6782826227 RX 159627 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 982348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6753874953 RX 2366300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6723867148 RX 159377 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 961425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6814988837 RX 2222408 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6785488640 RX 159753 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1029 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 983324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6763037146 RX 2368340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6733007403 RX 159506 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 962152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6817790457 RX 2224328 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6788260300 RX 159882 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 984275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6771936421 RX 2370380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6741885847 RX 159632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 962888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6820765912 RX 2226248 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6791205379 RX 160008 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 985227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6780813484 RX 2372444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6750742103 RX 159761 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 963618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 91796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 6823709448 RX 2228192 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6794118795 RX 160137 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1447 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 986203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 97862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6789972622 RX 2374584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6759879801 RX 160038 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 963678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 96c8: ulsch_rounds 91833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 6823872990 RX 2230495 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6794272618 RX 161038 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 154 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 986618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 8379: ulsch_rounds 97950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 6793654132 RX 2377989 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6763543645 RX 161795 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 963700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 91867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 6823877640 RX 2232626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6794274511 RX 161686 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 987330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6796240037 RX 2380229 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6766099099 RX 162073 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 964658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 21 +UE 96c8: ulsch_rounds 91952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6827767764 RX 2234713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6798153886 RX 161948 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 988043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6798927598 RX 2382269 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6768756735 RX 162199 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 965604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6836222246 RX 2236633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6806588437 RX 162074 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 988794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6801642567 RX 2384333 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6771439585 RX 162328 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 966547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6845250403 RX 2238577 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6815594528 RX 162203 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 989544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6804322562 RX 2386373 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6774088389 RX 162457 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 967493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6854340808 RX 2240473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6824663720 RX 162332 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 990287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6807078415 RX 2388413 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6776814212 RX 162583 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 968436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6863421799 RX 2242393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6833723530 RX 162458 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1001 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 991000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6809781038 RX 2390477 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6779486673 RX 162712 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 969382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6872482920 RX 2244337 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6842762520 RX 162587 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 991728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6812453245 RX 2392517 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6782126475 RX 162841 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 970327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6881561547 RX 2246233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6851819956 RX 162716 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 992461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6815146217 RX 2394557 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6784790064 RX 162967 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 971271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6890652843 RX 2248153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6860890040 RX 162842 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 959 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 993178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6817868115 RX 2396621 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6787481791 RX 163096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 972217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6899744249 RX 2250097 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6869959309 RX 162971 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 993901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6820517194 RX 2398661 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6790099388 RX 163225 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 973159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6908788631 RX 2251993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6878982583 RX 163100 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 994630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6823234480 RX 2400701 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6792786704 RX 163351 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 974105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6917873528 RX 2253913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6888046280 RX 163226 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 995372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 98980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6826036214 RX 2402765 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6795558459 RX 163480 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 975050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6926955772 RX 2255857 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6897106353 RX 163355 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1147 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 996126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6829089617 RX 2404805 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6798579330 RX 163609 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 975994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6936040540 RX 2257753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6906169930 RX 163484 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 996846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6831742874 RX 2406845 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6801204347 RX 163735 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 976939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 92991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6945110077 RX 2259673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6915218297 RX 163610 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 664 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 997581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6834449892 RX 2408909 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6803879832 RX 163864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 977883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6954159294 RX 2261617 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6924245407 RX 163739 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 963 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 998304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6837125197 RX 2410949 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6806525582 RX 163993 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 978830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6963275745 RX 2263513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6933340597 RX 163868 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 999012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6839813673 RX 2412989 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6809184670 RX 164119 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 979772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6972313791 RX 2265433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6942357540 RX 163994 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 999741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6842465445 RX 2415053 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6811806703 RX 164248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 980718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6981390530 RX 2267377 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6951412120 RX 164123 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1000483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6845195144 RX 2417093 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6814505835 RX 164377 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 981664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6990503204 RX 2269273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6960503523 RX 164252 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 976 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1001222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6847958997 RX 2419133 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6817239003 RX 164503 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 982606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 6999550148 RX 2271193 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6969529349 RX 164378 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1001973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6850707104 RX 2421197 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6819953010 RX 164632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 983553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7008631740 RX 2273137 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6978589287 RX 164507 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1002704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6853365992 RX 2423237 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6822581001 RX 164761 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 984496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7017702703 RX 2275033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6987638625 RX 164636 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1003428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 99918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6856033906 RX 2425277 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6825218880 RX 164887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 985441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7026811285 RX 2276953 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 6996725961 RX 164762 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1004180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6858737667 RX 2427341 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6827890365 RX 165016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 986385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7035873380 RX 2278897 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7005766415 RX 164891 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1004899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6861378569 RX 2429381 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6830500527 RX 165145 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 987329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7044920754 RX 2280793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7014792173 RX 165020 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1005619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6864062053 RX 2431421 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6833153752 RX 165271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 988275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 93951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7054025496 RX 2282713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7023875671 RX 165146 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1006361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6866744562 RX 2433485 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6835803983 RX 165400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 989218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7063089958 RX 2284657 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7032918493 RX 165275 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1007102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6869496931 RX 2435525 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6838526837 RX 165529 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 990164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7072153079 RX 2286553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7041959968 RX 165404 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1007832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100430/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6872225551 RX 2437565 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6841225974 RX 165655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 991108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7081229210 RX 2288473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7051014918 RX 165530 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1008560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6874889906 RX 2439629 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6843859943 RX 165784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 992054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7090324971 RX 2290417 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7060088967 RX 165659 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1009281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6877596030 RX 2441669 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6846535383 RX 165913 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 993000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7099388476 RX 2292313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7069130825 RX 165788 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1010008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6880297357 RX 2443709 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6849206332 RX 166039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 993942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7108449757 RX 2294233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7078170962 RX 165914 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1010730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6882972320 RX 2445773 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6851852082 RX 166168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 994889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7117562708 RX 2296177 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7087262195 RX 166043 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1011464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6885688079 RX 2447813 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6854537941 RX 166297 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 995831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7126607817 RX 2298073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7096285734 RX 166172 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 972 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1012188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 100942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6888348064 RX 2449853 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6857167399 RX 166423 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 996777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7135687467 RX 2299993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7105344196 RX 166298 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1012911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6891005021 RX 2451917 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6859793888 RX 166552 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 997723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7144777084 RX 2301937 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7114412118 RX 166427 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1013643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6893706518 RX 2453957 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6862464867 RX 166681 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 998666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7153854479 RX 2303833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7123467847 RX 166556 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1014376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6896375589 RX 2455997 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6865103182 RX 166807 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 999611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7162943408 RX 2305753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7132535572 RX 166682 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1015114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6899093995 RX 2458061 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6867790545 RX 166936 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1000553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 94992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7171977981 RX 2307697 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7141548562 RX 166811 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1015844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6901752819 RX 2460101 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6870418494 RX 167065 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1001500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7181068690 RX 2309593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7150617561 RX 166940 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1016593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6904419250 RX 2462141 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6873052408 RX 167191 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1002446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7190174836 RX 2311513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7159702464 RX 167066 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 672 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1017321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6907036322 RX 2464205 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6875638888 RX 167320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1003388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7199202497 RX 2313457 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7168708562 RX 167195 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1018061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6909727029 RX 2466245 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6878299513 RX 167449 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1004335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7208293398 RX 2315353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7177777756 RX 167324 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1018817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101710/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6912444226 RX 2468285 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6880985332 RX 167575 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1005278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7217374389 RX 2317273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7186837561 RX 167450 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1070 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1019574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6915241400 RX 2470349 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6883751194 RX 167704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1006223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7226434987 RX 2319217 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7195876543 RX 167579 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1020305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6917889501 RX 2472389 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6886368831 RX 167833 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1007169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7235514083 RX 2321113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7204933985 RX 167708 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1021045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 101966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6920603092 RX 2474429 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6889051636 RX 167959 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1008113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7244605379 RX 2323033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7214004075 RX 167834 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1021805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6923741555 RX 2476493 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6892156951 RX 168088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1009058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7253696343 RX 2324977 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7223073339 RX 167963 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1963 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1022547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6926424203 RX 2478533 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6894810156 RX 168217 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1010001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7262741221 RX 2326873 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7232096618 RX 168092 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1023278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6929147368 RX 2480573 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6897503290 RX 168343 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1010947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7271826118 RX 2328793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7241160319 RX 168218 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1024010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6931914384 RX 2482637 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6900241044 RX 168472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1011891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 95952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7280907866 RX 2330737 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7250220388 RX 168347 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1024748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6934571254 RX 2484677 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6902867488 RX 168601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1012836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7289993130 RX 2332633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7259283959 RX 168476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1025473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6937307686 RX 2486717 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6905574075 RX 168727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1013781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7299062667 RX 2334553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7268332324 RX 168602 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1026204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6939990616 RX 2488781 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6908225768 RX 168856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1014724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7308111388 RX 2336497 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7277359436 RX 168731 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1026924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6942641835 RX 2490821 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6910847771 RX 168985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1015672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7317228335 RX 2338393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7286454615 RX 168860 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1027650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6945315514 RX 2492861 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6913489075 RX 169111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1016614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7326266381 RX 2340313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7295471564 RX 168986 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1028383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6948030019 RX 2494925 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6916173397 RX 169240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1017559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7335342597 RX 2342257 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7304526135 RX 169115 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1029110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6950702877 RX 2496965 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6918816238 RX 169369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1018506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7344455740 RX 2344153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7313617556 RX 169244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1029826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 102990/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6953426756 RX 2499005 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6921510889 RX 169495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1019448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7353502684 RX 2346073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7322643383 RX 169370 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 992 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1030544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6956105065 RX 2501069 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6924159623 RX 169624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1020395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7362584303 RX 2348017 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7331703318 RX 169499 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1031291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6958913447 RX 2503109 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6926935789 RX 169753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1021338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7371655293 RX 2349913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7340752654 RX 169628 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1021 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1032007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6961573304 RX 2505149 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6929565272 RX 169879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1022283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7380763875 RX 2351833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7349839984 RX 169754 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1032754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6964288830 RX 2507213 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6932247611 RX 170008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1023226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7389825474 RX 2353777 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7358880432 RX 169883 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 916 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1033499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6967006832 RX 2509253 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6934934882 RX 170137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1024171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 96992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7398873344 RX 2355673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7367906199 RX 170012 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1034230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6969689553 RX 2511293 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6937587116 RX 170263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1025117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7407978086 RX 2357593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7376989704 RX 170138 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1034978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6972392699 RX 2513357 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6940259527 RX 170392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1026059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7417042052 RX 2359537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7386032525 RX 170267 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 924 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1035744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6975441848 RX 2515397 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6943277429 RX 170521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1027006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7426105669 RX 2361433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7395073999 RX 170396 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1036469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6978065356 RX 2517437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6945871374 RX 170647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1027950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7435181800 RX 2363353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7404128953 RX 170522 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 675 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1037207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6980711895 RX 2519501 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6948488986 RX 170776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1028895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7444277065 RX 2365297 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7413202999 RX 170651 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1037948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 103930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6983391420 RX 2521541 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6951137730 RX 170905 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1029842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7453341012 RX 2367193 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7422244860 RX 170780 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1038698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6986103313 RX 2523581 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6953817611 RX 171031 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1030784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7462402293 RX 2369113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7431285001 RX 170906 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1039428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6988782877 RX 2525645 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6956466330 RX 171160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1031730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7471514775 RX 2371057 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7440376234 RX 171035 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1040169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6991467025 RX 2527685 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6959119024 RX 171289 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1032673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7480560407 RX 2372953 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7449399773 RX 171164 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1040925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104270/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6994154238 RX 2529725 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6961775659 RX 171415 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1033619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7489640057 RX 2374873 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7458458233 RX 171290 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1041651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6996858827 RX 2531789 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6964451064 RX 171544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1034564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7498729178 RX 2376817 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7467526148 RX 171419 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 954 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1042394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 6999562288 RX 2533829 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6967124734 RX 171673 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1035508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 97952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7507807069 RX 2378713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7476581878 RX 171548 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1043136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7002342409 RX 2535869 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6969874577 RX 171799 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1036453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7516895998 RX 2380633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7485649596 RX 171674 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1111 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1079 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1043873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7005117356 RX 2537933 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6972619130 RX 171928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1037394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7525930075 RX 2382577 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7494662588 RX 171803 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 639 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1044594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7007751711 RX 2539973 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6975222363 RX 172057 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1038342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7535021280 RX 2384473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7503731587 RX 171932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1045341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7010481985 RX 2542013 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6977921455 RX 172183 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1039288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7544127426 RX 2386393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7512816491 RX 172058 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1046071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7013163752 RX 2544077 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6980573153 RX 172312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1040229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7553154591 RX 2388337 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7521822582 RX 172187 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1046802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 104954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7015859146 RX 2546117 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6983236672 RX 172441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1041177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7562245934 RX 2390233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7530891782 RX 172316 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1047544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7018540243 RX 2548157 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6985885401 RX 172567 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1042120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7571326925 RX 2392153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7539951590 RX 172442 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1048265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7021211656 RX 2550221 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6988526740 RX 172696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1043064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7580387054 RX 2394097 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7548990571 RX 172571 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1048999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7023861172 RX 2552261 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6991144342 RX 172825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1044011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7589466673 RX 2395993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7558048019 RX 172700 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1049727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7026556681 RX 2554301 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6993807891 RX 172951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1044955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7598557969 RX 2397913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7567118113 RX 172826 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1050475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7029298522 RX 2556365 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6996518914 RX 173080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1045899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7607648437 RX 2399857 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7576187375 RX 172955 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1051194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7031943212 RX 2558405 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 6999132085 RX 173209 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1046842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7616693315 RX 2401753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7585210651 RX 173084 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 694 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1051914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105550/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7034573395 RX 2560445 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7001731878 RX 173335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1047789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 98991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7625778708 RX 2403673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7594274344 RX 173210 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1052673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7037290047 RX 2562509 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7004417652 RX 173464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1048732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7634859960 RX 2405617 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7603334405 RX 173339 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1053405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7039962904 RX 2564549 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7007058926 RX 173593 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1049677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7643945224 RX 2407513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7612397988 RX 173468 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1060 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1054151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7042739742 RX 2566589 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7009804025 RX 173719 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1050623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7653015257 RX 2409433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7621446347 RX 173594 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1032 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1054902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7045552536 RX 2568653 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7012586169 RX 173848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1051565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7662063482 RX 2411377 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7630473452 RX 173723 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1056 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1055650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 105978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7048504853 RX 2570693 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7015507706 RX 173977 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1052513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7671180402 RX 2413273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7639568639 RX 173852 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1637 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1056372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7051225780 RX 2572733 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7018199483 RX 174103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1053456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7680218917 RX 2415193 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7648585595 RX 173978 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1057099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7053899857 RX 2574797 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7020843786 RX 174232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1054400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7689294664 RX 2417137 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7657640167 RX 174107 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1057824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7056552793 RX 2576837 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7023465859 RX 174361 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1055347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7698407834 RX 2419033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7666731582 RX 174236 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1058545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7059295352 RX 2578877 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7026179380 RX 174487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1056290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7707455274 RX 2420953 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7675757412 RX 174362 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1059287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7061971418 RX 2580941 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7028824219 RX 174616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1057236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7716536397 RX 2422897 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7684817343 RX 174491 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1060012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7064658796 RX 2582981 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7031480323 RX 174745 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1058179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7725607387 RX 2424793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7693866669 RX 174620 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1060736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7067349626 RX 2585021 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7034140938 RX 174871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1059125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 99951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7734716465 RX 2426713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7702954016 RX 174746 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1061472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7070036564 RX 2587085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7036797037 RX 175000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1060068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7743778064 RX 2428657 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7711994464 RX 174875 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 909 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1062222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7072738099 RX 2589125 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7039466544 RX 175129 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1061012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7752825438 RX 2430553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7721020228 RX 175004 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1062957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106830/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7075449484 RX 2591165 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7042147847 RX 175255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1061959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7761930676 RX 2432473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7730103730 RX 175130 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1063675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 106916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7078052697 RX 2593229 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7044720989 RX 175384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1062901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7770994642 RX 2434417 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7739146549 RX 175259 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1064416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7080755513 RX 2595269 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7047391958 RX 175513 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1063847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7780057736 RX 2436313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7748188029 RX 175388 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1065164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7083513941 RX 2597309 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7050117756 RX 175639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1064792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7789134336 RX 2438233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7757242987 RX 175514 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1065883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7086183325 RX 2599373 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7052757558 RX 175768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1065737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7798229601 RX 2440177 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7766317037 RX 175643 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1382 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1066634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7089197903 RX 2601413 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7055741269 RX 175897 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1066683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7807293106 RX 2442073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7775358899 RX 175772 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1124 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1067371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7091860763 RX 2603453 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7058373621 RX 176023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1067626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7816354883 RX 2443993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7784399040 RX 175898 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1068126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7094955766 RX 2605517 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7061437415 RX 176152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1068572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7825467365 RX 2445937 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7793490267 RX 176027 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1068837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7097594170 RX 2607557 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7064047096 RX 176281 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1069514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7834512501 RX 2447833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7802513801 RX 176156 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1069565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7100274549 RX 2609597 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7066696266 RX 176407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1070461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7843592647 RX 2449753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7811572258 RX 176282 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1070300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7102926420 RX 2611661 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7069318274 RX 176536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1071406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 100992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7852681768 RX 2451697 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7820640172 RX 176411 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1071066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7105643000 RX 2613701 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7072002631 RX 176665 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1072349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7861759163 RX 2453593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7829695900 RX 176540 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1071791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7108314201 RX 2615741 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7074642473 RX 176791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1073295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7870848588 RX 2455513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7838763624 RX 176666 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1072522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 107940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7110938401 RX 2617805 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7077236318 RX 176920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1074236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7879882665 RX 2457457 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7847776616 RX 176795 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1073256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7113671560 RX 2619845 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7079939891 RX 177049 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1075183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7888973347 RX 2459353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7856845613 RX 176924 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1073976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7116391487 RX 2621885 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7082630151 RX 177175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1076130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7898079962 RX 2461273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7865930518 RX 177050 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1002 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1074714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7119067480 RX 2623949 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7085275916 RX 177304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1077071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7907107127 RX 2463217 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7874936615 RX 177179 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1473 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1075483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7122061529 RX 2625989 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7088238884 RX 177433 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1078018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7916198028 RX 2465113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7884005811 RX 177308 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 967 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1076219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7124739824 RX 2628029 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7090887548 RX 177559 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1078962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7925279515 RX 2467033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7893065625 RX 177434 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1076995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7127658584 RX 2630093 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7093773397 RX 177688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1079906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7934339644 RX 2468977 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7902104609 RX 177563 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1572 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1077713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7130344823 RX 2632133 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7096429571 RX 177817 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1080852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7943418767 RX 2470873 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7911162055 RX 177692 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1064 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1078449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7133146316 RX 2634173 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7099201366 RX 177943 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1081797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7952510559 RX 2472793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7920232138 RX 177818 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1079185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7135851875 RX 2636237 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7101876816 RX 178072 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1082741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 101952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7961601027 RX 2474737 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7929301402 RX 177947 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1079919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7138486150 RX 2638277 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7104480559 RX 178201 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1083683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7970645409 RX 2476633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7938324673 RX 178076 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1080677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7141560866 RX 2640317 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7107524011 RX 178327 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1084631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7979731298 RX 2478553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7947388369 RX 178202 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 664 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1081410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 108964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7144220243 RX 2642381 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7110153449 RX 178456 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1085574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7988812550 RX 2480497 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7956448429 RX 178331 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1082147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7146922489 RX 2644421 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7112824443 RX 178585 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1086518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 7997897318 RX 2482393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7965512001 RX 178460 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1082882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7149621003 RX 2646461 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7115492393 RX 178711 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1087465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8006967793 RX 2484313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7974560379 RX 178586 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1083607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7152325014 RX 2648525 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7118164859 RX 178840 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1088407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8016016018 RX 2486257 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7983587486 RX 178715 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1084343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7155012284 RX 2650565 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7120821048 RX 178969 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1089354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8025132469 RX 2488153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 7992682667 RX 178844 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 935 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1085076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7157707368 RX 2652605 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7123484597 RX 179095 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1090298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8034171507 RX 2490073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8001699624 RX 178970 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1085827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7160425081 RX 2654669 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7126170386 RX 179224 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1091242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8043247254 RX 2492017 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8010754191 RX 179099 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1086562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7163119731 RX 2656709 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7128834064 RX 179353 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1092188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8052359928 RX 2493913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8019845601 RX 179228 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1087316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7165893193 RX 2658749 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7131576170 RX 179479 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1093132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8061407864 RX 2495833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8028871438 RX 179354 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1008 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1088051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7168612246 RX 2660813 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7134263406 RX 179608 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1094078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8070488987 RX 2497777 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8037931372 RX 179483 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 940 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1088778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7171334260 RX 2662853 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7136956615 RX 179737 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1095020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 102992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8079559481 RX 2499673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8046980702 RX 179612 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1089535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7174062699 RX 2664893 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7139652778 RX 179863 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1095967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8088669055 RX 2501593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8056068042 RX 179738 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1090285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 109988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7176806448 RX 2666957 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7142365243 RX 179992 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1096910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8097730654 RX 2503537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8065108499 RX 179867 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1091019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7179464574 RX 2668997 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7144993219 RX 180121 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1097853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8106777532 RX 2505433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8074134260 RX 179996 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1091737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 7182128518 RX 2671121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7147627240 RX 180319 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1098801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8115883212 RX 2507353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8083217768 RX 180122 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 375 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1091756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: ulsch_rounds 110194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 7182136044 RX 2673343 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7147627898 RX 181152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1099764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8125167615 RX 2509537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8092480503 RX 180476 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1091960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: ulsch_rounds 110243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 7182570531 RX 2675710 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7148058486 RX 181894 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1100140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 103488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8127849361 RX 2513110 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8095144471 RX 182287 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1092935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 24 +UE 8379: ulsch_rounds 110332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7187346043 RX 2677852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7152821208 RX 182096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1100853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8130497034 RX 2515006 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8097761933 RX 182413 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1093913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7196301780 RX 2679892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7161755915 RX 182225 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1101599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8133252308 RX 2516950 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8100487155 RX 182542 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1094891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7205491002 RX 2681932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7170923631 RX 182351 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1102331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8136022697 RX 2518846 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8103227633 RX 182671 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1095870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7214676685 RX 2683996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7180087325 RX 182480 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1103056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8138789288 RX 2520766 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8105963640 RX 182797 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 916 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1096848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7223837233 RX 2686036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7189226425 RX 182609 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1103778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8141506967 RX 2522710 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8108650771 RX 182926 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1097827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7233006613 RX 2688076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7198374336 RX 182735 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1104501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 103968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8144152536 RX 2524606 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8111265775 RX 183055 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1059 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1601 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1098806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7242200297 RX 2690140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7207546008 RX 182864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1105268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8147270418 RX 2526526 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8114351694 RX 183181 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1099783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 110930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7251372494 RX 2692180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7216696737 RX 182993 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1105998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8149957747 RX 2528470 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8117007728 RX 183310 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1100762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7260532976 RX 2694220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7225835769 RX 183119 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1106732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8152727705 RX 2530366 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8119748226 RX 183439 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1101741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7269713604 RX 2696284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7234994420 RX 183248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1107479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8155437294 RX 2532286 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8122427531 RX 183565 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1102719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7278896106 RX 2698324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7244155431 RX 183377 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1108207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8158157840 RX 2534230 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8125118177 RX 183694 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1103697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111270/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7288081485 RX 2700364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7253319311 RX 183503 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1108954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8161027507 RX 2536126 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8127958009 RX 183823 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 988 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1104676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7297255393 RX 2702428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7262471252 RX 183632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1109676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8163727742 RX 2538046 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8130629774 RX 183949 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1105653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7306427590 RX 2704468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7271621983 RX 183761 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1110417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8166650314 RX 2539990 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8133521937 RX 184078 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1472 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1106632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7315623466 RX 2706508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7280796336 RX 183887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1111135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8169376706 RX 2541886 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8136219417 RX 184207 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1107611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7324790846 RX 2708572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7289941759 RX 184016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1111871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8172108775 RX 2543806 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8138921413 RX 184333 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1108589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7333965731 RX 2710612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7299095171 RX 184145 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1112606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8174841604 RX 2545750 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8141623359 RX 184462 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1029 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1109567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7343165255 RX 2712652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7308273173 RX 184271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1113350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 104928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8177879791 RX 2547646 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8144632154 RX 184591 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1110546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7352326299 RX 2714832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7317412279 RX 184400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1114094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8180746780 RX 2549566 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8147469007 RX 184717 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1111525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 111955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7361488062 RX 2716872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7326552584 RX 184529 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1114800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8183494205 RX 2551510 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8150187270 RX 184846 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1112503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7370674530 RX 2718912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7335717550 RX 184655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1115522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8186201586 RX 2553406 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8152865534 RX 184975 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1113480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7379851255 RX 2720976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7344872307 RX 184784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1116242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8188918478 RX 2555326 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8155552690 RX 185101 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1114460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7389028570 RX 2723016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7354028133 RX 184913 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1116981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8191656174 RX 2557270 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8158259112 RX 185230 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1115438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7398202174 RX 2725056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7363180265 RX 185039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1117702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8194331722 RX 2559166 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8160904792 RX 185359 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1116416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7407374867 RX 2727120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7372330999 RX 185168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1118422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8197039937 RX 2561086 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8163583046 RX 185485 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1117395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7416570551 RX 2729160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7381505158 RX 185297 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1119141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8199721902 RX 2563030 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8166235625 RX 185614 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1118373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7425744155 RX 2731200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7390657292 RX 185423 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1119886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8202485752 RX 2564926 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8168969189 RX 185743 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1002 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1119351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7434916656 RX 2733264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7399807825 RX 185552 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1120623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8205309583 RX 2566846 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8171762593 RX 185869 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1052 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1120329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7444102035 RX 2735304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7408971707 RX 185681 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1121352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8208038312 RX 2568790 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8174461575 RX 185998 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1121307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7453268919 RX 2737344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7418117129 RX 185807 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1122072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8210700832 RX 2570686 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8177094368 RX 186127 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1122287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7462440268 RX 2739408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7427266502 RX 185936 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1122798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 105967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8213402867 RX 2572606 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8179766699 RX 186253 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1123265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 112979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7471639984 RX 2741448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7436444696 RX 186065 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1123520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8216111283 RX 2574550 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8182445884 RX 186382 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1124242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7480797844 RX 2743488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7445581123 RX 186191 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1124251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8218881581 RX 2576446 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8185186422 RX 186511 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1056 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1125223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7489969319 RX 2745552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7454730623 RX 186320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1124961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8221643241 RX 2578366 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8187918509 RX 186637 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1126201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7499149259 RX 2747592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7463889077 RX 186449 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1125704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8224418545 RX 2580310 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8190663518 RX 186766 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 930 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1127178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7508335793 RX 2749632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7473054107 RX 186575 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1126436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8227128156 RX 2582206 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8193343249 RX 186895 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1128157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7517507331 RX 2751696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7482203689 RX 186704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1127166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8229840341 RX 2584126 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8196026004 RX 187021 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1129135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7526680743 RX 2753736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7491355630 RX 186833 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1127890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8232564819 RX 2586070 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8198720565 RX 187150 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1130113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7535863629 RX 2755776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7500517024 RX 186959 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1128619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8235279217 RX 2587966 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8201404697 RX 187279 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1131092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7545042592 RX 2757840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7509674005 RX 187088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1129358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8238018813 RX 2589886 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8204113582 RX 187405 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1132070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7554216196 RX 2759880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7518826127 RX 187217 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1130090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8240747158 RX 2591830 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8206811643 RX 187534 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1133048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7563405418 RX 2761920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7527993837 RX 187343 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1130829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8243487545 RX 2593726 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8209522000 RX 187663 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 959 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1134027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 113917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7572591101 RX 2763984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7537157524 RX 187472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1131559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 106927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8246192338 RX 2595646 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8212197320 RX 187789 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1009 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1135005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7581751649 RX 2766024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7546296628 RX 187601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1132305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8248959493 RX 2597590 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8214933833 RX 187918 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1135984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7590921029 RX 2768064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7555444533 RX 187727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1133028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8251673151 RX 2599486 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8217618000 RX 188047 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1136963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7600114713 RX 2770128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7564616210 RX 187856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1133747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8254403907 RX 2601406 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8220319430 RX 188173 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 924 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1137940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7609286910 RX 2772168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7573766937 RX 187985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1134473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8257128427 RX 2603350 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8223014016 RX 188302 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1138919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7618447392 RX 2774208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7582905964 RX 188111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1135194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8259885693 RX 2605246 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8225743104 RX 188431 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1001 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1139897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7627627524 RX 2776272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7592064615 RX 188240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1135922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8262636736 RX 2607166 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8228464386 RX 188557 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1140876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7636810522 RX 2778312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7601225626 RX 188369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1136654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8265358629 RX 2609110 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8231156018 RX 188686 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1141854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7645995901 RX 2780352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7610389506 RX 188495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1137372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8268062699 RX 2611006 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8233831308 RX 188815 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1142832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7655169313 RX 2782416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7619541443 RX 188624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1138099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8270825120 RX 2612926 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8236563880 RX 188941 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1080 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1143810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7664342006 RX 2784456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7628692174 RX 188753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1138838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8273572966 RX 2614870 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8239281147 RX 189070 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1144789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7673537882 RX 2786496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7637866526 RX 188879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1139577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8276266329 RX 2616766 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8241945612 RX 189199 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1145767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 114941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7682704766 RX 2788560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7647011949 RX 189008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1140316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8278991300 RX 2618686 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8244640173 RX 189325 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1543 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1146746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7691880147 RX 2790600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7656165361 RX 189137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1141075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 107968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8282038471 RX 2620630 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8247656819 RX 189454 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1025 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1147724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7701079671 RX 2792640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7665343350 RX 189263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1141801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8284767490 RX 2622526 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8250355831 RX 189583 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1148702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7710240219 RX 2794704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7674482457 RX 189392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1142538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8287510709 RX 2624446 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8253069688 RX 189709 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1149682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7719402478 RX 2796744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7683622766 RX 189521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1143271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8290218650 RX 2626390 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8255747907 RX 189838 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1042 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1150660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7728588946 RX 2798784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7692787730 RX 189647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1144005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8293027785 RX 2628286 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8258527027 RX 189967 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1151635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7737754678 RX 2800906 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7701932011 RX 189848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1144748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8296125818 RX 2630206 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8261595152 RX 190093 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1152616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7746932489 RX 2802946 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7711087843 RX 189974 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1145475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8298867100 RX 2632150 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8264306037 RX 190222 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1153594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7756106093 RX 2805010 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7720239968 RX 190103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1146208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8301604564 RX 2634046 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8267013914 RX 190351 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1154571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7765278290 RX 2807050 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7729390700 RX 190232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1146921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8304301585 RX 2635966 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8269681779 RX 190477 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1155551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7774474470 RX 2809090 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7738564866 RX 190358 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1147652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8307054882 RX 2637910 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8272404017 RX 190606 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1156529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7783648074 RX 2811154 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7747716999 RX 190487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1148381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8309794064 RX 2639806 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8275113889 RX 190735 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1157506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 115968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7792820079 RX 2813194 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7756867538 RX 190616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1149111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8312518823 RX 2641726 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8277808420 RX 190861 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1158485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7802005954 RX 2815234 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7766031415 RX 190742 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1149822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 108928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8315227239 RX 2643670 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8280487655 RX 190990 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1159463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7811172838 RX 2817298 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7775176839 RX 190871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1150564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8317955069 RX 2645566 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8283185626 RX 191119 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1253 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1160442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7820343691 RX 2819338 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7784326218 RX 191000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1151328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8320922550 RX 2647486 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8286121728 RX 191245 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1107 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1161421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7829543903 RX 2821378 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7793504408 RX 191126 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1152045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8323592152 RX 2649430 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8288762381 RX 191374 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1162398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7838701763 RX 2823442 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7802640831 RX 191255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1152766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8326252927 RX 2651326 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8291392200 RX 191503 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1163378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7847872742 RX 2825482 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7811790335 RX 191384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1153500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8328984702 RX 2653246 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8294094111 RX 191629 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1164357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7857053178 RX 2827522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7820948799 RX 191510 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1154220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8331746746 RX 2655190 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8296827199 RX 191758 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1165334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7866239712 RX 2829586 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7830113832 RX 191639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1154959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8334515259 RX 2657086 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8299564758 RX 191887 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1033 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1207 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1166312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7875410754 RX 2831626 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7839263401 RX 191768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1155707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8337363004 RX 2659006 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8302382325 RX 192013 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1167291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7884584662 RX 2833666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7848415343 RX 191894 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1156468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8340349356 RX 2660950 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8305337788 RX 192142 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1426 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1168269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7893767548 RX 2835730 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7857576732 RX 192023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1157186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8343065498 RX 2662846 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8308024498 RX 192271 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1169247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 116992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7902946015 RX 2837770 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7866733711 RX 192152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1157904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8345794296 RX 2664766 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8310723951 RX 192397 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1170226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7912120115 RX 2839810 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7875885849 RX 192278 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1158635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8348533471 RX 2666710 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8313433302 RX 192526 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1171204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7921309337 RX 2841874 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7885053563 RX 192407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1159393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 109968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8351627008 RX 2668606 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8316496460 RX 192655 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1172182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7930494524 RX 2843914 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7894217248 RX 192536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1160131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8354350631 RX 2670526 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8319190045 RX 192781 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1173161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7939655568 RX 2845954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7903356346 RX 192662 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1160861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8357079661 RX 2672470 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8321889087 RX 192910 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1174140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7948824948 RX 2848018 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7912504260 RX 192791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1161583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8359757793 RX 2674366 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8324537731 RX 193039 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1175118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7958018136 RX 2850058 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7921675935 RX 192920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1162308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8362435306 RX 2676286 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8327186340 RX 193165 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1176096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7967190829 RX 2852098 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7930826671 RX 193046 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1163027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8365117098 RX 2678230 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8329837878 RX 193294 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1177075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7976351311 RX 2854162 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7939965696 RX 193175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1163753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8367823462 RX 2680126 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8332514595 RX 193423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1178053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7985531443 RX 2856202 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7949124340 RX 193304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1164488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8370574567 RX 2682046 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8335235351 RX 193549 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1179032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 7994714441 RX 2858242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7958285350 RX 193430 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1165204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8373268241 RX 2683990 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8337899236 RX 193678 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1180010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 117930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8003899820 RX 2860306 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7967449231 RX 193559 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1165923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8376026417 RX 2685886 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8340627893 RX 193807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1013 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1180988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8013073232 RX 2862346 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7976601166 RX 193688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1166652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8378796579 RX 2687806 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8343368351 RX 193933 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1181966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8022245925 RX 2864386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7985751904 RX 193814 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1167357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8381496651 RX 2689750 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8346039205 RX 194062 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1182945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8031441801 RX 2866450 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 7994926254 RX 193943 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1168064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 110928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8384176560 RX 2691646 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8348689286 RX 194191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1183923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8040608685 RX 2868490 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8004071677 RX 194072 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1168799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8386910973 RX 2693566 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8351395162 RX 194317 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1184902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8049784066 RX 2870530 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8013225085 RX 194198 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1169518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8389632512 RX 2695510 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8354085713 RX 194446 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1185880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8058983590 RX 2872594 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8022403085 RX 194327 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1170252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8392361686 RX 2697406 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8356784745 RX 194575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1186858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8068144138 RX 2874634 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8031542187 RX 194456 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1170987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8395085102 RX 2699326 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8359478810 RX 194701 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1187838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8077306397 RX 2876674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8040682493 RX 194582 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1171716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8397790252 RX 2701270 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8362154576 RX 194830 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1910 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1188816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8086492865 RX 2878738 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8049847465 RX 194711 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1172460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8400868036 RX 2703166 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8365201878 RX 194959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1189792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8095669094 RX 2880778 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8059002218 RX 194840 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1173182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8403567016 RX 2705086 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8367872742 RX 195085 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1190773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8104846905 RX 2882818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8068158050 RX 194966 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1173905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8406283485 RX 2707030 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8370559888 RX 195214 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1191751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 118954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8114020509 RX 2884882 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8077310173 RX 195095 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1174630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8409024034 RX 2708926 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8373270255 RX 195343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1192728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8123192706 RX 2886922 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8086460907 RX 195224 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1175359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8411715489 RX 2710846 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8375931211 RX 195469 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1193708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8132388886 RX 2888962 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8095635070 RX 195350 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1176083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8414422077 RX 2712790 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8378608979 RX 195598 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1194686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8141562490 RX 2891026 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8104787195 RX 195479 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1176822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8417197969 RX 2714686 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8381354429 RX 195727 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1481 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1195663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8150734495 RX 2893066 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8113937723 RX 195608 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1177571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 111967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8420141940 RX 2716606 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8384267870 RX 195853 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1196642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8159920370 RX 2895106 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8123101605 RX 195734 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1178306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8422957881 RX 2718550 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8387054345 RX 195982 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1010 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1197620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8169087254 RX 2897170 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8132247026 RX 195863 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1179022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8425658451 RX 2720446 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8389724194 RX 196111 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1198599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8178258107 RX 2899210 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8141396413 RX 195992 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1179745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8428361730 RX 2722366 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8392397991 RX 196237 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1199578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8187458319 RX 2901250 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8150574603 RX 196118 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1180482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8431084137 RX 2724310 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8395089640 RX 196366 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1200555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8196616179 RX 2903314 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8159711026 RX 196247 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1181207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8433795636 RX 2726206 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8397770816 RX 196495 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 910 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1201535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8205787158 RX 2905354 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8168860525 RX 196376 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1181947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8436532142 RX 2728126 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8400477218 RX 196621 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1202514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8214967594 RX 2907394 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8178018983 RX 196502 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1182693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8439551904 RX 2730070 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8403466812 RX 196750 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 625 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1203491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 119978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8224154128 RX 2909458 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8187184022 RX 196631 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1183424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8442266854 RX 2731966 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8406151029 RX 196879 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1204469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8233325170 RX 2911498 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8196333594 RX 196760 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1184133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8444983822 RX 2733886 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8408838155 RX 197005 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1205447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8242498582 RX 2913538 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8205485529 RX 196886 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1184864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8447692590 RX 2735830 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8411517891 RX 197134 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1206426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8251681964 RX 2915602 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8214646921 RX 197015 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1185599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8450467328 RX 2737726 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8414261378 RX 197263 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1207404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8260860431 RX 2917642 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8223803899 RX 197144 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1186317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 112927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8453237325 RX 2739646 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8417001370 RX 197389 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1107 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1208382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8270034035 RX 2919682 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8232956034 RX 197270 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1187051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8456112238 RX 2741590 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8419847200 RX 197518 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1209361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8279223753 RX 2921746 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8242123755 RX 197399 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1187784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8458845000 RX 2743486 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8422548210 RX 197647 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1210339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8288408940 RX 2923786 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8251287444 RX 197528 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1188500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8461575774 RX 2745406 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8425250181 RX 197773 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1211317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8297569488 RX 2925826 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8260426556 RX 197654 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1189228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8464364576 RX 2747350 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8428009895 RX 197902 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1212297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8306739364 RX 2927890 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8269574468 RX 197783 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1189960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8467118433 RX 2749246 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8430732649 RX 198031 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1213275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8315932552 RX 2929930 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8278746146 RX 197912 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1190678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8469781728 RX 2751166 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8433364916 RX 198157 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1214252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 120916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8325104749 RX 2931970 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8287896876 RX 198038 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1191405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8472493302 RX 2753110 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8436047586 RX 198286 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1215232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8334265727 RX 2934034 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8297035903 RX 198167 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1192133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8475202107 RX 2755006 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8438727257 RX 198415 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1216210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8343445859 RX 2936074 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8306194556 RX 198296 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1192898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8478295502 RX 2756926 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8441790410 RX 198541 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 585 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1217188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8352628361 RX 2938114 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8315355562 RX 198422 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1193630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8480949526 RX 2758870 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8444415848 RX 198670 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -57 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1218167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8361814236 RX 2940178 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8324519446 RX 198551 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1194345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8483640651 RX 2760766 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8447077790 RX 198799 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1219145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8370987648 RX 2942218 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8333671381 RX 198680 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1195086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8486372759 RX 2762756 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8449779824 RX 198989 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1220122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8380159845 RX 2944258 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8342822115 RX 198806 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1195820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 113970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8489106783 RX 2764700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8452484764 RX 199118 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1221102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8389356217 RX 2946322 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8351996473 RX 198935 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1196559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8491854756 RX 2766596 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8455202576 RX 199247 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 963 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1075 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1222080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8398523101 RX 2948362 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8361141894 RX 199064 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1197292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8494659124 RX 2768516 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8457977160 RX 199373 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1223058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8407697986 RX 2950402 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8370295309 RX 199190 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1198013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8497372091 RX 2770460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8460660341 RX 199502 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1224037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8416898006 RX 2952466 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8379473306 RX 199319 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1198757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8500090340 RX 2772356 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8463347507 RX 199631 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1225015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8426058554 RX 2954506 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8388612411 RX 199448 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1199482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8502782848 RX 2774276 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8466010916 RX 199757 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1225994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 121940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8435220317 RX 2956546 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8397752721 RX 199574 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1200215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8505497066 RX 2776220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8468695113 RX 199886 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1226973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8444407281 RX 2958610 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8406917692 RX 199703 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1200961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8508311074 RX 2778116 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8471478599 RX 200015 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1227949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8453583510 RX 2960650 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8416072451 RX 199832 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1201685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8511029403 RX 2780036 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8474167217 RX 200141 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1228929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8462760825 RX 2962690 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8425228274 RX 199958 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1202414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 114690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 8513769088 RX 2781980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8476877539 RX 200270 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 995 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1229905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 8471903434 RX 2964792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8434348979 RX 200161 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1202926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 96c8: ulsch_rounds 114768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 8515664589 RX 2784635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8478747766 RX 201244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 374 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -57 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1230872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8480974629 RX 2966982 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8443398878 RX 200441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1202939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: ulsch_rounds 114780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 8515668361 RX 2786027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8478747766 RX 201244 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1231167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8481993209 RX 2970519 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8444396036 RX 202245 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1203340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: ulsch_rounds 114845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8516767006 RX 2788502 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8479841230 RX 202089 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1231906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8484656184 RX 2972583 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8447028553 RX 202374 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1204308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 96c8: ulsch_rounds 114924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8522834247 RX 2790422 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8485893002 RX 202215 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1232648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8487331007 RX 2974623 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8449669892 RX 202503 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1205276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8532124425 RX 2792366 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8495161031 RX 202344 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1233395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8490039473 RX 2976663 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8452348221 RX 202629 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1206242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8541431106 RX 2794262 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8504446006 RX 202473 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1234148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8492782047 RX 2978727 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8455059239 RX 202758 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1207210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8550764713 RX 2796182 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8513757352 RX 202599 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1234901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8495528489 RX 2980767 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8457774628 RX 202887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1208177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8560064081 RX 2798126 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8523034525 RX 202728 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1235632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 122973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8498278911 RX 2982807 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8460494463 RX 203013 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1209144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8569365641 RX 2800022 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8532314389 RX 202857 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1236374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8500980598 RX 2984871 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8463165422 RX 203142 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1210112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8578699056 RX 2801942 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8541625545 RX 202983 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1237119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8503734826 RX 2986911 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8465887815 RX 203271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1211078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8588018074 RX 2803886 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8550922343 RX 203112 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1237859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8506479741 RX 2988951 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8468601732 RX 203397 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1212045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8597331601 RX 2805782 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8560214144 RX 203241 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1238599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8509189579 RX 2991015 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8471280642 RX 203526 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1213013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8606630903 RX 2807702 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8569491248 RX 203367 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1239343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8511907267 RX 2993055 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8473967893 RX 203655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1213980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8615946081 RX 2809646 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8578784201 RX 203496 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1187 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1240116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8514761239 RX 2995095 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8476790046 RX 203781 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1214947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8625272472 RX 2811542 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8588088836 RX 203625 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1240866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8517433064 RX 2997159 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8479429863 RX 203910 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1215915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8634566500 RX 2813462 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8597360717 RX 203751 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1241613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8520139969 RX 2999199 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8482105248 RX 204039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1216882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 115965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8643874034 RX 2815406 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8606646071 RX 203880 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1242397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8523242105 RX 3001239 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8485176387 RX 204165 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1217849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8653200233 RX 2817302 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8615950520 RX 204009 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1243137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8525892374 RX 3003303 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8487795451 RX 204294 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1218817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8662494672 RX 2819222 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8625222777 RX 204135 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1243900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8528618231 RX 3005343 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8490490142 RX 204423 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1219784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8671808377 RX 2821166 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8634514266 RX 204264 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1244657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 123997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8531397967 RX 3007383 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8493238255 RX 204549 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1220751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8681141296 RX 2823062 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8643825413 RX 204393 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 951 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1245426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8534280752 RX 3009447 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8496090063 RX 204678 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1221717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8690438360 RX 2824982 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8653100294 RX 204519 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1246171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8536949926 RX 3011487 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8498728418 RX 204807 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1222686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8699749440 RX 2826926 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8662389153 RX 204648 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1246930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8539682330 RX 3013527 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8501428952 RX 204933 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1223653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8709069495 RX 2828822 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8671687463 RX 204777 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1247679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8542352450 RX 3015591 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8504067312 RX 205062 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1224619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8718388321 RX 2830742 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8680984061 RX 204903 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 675 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1248437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8545055788 RX 3017631 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8506738291 RX 205191 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1225587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8727708680 RX 2832686 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8690282196 RX 205032 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1249187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8547777010 RX 3019671 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8509429472 RX 205317 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1226554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8737015679 RX 2834582 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8699567476 RX 205161 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1249936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8550461760 RX 3021735 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8512081681 RX 205446 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1227521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8746316301 RX 2836502 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8708845929 RX 205287 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1250684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8553188064 RX 3023775 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8514776417 RX 205575 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1228489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 116925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8755643353 RX 2838446 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8718150763 RX 205416 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1251428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8555966690 RX 3025815 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8517524450 RX 205701 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1229456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8764943440 RX 2840342 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8727429143 RX 205545 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 910 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1252174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8558703238 RX 3027879 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8520231002 RX 205830 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1230423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8774244281 RX 2842262 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8736707802 RX 205671 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1252924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 124937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8561410552 RX 3029919 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8522907874 RX 205959 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1231391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8783577696 RX 2844206 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8746018945 RX 205800 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1253684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8564076671 RX 3031959 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8525543290 RX 206085 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1232357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8792868759 RX 2846102 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8755288325 RX 205929 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1254455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8566814523 RX 3034023 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8528249817 RX 206214 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1233325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8802178816 RX 2848022 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8764576169 RX 206055 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1255212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8569507364 RX 3036063 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8530910437 RX 206343 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1234293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8811512039 RX 2849966 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8773887130 RX 206184 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1255983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8572307330 RX 3038195 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8533677776 RX 206469 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1235258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8820822944 RX 2851862 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8783176329 RX 206313 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1256745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8575013805 RX 3040259 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8536353191 RX 206598 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1236225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8830129751 RX 2853782 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8792461421 RX 206439 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1257497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8577713086 RX 3042299 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8539021176 RX 206727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1237195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8839446574 RX 2855726 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8801755529 RX 206568 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1258239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8580422058 RX 3044339 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8541699575 RX 206853 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1238160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8848758760 RX 2857622 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8811046001 RX 206697 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1565 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1259019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8583484665 RX 3046403 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8544729273 RX 206982 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1239127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8858084959 RX 2859542 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8820350448 RX 206823 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1259757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8586167913 RX 3048443 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8547382423 RX 207111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1240096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8867386368 RX 2861486 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8829629219 RX 206952 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1260512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8588856970 RX 3050483 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8550041541 RX 207237 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1241062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 117965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8876686521 RX 2863382 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8838907668 RX 207081 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 667 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1261258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8591552625 RX 3052547 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8552706547 RX 207366 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1242029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8886012912 RX 2865302 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8848212310 RX 207207 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 694 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1262014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 125961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8594237151 RX 3054587 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8555358285 RX 207495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1242998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8895314375 RX 2867246 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8857491079 RX 207336 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 683 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1262767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8596923806 RX 3056627 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8558014399 RX 207621 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1243964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8904621056 RX 2869142 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8866776038 RX 207465 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1263556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8599960605 RX 3058691 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8561017301 RX 207750 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1244931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8913954167 RX 2871062 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8876087390 RX 207591 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1364 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1264301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8602654802 RX 3060731 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8563680354 RX 207879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1245899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8923254031 RX 2873006 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8885364575 RX 207720 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 591 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1265038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8605361395 RX 3062771 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8566356225 RX 208005 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1246866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8932555591 RX 2874902 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8894644441 RX 207849 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1265779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8608085194 RX 3064835 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8569050876 RX 208134 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1247833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8941888510 RX 2876822 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8903955588 RX 207975 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1266538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8610879696 RX 3066875 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8571814725 RX 208263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1248800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8951208024 RX 2878766 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8913252387 RX 208104 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1267307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8613565517 RX 3068915 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8574466934 RX 208389 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1249767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8960521551 RX 2880662 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8922544181 RX 208233 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1268065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8616314405 RX 3070979 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8577185332 RX 208518 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1250734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8969820357 RX 2882582 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8931821286 RX 208359 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1268811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8619033339 RX 3073019 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8579872573 RX 208647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1251702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8979135977 RX 2884526 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8941114246 RX 208488 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1269556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8621738863 RX 3075059 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8582547938 RX 208773 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1252669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 118925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8988462368 RX 2886422 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8950418882 RX 208617 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1270339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8624725664 RX 3077123 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8585503466 RX 208902 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1253636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 8997755927 RX 2888342 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8959690752 RX 208743 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1419 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1271094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 126985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8627459334 RX 3079163 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8588205562 RX 209031 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1254604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9007063984 RX 2890286 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8968976121 RX 208872 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 699 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1271840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8630146187 RX 3081203 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8590861731 RX 209157 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1255571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9016390183 RX 2892182 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8978280566 RX 209001 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1272597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8632856587 RX 3083267 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8593541587 RX 209286 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1256538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9025684126 RX 2894102 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8987552815 RX 209127 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1273343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8635543111 RX 3085307 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8596197736 RX 209415 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1257506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9034998327 RX 2896046 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 8996844298 RX 209256 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1274092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8638263555 RX 3087347 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8598887911 RX 209541 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1258473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9044331246 RX 2897942 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9006155441 RX 209385 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1274852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8640987978 RX 3089411 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8601579097 RX 209670 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1259438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9053627814 RX 2899862 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9015430311 RX 209511 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1275617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8643797001 RX 3091451 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8604355839 RX 209799 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1260407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9062938894 RX 2901806 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9024719180 RX 209640 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1060 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 697 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1276360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8646494983 RX 3093491 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8607022322 RX 209925 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1261375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9072259445 RX 2903702 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9034017497 RX 209769 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1277096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8649311423 RX 3095555 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8609808972 RX 210054 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1262340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9081577775 RX 2905622 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9043314095 RX 209895 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1061 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1277860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8652030711 RX 3097595 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8612496243 RX 210183 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1263308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9090898107 RX 2907566 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9052612220 RX 210024 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1278612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8654750560 RX 3099635 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8615183033 RX 210309 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1264276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9100205575 RX 2909462 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9061897511 RX 210153 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1279359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 127923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8657437731 RX 3101699 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8617839663 RX 210438 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1265242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 119964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9109505728 RX 2911382 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9071175965 RX 210279 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1280100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8660206335 RX 3103739 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8620577312 RX 210567 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1266210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9118832807 RX 2913326 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9080480797 RX 210408 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1280889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8663307922 RX 3105779 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8623646939 RX 210693 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1267178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9128133390 RX 2915222 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9089759194 RX 210537 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1731 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1281615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8665971523 RX 3107843 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8626280848 RX 210822 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1268144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9137433735 RX 2917142 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9099037836 RX 210663 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1282348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8668677547 RX 3109883 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8628956248 RX 210951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1269112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9146767150 RX 2919086 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9108348994 RX 210792 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1283103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8671430238 RX 3111923 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8631677605 RX 211077 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1270079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9156058709 RX 2920982 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9117618376 RX 210921 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1283851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8674133258 RX 3113987 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8634350026 RX 211206 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1271046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9165368270 RX 2922902 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9126906219 RX 211047 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1284604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8676813664 RX 3116027 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8636998730 RX 211335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1272014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9174701493 RX 2924846 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9136217187 RX 211176 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1472 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1285394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8679813330 RX 3118067 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8639965678 RX 211461 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1272980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9184012894 RX 2926742 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9145506384 RX 211305 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1286158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8682554846 RX 3120131 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8642675690 RX 211590 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1273947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9193319701 RX 2928662 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9154791482 RX 211431 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1286908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8685272369 RX 3122171 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8645362961 RX 211719 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1274916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9202636001 RX 2930606 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9164085581 RX 211560 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1030 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1287686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8688090941 RX 3124211 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8648149536 RX 211845 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1275882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9211948656 RX 2932502 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9173376054 RX 211689 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1288440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 128947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8690826644 RX 3126275 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8650854616 RX 211974 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1276849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 120924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9221274855 RX 2934422 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9182680497 RX 211815 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1289182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8693542168 RX 3128315 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8653538923 RX 212103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1277817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9230575822 RX 2936366 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9191959273 RX 211944 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 666 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1289926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8696226686 RX 3130355 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8656190586 RX 212229 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1278784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9239876471 RX 2938262 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9201237729 RX 212073 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1290698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8699314593 RX 3132419 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8659246960 RX 212358 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1279751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9249202862 RX 2940182 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9210542372 RX 212199 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1291480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8702483555 RX 3134459 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8662383317 RX 212487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1280719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9258503829 RX 2942126 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9219821144 RX 212328 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2038 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1292230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8705155158 RX 3136499 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8665024616 RX 212613 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1281686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9267811006 RX 2944022 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9229106118 RX 212457 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 618 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1292978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8707878336 RX 3138563 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8667716308 RX 212742 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1282653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9277144117 RX 2945942 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9238417462 RX 212583 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1293724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8710546054 RX 3140603 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8670351699 RX 212871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1283620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9286443485 RX 2947886 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9247694644 RX 212712 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1294489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8713295916 RX 3142643 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8673070027 RX 212997 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1284588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9295745541 RX 2949782 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9256974505 RX 212841 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1295236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8715994809 RX 3144707 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8675738047 RX 213126 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1285555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9305078460 RX 2951702 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9266285654 RX 212967 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1295981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8718675900 RX 3146747 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8678388273 RX 213255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1286521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9314397451 RX 2953646 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9275582447 RX 213096 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1296729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8721394134 RX 3148787 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8681075605 RX 213381 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1287489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9323711447 RX 2955542 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9284874239 RX 213225 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1297470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 129971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8724086471 RX 3150851 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8683737155 RX 213510 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1288456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9333010253 RX 2957462 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9294151348 RX 213351 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1298228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8726783675 RX 3152891 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8686402722 RX 213639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1289423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 121965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9342325431 RX 2959406 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9303444308 RX 213480 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1298985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8729533918 RX 3154931 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8689122622 RX 213765 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1290391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9351652318 RX 2961302 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9312748959 RX 213609 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1100 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1299751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8732371648 RX 3156995 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8691928433 RX 213894 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1291358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9360945877 RX 2963222 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9322020826 RX 213735 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1300491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8735068168 RX 3159035 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8694593454 RX 214023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1292325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9370253438 RX 2965166 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9331306178 RX 213864 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1301261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8738123652 RX 3161075 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8697617204 RX 214149 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1293293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9379580133 RX 2967062 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9340610637 RX 213993 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 603 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1301991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8740806745 RX 3163139 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8700270364 RX 214278 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1294260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9388874076 RX 2968982 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9349882896 RX 214119 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1302748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8743506688 RX 3165179 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8702938339 RX 214407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1295227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9398187781 RX 2970926 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9359174378 RX 214248 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 636 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1303484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8746184755 RX 3167219 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8705587068 RX 214533 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1296195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9407521196 RX 2972822 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9368485534 RX 214377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1304226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8748902762 RX 3169283 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8708273903 RX 214662 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1297160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9416817764 RX 2974742 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9377760415 RX 214503 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1304989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8751675739 RX 3171323 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8711015027 RX 214791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1298128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9426128348 RX 2976686 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9387049278 RX 214632 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1305733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8754383099 RX 3173363 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8713690407 RX 214917 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1299097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9435449341 RX 2978582 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9396347599 RX 214761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1306477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 130995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8757059820 RX 3175427 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8716334824 RX 215046 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1300062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9444767671 RX 2980502 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9405644197 RX 214887 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1307217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8759756732 RX 3177467 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8719002790 RX 215175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1301029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 122925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9454087534 RX 2982446 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9414942325 RX 215016 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1307966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8762517553 RX 3179507 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8721731602 RX 215301 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1301998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9463395525 RX 2984342 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9424227617 RX 215145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1308685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8765224430 RX 3181547 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8724408514 RX 215430 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1302964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9472695678 RX 2986262 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9433506078 RX 215271 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1309440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8768017543 RX 3183587 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8727169880 RX 215556 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1303931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9482022261 RX 2988206 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9442810909 RX 215400 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1310198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8770723532 RX 3185651 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8729842356 RX 215685 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1304900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9491323340 RX 2990102 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9452089297 RX 215529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1310943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8773431726 RX 3187691 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8732520750 RX 215814 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1305866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9500623685 RX 2992022 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9461367936 RX 215655 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1311743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8776554793 RX 3189731 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8735611150 RX 215940 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1306833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9509956604 RX 2993966 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9470679085 RX 215784 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1312496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8779388084 RX 3191795 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8738412555 RX 216069 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1307801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9519248659 RX 2995862 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9479948482 RX 215913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 699 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1313233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8782058304 RX 3193835 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8741053859 RX 216198 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1308768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9528558220 RX 2997782 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9489236321 RX 216039 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1313983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8784794320 RX 3195875 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8743757417 RX 216324 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1309735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9537890947 RX 2999726 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9498547282 RX 216168 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1314739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 131933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8787565942 RX 3197939 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8746497584 RX 216453 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1310702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9547202790 RX 3001622 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9507836473 RX 216297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1315476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8790255255 RX 3199979 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8749157203 RX 216582 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1311669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9556509597 RX 3003542 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9517121562 RX 216423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 618 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1316217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132103/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8792931258 RX 3202019 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8751802933 RX 216708 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1312637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9565825428 RX 3005486 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9526415663 RX 216552 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1316981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8795680084 RX 3204083 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8754519869 RX 216837 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1313604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 123965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9575138606 RX 3007382 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9535706129 RX 216681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1317728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8798375793 RX 3206123 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8757183418 RX 216966 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1314571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9584464805 RX 3009302 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9545010571 RX 216807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1318494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8801152161 RX 3208163 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8759928517 RX 217092 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1315538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9593765276 RX 3011246 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9554289337 RX 216936 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1319268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8804205376 RX 3210227 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8762949288 RX 217221 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1316506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9603066421 RX 3013142 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9563567795 RX 217065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1738 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1320021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8806963480 RX 3212267 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8765675081 RX 217350 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1317473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9612392812 RX 3015062 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9572872437 RX 217191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1320758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8809646908 RX 3214307 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8768328296 RX 217476 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1318440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9621693283 RX 3017006 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9582151206 RX 217320 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1321518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8812334194 RX 3216371 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8770984460 RX 217605 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1319408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9631000956 RX 3018902 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9591436195 RX 217449 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 650 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1322260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8814977869 RX 3218411 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8773597636 RX 217734 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1320375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9640334067 RX 3020822 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9600747541 RX 217575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1323044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8818045802 RX 3220451 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8776634724 RX 217860 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1321341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9649632939 RX 3022766 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9610024720 RX 217704 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1323791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 132957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8820852202 RX 3222515 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8779409453 RX 217989 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1322309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9658934968 RX 3024662 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9619304578 RX 217833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1324543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8823582502 RX 3224555 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8782108550 RX 218118 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1323277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9668268356 RX 3026582 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9628615729 RX 217959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1325294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8826319483 RX 3226595 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8784815147 RX 218244 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1324242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9677586878 RX 3028526 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9637912517 RX 218088 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1326046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8829018661 RX 3228659 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8787482666 RX 218373 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1325210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 124925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9686900901 RX 3030422 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9647204320 RX 218217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1326798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8831763585 RX 3230699 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8790196583 RX 218502 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1326178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9696200203 RX 3032342 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9656481420 RX 218343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1327553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8834451631 RX 3232739 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8792853213 RX 218628 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1327144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9705514885 RX 3034286 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9665774379 RX 218472 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1328308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8837146333 RX 3234803 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8795516752 RX 218757 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1328112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9714841772 RX 3036182 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9675079020 RX 218601 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 663 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1329057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8839839403 RX 3236843 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8798178814 RX 218886 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1329080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9724135827 RX 3038102 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9684350898 RX 218727 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1329817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8842598223 RX 3238883 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8800906144 RX 219012 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1330046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9733442892 RX 3040046 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9693636255 RX 218856 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1330565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8845287079 RX 3240947 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8803563740 RX 219141 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1331014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9742769587 RX 3041942 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9702940703 RX 218985 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1331330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8848060040 RX 3242987 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8806305840 RX 219270 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1331982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9752064026 RX 3043862 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9712212961 RX 219111 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1332076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8850779291 RX 3245027 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8808994648 RX 219396 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1332948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9761377235 RX 3045806 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9721504441 RX 219240 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1332814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 133981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8853447043 RX 3247091 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8811631541 RX 219525 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1333916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9770710623 RX 3047702 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9730815597 RX 219369 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 611 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1333575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8856249963 RX 3249131 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8814402795 RX 219654 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1334882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9780007660 RX 3049622 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9740090478 RX 219495 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1424 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1334327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8859120990 RX 3251171 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8817243213 RX 219780 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1335850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9789318244 RX 3051566 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9749379331 RX 219624 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1335072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8861846408 RX 3253235 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8819937919 RX 219909 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1336818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9798638795 RX 3053462 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9758677657 RX 219753 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1097 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1335823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8864680136 RX 3255275 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8822740781 RX 220038 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1337784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 125964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9807957621 RX 3055382 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9767974263 RX 219879 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1336576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8867401362 RX 3257315 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8825431016 RX 220164 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1338751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 9817277484 RX 3057326 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9777272378 RX 220008 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1337145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 8379: ulsch_rounds 134493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 8869410744 RX 3260105 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8827411967 RX 221150 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1339715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 9826542991 RX 3059326 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9786515763 RX 220211 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 407 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1337158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: ulsch_rounds 134506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 8869415111 RX 3261613 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8827411967 RX 221150 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1340680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 9835827638 RX 3061384 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9795778203 RX 220468 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1337565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: ulsch_rounds 134572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8870495701 RX 3264153 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8828487514 RX 221982 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1340982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9836864096 RX 3064860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9796793093 RX 222295 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1338531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 8379: ulsch_rounds 134658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8876336157 RX 3266217 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8834312884 RX 222111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1341682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9839462316 RX 3066804 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9799361684 RX 222424 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1339493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8885341188 RX 3268257 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8843296836 RX 222240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1342398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9842220884 RX 3068700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9802091873 RX 222553 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1340458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8894371611 RX 3270297 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8852306120 RX 222366 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1343082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9844907705 RX 3070620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9804750886 RX 222679 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1395 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1341421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 134914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8903379040 RX 3272361 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8861291961 RX 222495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1343822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9848062573 RX 3072564 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9807875297 RX 222808 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1285 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1342384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8912421109 RX 3274401 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8870312872 RX 222624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1344513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9850631675 RX 3074460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9810416716 RX 222937 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1343348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8921434699 RX 3276441 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8879305354 RX 222750 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1345221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9853311753 RX 3076380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9813068795 RX 223063 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1344311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8930418509 RX 3278505 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8888267622 RX 222879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1345949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9856219526 RX 3078324 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9815947179 RX 223192 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1524 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1345277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8939479013 RX 3280545 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8897306914 RX 223008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1346658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 126940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9858877356 RX 3080220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9818576507 RX 223321 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1346238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8948497787 RX 3282585 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8906304579 RX 223134 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1347362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9861559015 RX 3082140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9821229577 RX 223447 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1347203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8957507646 RX 3284649 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8915292856 RX 223263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1348049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9864220536 RX 3084084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9823863371 RX 223576 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1348167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8966534292 RX 3286689 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8924298364 RX 223392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1348752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9866947514 RX 3085980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9826560891 RX 223705 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1067 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1349129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8975549034 RX 3288729 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8933292000 RX 223518 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1349478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9869709276 RX 3087900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9829292527 RX 223831 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1350095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8984598256 RX 3290793 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8942319547 RX 223647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1350185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9872488379 RX 3089844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9832041932 RX 223960 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1599 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1351056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 8993593411 RX 3292833 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8951293637 RX 223776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1350918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9875448496 RX 3091740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9834971705 RX 224089 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1088 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1352021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9002639452 RX 3294873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8960318501 RX 223902 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1351627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9878171414 RX 3093660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9837666371 RX 224215 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1352984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 135938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9011657375 RX 3296937 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8969314817 RX 224031 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1352346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9880875585 RX 3095604 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9840340685 RX 224344 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1353946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9020656307 RX 3298977 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8978292674 RX 224160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1353045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9883531198 RX 3097500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9842967049 RX 224473 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1354912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9029690699 RX 3301017 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8987305910 RX 224286 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1353771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9886241621 RX 3099420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9845646835 RX 224599 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2072 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1355874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9038712462 RX 3303081 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 8996306067 RX 224415 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1354507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9889357002 RX 3101364 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9848732308 RX 224728 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1356839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9047744358 RX 3305121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9005316815 RX 224544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1355203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9892023406 RX 3103260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9851369517 RX 224857 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1357802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9056736888 RX 3307161 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9014288274 RX 224670 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1355909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 127979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9894728061 RX 3105180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9854044812 RX 224983 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 925 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 910 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1358767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9065770366 RX 3309225 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9023300113 RX 224799 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1356621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9897420700 RX 3107124 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9856708306 RX 225112 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1359731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9074820439 RX 3311265 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9032329005 RX 224928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1357312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9900033126 RX 3109020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9859291707 RX 225241 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1360692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9083813032 RX 3313305 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9041300545 RX 225054 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1358025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9902761359 RX 3110940 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9861990724 RX 225367 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1361657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9092849983 RX 3315369 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9050316346 RX 225183 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1358732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9905450808 RX 3112884 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9864651179 RX 225496 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1362621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9101875910 RX 3317409 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9059320645 RX 225312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1359431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9908099871 RX 3114780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9867271615 RX 225625 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1363584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9110896922 RX 3319449 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9068320538 RX 225438 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1360171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9911192690 RX 3116700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9870334813 RX 225751 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1960 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1364546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 136962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9119902574 RX 3321513 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9077305108 RX 225567 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1360880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9913892167 RX 3118644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9873006178 RX 225880 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1365510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9128934837 RX 3323553 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9086315733 RX 225696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1361581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9916528703 RX 3120540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9875612795 RX 226009 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1142 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1366475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9137983563 RX 3325593 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9095343277 RX 225822 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1362313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9919463606 RX 3122460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9878518271 RX 226135 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1367436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9146965662 RX 3327657 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9104304337 RX 225951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1363018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9922141563 RX 3124404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9881166880 RX 226264 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1368403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9155999077 RX 3329697 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9113316109 RX 226080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1363743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9924881415 RX 3126300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9883876291 RX 226393 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1013 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1369366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9165034810 RX 3331737 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9122330693 RX 226206 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1364455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 128939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9927601578 RX 3128220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9886567838 RX 226519 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1370327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9174039055 RX 3333801 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9131313853 RX 226335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1365158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9930312668 RX 3130164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9889249061 RX 226648 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1371293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9183053075 RX 3335841 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9140306273 RX 226464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1365859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9932972245 RX 3132060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9891879851 RX 226777 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 980 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1372256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9192075752 RX 3337881 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9149307817 RX 226590 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1366578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9935711879 RX 3133980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9894590699 RX 226903 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1373222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9201132290 RX 3339945 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9158343148 RX 226719 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1367271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9938381429 RX 3135924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9897231873 RX 227032 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1374184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9210139716 RX 3341985 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9167329009 RX 226848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1367994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9941067183 RX 3137820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9899887476 RX 227161 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1375146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9219145176 RX 3344025 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9176313392 RX 226974 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1368693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9943778942 RX 3139740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9902570647 RX 227287 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 941 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1054 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1376111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 137986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9228191409 RX 3346089 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9185338454 RX 227103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1369412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9946556587 RX 3141684 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9905318560 RX 227416 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1377074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9237209332 RX 3348129 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9194334766 RX 227232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1370122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9949265739 RX 3143580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9907997825 RX 227545 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1378039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9246239755 RX 3350169 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9203344042 RX 227358 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1370836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9951962532 RX 3145500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9910665725 RX 227671 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1379001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9255246688 RX 3352233 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9212329880 RX 227487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1371547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9954659360 RX 3147444 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9913334081 RX 227800 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 977 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1088 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1379965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9264289253 RX 3354273 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9221350791 RX 227616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1372276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9957448311 RX 3149340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9916093865 RX 227929 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 997 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1380929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9273302843 RX 3356313 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9230343276 RX 227742 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1372965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9960158575 RX 3151260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9918776590 RX 228055 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1381891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9282286157 RX 3358377 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9239305554 RX 227871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1373672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 129980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9962868159 RX 3153204 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9921456316 RX 228184 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1083 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1382858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9291347157 RX 3360417 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9248344848 RX 228000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1374386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9965650709 RX 3155100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9924208660 RX 228313 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1383819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9300365931 RX 3362457 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9257342515 RX 228126 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1375110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9968331498 RX 3157020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9926860213 RX 228439 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1384783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9309375294 RX 3364521 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9266330774 RX 228255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1375826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9971013156 RX 3158964 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9929513303 RX 228568 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1385748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9318402436 RX 3366561 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9275336289 RX 228384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1376538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9973728676 RX 3160860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9932198977 RX 228697 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1386710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 138924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9327417178 RX 3368601 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9284329919 RX 228510 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1377285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9976826946 RX 3162780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9935265535 RX 228823 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1387675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9336465904 RX 3370665 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9293357467 RX 228639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1377997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9979554194 RX 3164724 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9937964547 RX 228952 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1000 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1388637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9345461555 RX 3372705 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9302331555 RX 228768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1378702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9982296853 RX 3166620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9940678369 RX 229081 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 975 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1389602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9354507596 RX 3374745 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9311356424 RX 228894 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1379400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9984974052 RX 3168540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9943326963 RX 229207 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1390564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9363525023 RX 3376809 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9320352738 RX 229023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1380100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9987673782 RX 3170484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9945998778 RX 229336 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1391527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9372524451 RX 3378849 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9329330600 RX 229152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1380808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9990382204 RX 3172380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9948678995 RX 229465 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1392493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9381558843 RX 3380889 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9338343832 RX 229278 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1381511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9993061825 RX 3174300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9951330588 RX 229591 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1393454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9390580110 RX 3382953 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9347343987 RX 229407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1382210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 130940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9995773550 RX 3176244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9954013333 RX 229720 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1394420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9399612502 RX 3384993 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9356354738 RX 229536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1382907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 9998473848 RX 3178140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9956685659 RX 229849 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1157 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1395383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9408605032 RX 3387033 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9365326202 RX 229662 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1383619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10001305037 RX 3180060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9959486949 RX 229975 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1396347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9417638014 RX 3389097 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9374338033 RX 229791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1384330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10004039748 RX 3182004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9962191879 RX 230104 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 999 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1397312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9426688583 RX 3391137 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9383366926 RX 229920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1385031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10006741193 RX 3183900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9964865737 RX 230233 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1398273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 139948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9435681176 RX 3393177 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9392338464 RX 230046 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1385738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10009400151 RX 3185820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9967496592 RX 230359 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1399238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9444718127 RX 3395241 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9401354258 RX 230175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1386452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10012079659 RX 3187764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9970146693 RX 230488 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1400202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9453744054 RX 3397281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9410358557 RX 230304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1387155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10014741521 RX 3189660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9972779976 RX 230617 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1401165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9462765066 RX 3399321 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9419358446 RX 230430 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1387893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10017688124 RX 3191580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9975695892 RX 230743 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1557 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1402127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9471770718 RX 3401385 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9428343009 RX 230559 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1388602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10020355022 RX 3193524 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9978334091 RX 230872 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1403091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9480802981 RX 3403425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9437353641 RX 230688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1389305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10023066747 RX 3195420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9981016816 RX 231001 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 916 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1404056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9489851707 RX 3405465 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9446381183 RX 230814 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1390004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10025721385 RX 3197340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9983642739 RX 231127 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1405017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9498833806 RX 3407529 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9455342243 RX 230943 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1390722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10028407410 RX 3199284 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9986298738 RX 231256 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 930 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1405984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9507867221 RX 3409569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9464354011 RX 231072 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1391426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 131980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10031104047 RX 3201180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9988967134 RX 231385 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1406947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9516902954 RX 3411609 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9473368593 RX 231198 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1392132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10033819948 RX 3203100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9991654315 RX 231511 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1407908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9525907199 RX 3413673 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9482351764 RX 231327 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1392846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10036528043 RX 3205044 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9994332554 RX 231640 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1408874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9534921219 RX 3415713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9491344186 RX 231456 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1393555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10039205449 RX 3206940 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9996981148 RX 231769 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1409837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 140972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9543943896 RX 3417753 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9500345734 RX 231582 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1394270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10041930215 RX 3208860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 9999675729 RX 231895 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 983 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2227 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1410803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9553000434 RX 3419817 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9509381076 RX 231711 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1395002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10045113015 RX 3210804 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10002828373 RX 232024 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1411765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9562007860 RX 3421857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9518366923 RX 231840 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1395714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10047797510 RX 3212700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10005483971 RX 232153 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1412727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9571013320 RX 3423897 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9527351299 RX 231966 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1396426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10050522343 RX 3214620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10008179018 RX 232279 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1413692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9580059553 RX 3425961 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9536376352 RX 232095 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1397152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10053217922 RX 3216564 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10010845466 RX 232408 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1414655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9589077476 RX 3428001 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9545372670 RX 232224 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1397865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10055932133 RX 3218460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10013531110 RX 232537 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1633 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1415620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9598107899 RX 3430041 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9554381950 RX 232350 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1398603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10058870051 RX 3220380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10016438548 RX 232663 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1416582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9607114832 RX 3432105 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9563367795 RX 232479 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1399301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10061557261 RX 3222324 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10019097972 RX 232792 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1417546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9616157397 RX 3434145 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9572388702 RX 232608 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1400003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 132940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10064288599 RX 3224220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10021801490 RX 232921 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 969 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1418510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9625170987 RX 3436185 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9581381185 RX 232734 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1400751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10067393299 RX 3226140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10024875553 RX 233047 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1419472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9634154301 RX 3438249 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9590343448 RX 232863 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1401436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10069996820 RX 3228084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10027451549 RX 233176 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1420439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9643215301 RX 3440289 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9599382747 RX 232992 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1402140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10072727095 RX 3229980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10030153540 RX 233305 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 941 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1421400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 141996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9652234075 RX 3442329 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9608380418 RX 233118 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1402849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10075495063 RX 3231900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10032891134 RX 233431 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1422364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9661243438 RX 3444393 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9617368695 RX 233247 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1403557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10078199792 RX 3233844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10035566414 RX 233560 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1423328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9670270084 RX 3446433 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9626374210 RX 233376 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1404274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10080910928 RX 3235740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10038249144 RX 233689 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1424291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9679285322 RX 3448473 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9635367844 RX 233502 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1404986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10083650224 RX 3237660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10040958575 RX 233815 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1425256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9688334048 RX 3450537 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9644395381 RX 233631 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1405692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10086366430 RX 3239604 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10043645786 RX 233944 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1138 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1426217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9697329203 RX 3452577 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9653369473 RX 233760 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1406411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10089121501 RX 3241500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10046371534 RX 234073 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1427183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9706375740 RX 3454617 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9662394339 RX 233886 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1407109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10091783263 RX 3243420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10049003856 RX 234199 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1428145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9715393167 RX 3456681 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9671390663 RX 234015 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1407845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10094865631 RX 3245364 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10052055699 RX 234328 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1429107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9724392099 RX 3458721 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9680368523 RX 234144 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1408550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10097537373 RX 3247260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10054698355 RX 234457 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1430074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9733426987 RX 3460761 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9689381760 RX 234270 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1409262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 133979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10100245127 RX 3249180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10057376654 RX 234583 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1431035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9742448254 RX 3462825 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9698381911 RX 234399 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1409983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10102939004 RX 3251124 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10060040113 RX 234712 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1432000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 142936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9751480150 RX 3464865 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9707392661 RX 234528 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1410707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10105658624 RX 3253020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10062730213 RX 234841 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1432964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9760473176 RX 3466905 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9716364124 RX 234654 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1411435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10108718986 RX 3254940 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10065759786 RX 234967 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1433928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9769506158 RX 3468969 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9725375959 RX 234783 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1412135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10111388960 RX 3256884 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10068400945 RX 235096 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1434892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9778556231 RX 3471009 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9734404852 RX 234912 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1412845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10114070517 RX 3258780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10071052548 RX 235225 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1435854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9787549320 RX 3473049 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9743376385 RX 235038 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1413552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10116741155 RX 3260700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10073693742 RX 235351 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1436819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9796586271 RX 3475113 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9752392182 RX 235167 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1414277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10119476774 RX 3262644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10076400109 RX 235480 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1437782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9805611702 RX 3477153 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9761396479 RX 235296 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1414992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10122215484 RX 3264540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10079109555 RX 235609 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 998 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1438746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9814633210 RX 3479193 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9770396373 RX 235422 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1415697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10124874411 RX 3266460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10081738883 RX 235735 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1439708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9823638862 RX 3481257 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9779380939 RX 235551 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1416404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10127588627 RX 3268404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10084424562 RX 235864 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1440671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9832670629 RX 3483297 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9788391564 RX 235680 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1417119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10130411384 RX 3270300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10087216920 RX 235993 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1252 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1441637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9841719851 RX 3485337 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9797419112 RX 235806 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1417832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 134939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10133070548 RX 3272220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10089845757 RX 236119 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1442598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9850701950 RX 3487401 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9806380170 RX 235935 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1418551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10135786932 RX 3274164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10092533389 RX 236248 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1443564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 143960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9859734869 RX 3489441 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9815391932 RX 236064 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1419268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10138477288 RX 3276060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10095193864 RX 236377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1444528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9868771098 RX 3491481 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9824406517 RX 236190 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1419987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10141160696 RX 3277980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10097848466 RX 236503 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1445489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9877775343 RX 3493545 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9833389688 RX 236319 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1420689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10143842453 RX 3279924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10100501551 RX 236632 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1446454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9886788867 RX 3495585 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9842382093 RX 236448 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1421392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10146534371 RX 3281820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10103164960 RX 236761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1447418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9895812040 RX 3497625 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9851383652 RX 236574 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1422107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10149269118 RX 3283740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10105870906 RX 236887 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1448384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9904868578 RX 3499689 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9860418980 RX 236703 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1422820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10151979445 RX 3285684 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10108551138 RX 237016 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1449345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9913875508 RX 3501729 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9869404829 RX 236832 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1423537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10154637331 RX 3287580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10111180451 RX 237145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1450308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9922881464 RX 3503769 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9878389204 RX 236958 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1424232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10157340562 RX 3289500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10113855225 RX 237271 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1451273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9931927697 RX 3505833 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9887414255 RX 237087 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1424942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10160104399 RX 3291444 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10116588809 RX 237400 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1088 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1452235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9940945124 RX 3507873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9896410570 RX 237216 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1425652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10162835211 RX 3293340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10119290780 RX 237529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1453201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9949976043 RX 3509913 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9905419852 RX 237342 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1426357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10165505297 RX 3295260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10121931994 RX 237655 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1454163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9958982976 RX 3511977 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9914405693 RX 237471 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1427087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 135980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10168184085 RX 3297204 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10124580553 RX 237784 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1455126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 144984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9968025045 RX 3514017 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9923426616 RX 237600 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1427801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10170869598 RX 3299100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10127236081 RX 237913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1456091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9977039131 RX 3516057 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9932419099 RX 237726 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1428523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10173660201 RX 3301020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10129995860 RX 238039 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1457053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9986022445 RX 3518121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9941381370 RX 237855 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1429243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10176339145 RX 3302964 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10132644965 RX 238168 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1458019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 9995082949 RX 3520161 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9950420667 RX 237984 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1429965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10179073410 RX 3304860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10135349945 RX 238297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 989 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1458981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10004102219 RX 3522201 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9959418336 RX 238110 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1430696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10181751061 RX 3306780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10137998569 RX 238423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1459945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10013111582 RX 3524265 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9968406596 RX 238239 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1431394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10184479701 RX 3308724 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10140697576 RX 238552 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 955 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1460909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10022138228 RX 3526305 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9977412104 RX 238368 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1432096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10187167993 RX 3310620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10143357530 RX 238681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1461872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10031153466 RX 3528345 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9986405747 RX 238494 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1432800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10189834130 RX 3312540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10145994764 RX 238807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1462837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10040202192 RX 3530409 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 9995433296 RX 238623 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1433502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10192583139 RX 3314484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10148716091 RX 238936 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1713 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1463798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10049197347 RX 3532449 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10004407387 RX 238752 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1434239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10195599213 RX 3316380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10151702190 RX 239065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1464764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10058243884 RX 3534489 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10013432252 RX 238878 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1434944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10198270591 RX 3318300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10154343880 RX 239191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 996 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1465726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 145922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10067261311 RX 3536553 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10022428564 RX 239007 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1435651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 136940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10201008991 RX 3320244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10157053241 RX 239320 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1466688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10076260243 RX 3538593 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10031406417 RX 239136 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1436345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10203645963 RX 3322140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10159660359 RX 239449 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1467655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10085295131 RX 3540633 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10040419659 RX 239262 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1437044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10206371015 RX 3324060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10162357844 RX 239575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1468616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10094316398 RX 3542697 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10049419823 RX 239391 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1437748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10209067320 RX 3326004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10165025764 RX 239704 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1469581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10103348294 RX 3544737 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10058430577 RX 239520 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1438445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10211709761 RX 3327900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10167639771 RX 239833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1470545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10112341320 RX 3546777 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10067402052 RX 239646 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1439161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10214382414 RX 3329820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10170282938 RX 239959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1200 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1471509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10121374302 RX 3548841 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10076413879 RX 239775 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1439889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10217230885 RX 3331764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10173102027 RX 240088 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1096 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1472473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10130424375 RX 3550881 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10085442769 RX 239904 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1440619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10220058834 RX 3333660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10175900398 RX 240217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1097 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1473435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10139417464 RX 3552921 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10094414302 RX 240030 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1441346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10222768404 RX 3335580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10178580169 RX 240343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1474405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 10148506900 RX 3555113 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10103482449 RX 240310 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1441703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 137647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 10224091530 RX 3338196 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10179882265 RX 241303 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 43 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1475113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 8379: ulsch_rounds 146779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 10155090659 RX 3558007 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10110047044 RX 241376 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1441716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: ulsch_rounds 137660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 10224095042 RX 3339674 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10179882265 RX 241303 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1475651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10156964471 RX 3560846 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10111891462 RX 242323 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1442444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 20 +UE 96c8: ulsch_rounds 137744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10226937313 RX 3342258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10182715459 RX 242165 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1476399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 146957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10159639697 RX 3562862 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10114535745 RX 242449 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1443412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10235113234 RX 3344202 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10190871478 RX 242294 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1477144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10162325985 RX 3564926 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10117191889 RX 242578 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1444379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10244407177 RX 3346098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10200143736 RX 242423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1477896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10165044493 RX 3566990 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10119879200 RX 242707 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1445346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 137984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10253720882 RX 3348018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10209435218 RX 242549 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1478681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10168157210 RX 3569006 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10122959256 RX 242833 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1446314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10263054297 RX 3349962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10218746384 RX 242678 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1479471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10171272055 RX 3571070 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10126040273 RX 242962 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1447279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10272350865 RX 3351858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10228021260 RX 242807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1480204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10173932276 RX 3573134 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10128670227 RX 243091 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1448247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10281661449 RX 3353778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10237310120 RX 242933 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1480961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10176699985 RX 3575150 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10131406394 RX 243217 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1449216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10290982442 RX 3355722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10246608435 RX 243062 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1481709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10179448969 RX 3577214 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10134124792 RX 243346 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1450181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10300300772 RX 3357618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10255905031 RX 243191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1482476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10182219707 RX 3579278 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10136862466 RX 243475 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1451148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10309620635 RX 3359538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10265203154 RX 243317 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1483226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10184962417 RX 3581294 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10139574981 RX 243601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1452117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10318928626 RX 3361482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10274488438 RX 243446 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 687 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1483979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10187641046 RX 3583358 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10142220796 RX 243730 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1453083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10328228779 RX 3363378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10283766886 RX 243575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1484734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10190432189 RX 3585422 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10144979183 RX 243859 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1454050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10337555362 RX 3365298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10293071713 RX 243701 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1485477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 147981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10193136163 RX 3587438 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10147651654 RX 243985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1455019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10346856441 RX 3367242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10302350108 RX 243830 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1486234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10195850416 RX 3589502 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10150334539 RX 244114 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1455985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10356156786 RX 3369138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10311628748 RX 243959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1486987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10198598759 RX 3591566 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10153052997 RX 244243 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1456952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 138944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10365489705 RX 3371058 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10320939902 RX 244085 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1487740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10201324575 RX 3593582 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10155747187 RX 244369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1457920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10374781760 RX 3373002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10330209295 RX 244214 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1488488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10204062789 RX 3595646 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10158454175 RX 244498 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1458887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10384091321 RX 3374898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10339497137 RX 244343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1489265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10207152782 RX 3597710 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10161513503 RX 244627 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1459854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10393424048 RX 3376818 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10348808100 RX 244469 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 605 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1490004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10209854253 RX 3599726 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10164184472 RX 244753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1460821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10402735891 RX 3378762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10358097287 RX 244598 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1490751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10212565158 RX 3601790 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10166863817 RX 244882 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1461788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10412042698 RX 3380658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10367382381 RX 244727 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1491496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10215302986 RX 3603854 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10169570880 RX 245011 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1462756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10421358529 RX 3382578 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10376676485 RX 244853 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1492247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10218002341 RX 3605870 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10172238845 RX 245137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1463723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10430671707 RX 3384522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10385966956 RX 244982 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 612 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1492977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10220661098 RX 3607934 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10174868293 RX 245266 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1464690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10439997906 RX 3386418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10395271400 RX 245111 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1493724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 148920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10223388794 RX 3609998 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10177565923 RX 245395 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1465657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10449298377 RX 3388338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10404550168 RX 245237 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1494476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10226085131 RX 3612014 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10180230939 RX 245521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1466625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10458599522 RX 3390282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10413828631 RX 245366 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1495243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10228745276 RX 3614078 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10182860387 RX 245650 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1467592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10467925913 RX 3392178 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10423133276 RX 245495 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1495993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10231459021 RX 3616142 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10185543207 RX 245779 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1468559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10477226384 RX 3394098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10432412043 RX 245621 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 663 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 945 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1496765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10234243438 RX 3618158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10188295611 RX 245905 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1469527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 139985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10486534057 RX 3396042 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10441697011 RX 245750 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1497510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10236996195 RX 3620222 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10191017018 RX 246034 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1470494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10495867168 RX 3397938 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10451008348 RX 245879 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1498266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10239683807 RX 3622286 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10193672686 RX 246163 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1471460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10505166040 RX 3399858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10460285526 RX 246005 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1499018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10242417895 RX 3624302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10196375233 RX 246289 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1472428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10514468069 RX 3401802 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10469565388 RX 246134 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1499767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10245209386 RX 3626366 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10199136564 RX 246418 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1473396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10523801457 RX 3403698 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10478876549 RX 246263 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1500514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10247925660 RX 3628430 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10201822318 RX 246547 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1474361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10533119979 RX 3405618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10488173337 RX 246389 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1501254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10250595202 RX 3630446 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10204459186 RX 246673 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1475329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10542434002 RX 3407562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10497465139 RX 246518 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1502009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10253322214 RX 3632510 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10207153852 RX 246802 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1476297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10551733304 RX 3409458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10506742248 RX 246647 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1502743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 149944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10256044835 RX 3634574 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10209845589 RX 246931 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1477263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10561047986 RX 3411378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10516035200 RX 246773 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 697 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1503504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10258744721 RX 3636590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10212513589 RX 247057 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1478231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10570374873 RX 3413322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10525339837 RX 246902 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1504262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10261446383 RX 3638654 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10215184513 RX 247186 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1479199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10579668928 RX 3415218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10534611711 RX 247031 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1505028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10264203485 RX 3640718 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10217910306 RX 247315 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1480165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10588975993 RX 3417138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10543897056 RX 247157 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1505779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10266890743 RX 3642734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10220566495 RX 247441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1481133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 140945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10598302688 RX 3419082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10553201511 RX 247286 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1506515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10269566607 RX 3644798 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10223212280 RX 247570 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1482101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10607597127 RX 3420978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10562473766 RX 247415 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 665 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1507254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10272229589 RX 3646862 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10225844712 RX 247699 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1483067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10616910336 RX 3422898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10571765253 RX 247541 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1508003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10274950839 RX 3648878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10228534982 RX 247825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1484035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10626243724 RX 3424842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10581076402 RX 247670 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1508764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10277786619 RX 3650942 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10231337914 RX 247954 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1485001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10635540761 RX 3426738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10590351290 RX 247799 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1509510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10280523613 RX 3653006 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10234044421 RX 248083 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1485969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10644851345 RX 3428658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10599640148 RX 247925 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1510281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10283268133 RX 3655022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10236758448 RX 248209 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1486937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10654171896 RX 3430602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10608938464 RX 248054 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1511042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10286006849 RX 3657086 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10239465005 RX 248338 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1487903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10663490722 RX 3432498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10618235055 RX 248183 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1511787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 150968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10288720153 RX 3659150 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10242147845 RX 248467 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1488870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10672810585 RX 3434418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10627533171 RX 248309 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1512549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10291449313 RX 3661166 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10244845570 RX 248593 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1489838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10682118080 RX 3436362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10636818461 RX 248438 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1513299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10294139687 RX 3663230 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10247504718 RX 248722 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1490805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10691418729 RX 3438258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10646096919 RX 248567 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1514038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10296843715 RX 3665294 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10250178601 RX 248851 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1491772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10700745312 RX 3440178 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10655401754 RX 248693 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1514790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10299542163 RX 3667310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10252846571 RX 248977 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1492740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10710045895 RX 3442122 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10664680150 RX 248822 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1515559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10302245599 RX 3669374 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10255517525 RX 249106 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1493707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 141985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10719346736 RX 3444018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10673958801 RX 248951 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1516312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10304940499 RX 3671438 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10258181124 RX 249235 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1494674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10728679655 RX 3445938 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10683269962 RX 249077 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1517060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10307636240 RX 3673454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10260845654 RX 249361 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1495641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10737971187 RX 3447882 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10692539341 RX 249206 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 665 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1517829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10310317277 RX 3675518 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10263493423 RX 249490 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1496609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10747281217 RX 3449778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10701827187 RX 249335 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1518576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10313020338 RX 3677582 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10266165793 RX 249619 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1497576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10756613944 RX 3451698 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10711138141 RX 249461 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1519335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10315759128 RX 3679598 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10268871834 RX 249745 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1498542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10765925345 RX 3453642 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10720427335 RX 249590 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1520089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10318443448 RX 3681662 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10271525465 RX 249874 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1499510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10775232648 RX 3455538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10729712423 RX 249719 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 664 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1520844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 151992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10321244646 RX 3683726 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10274295748 RX 250003 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1500478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10784548479 RX 3457458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10739006513 RX 249845 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1068 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1521582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10323973989 RX 3685742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10276994935 RX 250129 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1501444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10793861161 RX 3459402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10748296988 RX 249974 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1522328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10326690905 RX 3687806 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10279682251 RX 250258 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1502412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10803187856 RX 3461298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10757601442 RX 250103 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 702 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1523082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10329397508 RX 3689870 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10282357646 RX 250387 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1503379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10812488327 RX 3463218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10766880221 RX 250229 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1523834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10332092137 RX 3691886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10285021210 RX 250513 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1504346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10821788976 RX 3465162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10776158674 RX 250358 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1524587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10334775797 RX 3693950 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10287674405 RX 250642 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1505314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 142945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10831115863 RX 3467058 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10785463312 RX 250487 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 650 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1525321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10337464709 RX 3696014 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10290333558 RX 250771 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1506281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10840416334 RX 3468978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10794742079 RX 250613 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1526075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10340203711 RX 3698030 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10293040120 RX 250897 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1507248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10849723484 RX 3470922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10804027050 RX 250742 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 697 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1526820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10342907264 RX 3700094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10295712581 RX 251026 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1508216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10859057064 RX 3472818 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10813338398 RX 250871 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1527581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10345635131 RX 3702158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10298408754 RX 251155 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1509182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10868355936 RX 3474738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10822615571 RX 250997 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1528343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10348329042 RX 3704174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10301070796 RX 251281 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1510150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10877657992 RX 3476682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10831895427 RX 251126 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1529096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 152930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10351026942 RX 3706238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10303735792 RX 251410 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1511118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10886991407 RX 3478578 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10841206592 RX 251255 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1529829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10353743458 RX 3708302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10306421626 RX 251539 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1512083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10896309929 RX 3480498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10850503378 RX 251381 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1530578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10356506686 RX 3710318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10309154368 RX 251665 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1513050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10905623456 RX 3482442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10859795175 RX 251510 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1531331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10359268154 RX 3712382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10311883641 RX 251794 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1514019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10914923254 RX 3484338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10869072283 RX 251639 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1532075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10361982358 RX 3714446 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10314567883 RX 251923 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1514985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10924237936 RX 3486258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10878365227 RX 251765 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2178 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1532872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10365203398 RX 3716462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10317757657 RX 252049 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1515952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10933564327 RX 3488202 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10887669861 RX 251894 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 642 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1533612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10367882700 RX 3718526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10320406416 RX 252178 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1516921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10942858878 RX 3490098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10896941738 RX 252023 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1534383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10370574270 RX 3720590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10323065554 RX 252307 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1517887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 143984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10952165943 RX 3492018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10906227092 RX 252149 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 667 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1535132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10373273020 RX 3722606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10325733554 RX 252433 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1518854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10961492142 RX 3493962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10915531539 RX 252278 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1535876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10375990870 RX 3724670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10328420780 RX 252562 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1519823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10970787023 RX 3495858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10924803802 RX 252407 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1536642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10379088489 RX 3726734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10331487503 RX 252691 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1520789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10980100232 RX 3497778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10934095281 RX 252533 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1796 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 640 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1537383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10381745357 RX 3728750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10334114012 RX 252817 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1521756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10989433151 RX 3499722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10943406440 RX 252662 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1538137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 153954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10384482031 RX 3730814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10336819057 RX 252946 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1522723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 10998730711 RX 3501618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10952681331 RX 252791 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1538888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10387173692 RX 3732878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10339479647 RX 253075 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1523691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11008041295 RX 3503538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10961970186 RX 252917 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1539647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10389916450 RX 3734894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10342190605 RX 253201 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1524658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11017361350 RX 3505482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10971268501 RX 253046 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1540407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10392601111 RX 3736958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10344842313 RX 253330 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1525625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11026680672 RX 3507378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10980565102 RX 253175 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 679 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1541144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10395273195 RX 3739022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10347483672 RX 253459 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1526592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11036000535 RX 3509298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10989863230 RX 253301 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1541898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10397967956 RX 3741038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10350147216 RX 253585 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1527559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11045307534 RX 3511242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 10999148512 RX 253430 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1542649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10400714326 RX 3743102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10352861163 RX 253714 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1528527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11054608679 RX 3513138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11008426977 RX 253559 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1543389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10403471029 RX 3745166 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10355586961 RX 253843 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1529494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 144945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11063935262 RX 3515174 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11017731814 RX 253685 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1544142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10406177858 RX 3747182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10358262356 RX 253969 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1530461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11073235349 RX 3517118 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11027010204 RX 253814 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1099 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1544916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10409006749 RX 3749246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10361059340 RX 254098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1531429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11082536632 RX 3519014 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11036288859 RX 253943 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 667 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1545661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10411690401 RX 3751310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10363709571 RX 254227 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1532396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11091869551 RX 3520934 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11045600013 RX 254069 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1546414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10414400789 RX 3753326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10366388991 RX 254353 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1533362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11101160614 RX 3522878 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11054869396 RX 254198 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1547181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 154978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10417116412 RX 3755390 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10369072302 RX 254482 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1534331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11110471167 RX 3524774 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11064157243 RX 254327 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1547945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10420226046 RX 3757454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10372150876 RX 254611 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1535298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11119803894 RX 3526694 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11073468200 RX 254453 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1548695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10422922241 RX 3759470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10374815982 RX 254737 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1536263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11129114799 RX 3528638 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11082757396 RX 254582 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1549438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10425597464 RX 3761534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10377459739 RX 254866 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1537231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11138422102 RX 3530534 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11092042489 RX 254711 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1550184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10428276859 RX 3763598 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10380107497 RX 254995 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1538200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11147738429 RX 3532454 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11101336591 RX 254837 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1550925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10430991849 RX 3765614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10382791789 RX 255121 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1539165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11157050615 RX 3534398 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11110627055 RX 254966 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1551684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10433721977 RX 3767678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10385489514 RX 255250 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1540133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11166377310 RX 3536294 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11119931510 RX 255095 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1552415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10436391404 RX 3769742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10388127854 RX 255379 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1541101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11175678277 RX 3538214 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11129210282 RX 255221 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 632 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1553177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10439150559 RX 3771758 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10390856611 RX 255505 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1542067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 145986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11184978430 RX 3540158 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11138488732 RX 255350 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1553944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10441916340 RX 3773822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10393589824 RX 255634 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1543035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11194305290 RX 3542054 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11147793375 RX 255479 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1554687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10444608350 RX 3775886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10396250404 RX 255763 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1544003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11203606230 RX 3543974 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11157072142 RX 255605 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1555440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 155917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10447341387 RX 3777902 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10398952435 RX 255889 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1544969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11212912911 RX 3545918 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11166357114 RX 255734 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1556183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10450011998 RX 3779966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10401592262 RX 256018 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1545937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11222246518 RX 3547814 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11175668467 RX 255863 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1556943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10452780894 RX 3782030 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10404329936 RX 256147 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1546904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11231545886 RX 3549734 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11184945649 RX 255989 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1557697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10455538051 RX 3784046 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10407055719 RX 256273 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1547871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11240847446 RX 3551678 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11194225499 RX 256118 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1558477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10458639332 RX 3786110 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10410125411 RX 256402 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1548839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11250180861 RX 3553574 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11203536651 RX 256247 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 609 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1559227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10461296530 RX 3788174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10412751940 RX 256531 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1549805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11259499879 RX 3555494 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11212833457 RX 256373 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1559967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10463960893 RX 3790190 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10415385889 RX 256657 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1550772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11268813406 RX 3557438 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11222125252 RX 256502 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1671 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1560741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10467013838 RX 3792254 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10418406164 RX 256786 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1551740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11278112708 RX 3559334 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11231402364 RX 256631 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 687 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1561492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10469788084 RX 3794318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10421150367 RX 256915 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1552707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11287427886 RX 3561254 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11240695324 RX 256757 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1562236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10472502144 RX 3796334 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10423834604 RX 257041 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1553674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 146946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11296754277 RX 3563198 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11249999962 RX 256886 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1562988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10475202142 RX 3798398 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10426502609 RX 257170 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1554642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11306048305 RX 3565094 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11259271842 RX 257015 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1563736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10477928619 RX 3800462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10429197295 RX 257299 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1555609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11315355839 RX 3567014 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11268557198 RX 257141 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1564479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 156941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10480672827 RX 3802478 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10431911237 RX 257425 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1556576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11324682038 RX 3568958 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11277861641 RX 257270 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1565234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10483395998 RX 3804542 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10434602939 RX 257554 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1557544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11333976477 RX 3570854 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11287133904 RX 257399 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1565989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10486114142 RX 3806606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10437288753 RX 257683 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1558511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11343290182 RX 3572774 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11296425396 RX 257525 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1566729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10488814509 RX 3808622 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10439958225 RX 257809 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1559478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11352623101 RX 3574718 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11305736546 RX 257654 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1567469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10491507445 RX 3810686 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10442619771 RX 257938 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1560444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11361920165 RX 3576614 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11315011432 RX 257783 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1568215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10494257679 RX 3812750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10445338670 RX 258067 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1561413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11371231245 RX 3578534 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11324300291 RX 257909 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1030 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1568975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10497036745 RX 3814766 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10448086768 RX 258193 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1562380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11380551300 RX 3580478 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11333598601 RX 258038 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1569727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10499751049 RX 3816830 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10450769628 RX 258322 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1563346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11389870126 RX 3582374 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11342895199 RX 258167 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1570471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10502431493 RX 3818894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10453418342 RX 258451 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1564314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11399190485 RX 3584294 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11352193334 RX 258293 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 647 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1571208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10505097139 RX 3820910 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10456051765 RX 258577 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1565281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11408497484 RX 3586238 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11361478614 RX 258422 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1571964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10507846388 RX 3822974 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10458769187 RX 258706 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1566248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 147986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11417798106 RX 3588134 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11370757067 RX 258551 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 630 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1572725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10510508563 RX 3825038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10461398670 RX 258835 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1567216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11427125158 RX 3590054 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11380061901 RX 258677 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1573476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 157965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10513241996 RX 3827054 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10464100816 RX 258961 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1568183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11436425245 RX 3591998 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11389340281 RX 258806 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1574227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10515941960 RX 3829118 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10466768836 RX 259090 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1569150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11445726086 RX 3593894 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11398618940 RX 258935 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1574978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10518696078 RX 3831182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10469491635 RX 259219 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1570118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11455059501 RX 3595814 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11407930083 RX 259061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1026 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1575734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10521490977 RX 3833198 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10472255940 RX 259345 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1571084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11464350564 RX 3597758 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11417199463 RX 259190 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1576487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10524207937 RX 3835262 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10474941699 RX 259474 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1572052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11473660621 RX 3599654 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11426487307 RX 259319 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1577228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10526919038 RX 3837326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10477621555 RX 259603 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1573020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11482993844 RX 3601574 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11435798268 RX 259445 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 679 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1577983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10529586801 RX 3839342 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10480258463 RX 259729 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1573985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11492304749 RX 3603518 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11445087467 RX 259574 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1578721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10532273338 RX 3841406 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10482914607 RX 259858 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1574952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11501611556 RX 3605414 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11454372559 RX 259703 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1579468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10534995327 RX 3843470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10485604852 RX 259987 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1575922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11510928379 RX 3607334 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11463666667 RX 259829 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1580236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10537775860 RX 3845486 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10488354377 RX 260113 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1576887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11520240565 RX 3609278 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11472957139 RX 259958 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1580989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10540520791 RX 3847550 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10491068324 RX 260242 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1577854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 148946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11529566764 RX 3611174 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11482261586 RX 260087 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1581743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 158904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 10543211255 RX 3849614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10493727407 RX 260371 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1578823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11538868173 RX 3613094 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11491540357 RX 260213 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 609 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1581884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 20 +UE 8379: ulsch_rounds 158949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 10543649715 RX 3852076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10494153526 RX 261286 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1579788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 11548157829 RX 3615153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11500808339 RX 260496 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1581946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: ulsch_rounds 158987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10543749250 RX 3854333 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10494249998 RX 261940 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1580204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 24 +UE 96c8: ulsch_rounds 149195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 11551771257 RX 3618702 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11504402830 RX 262231 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1582920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 8379: ulsch_rounds 159075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10547914574 RX 3856497 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10498403836 RX 262212 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1580907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11554409476 RX 3620746 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11507008457 RX 262496 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1583898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10556633744 RX 3858537 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10507102443 RX 262341 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1581634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11557136596 RX 3622690 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11509707033 RX 262625 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1584876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10565800628 RX 3860577 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10516247867 RX 262467 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1582365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11559848672 RX 3624586 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11512390219 RX 262754 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1585856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10574971977 RX 3862641 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10525397243 RX 262596 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1583110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11562625103 RX 3626506 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11515135208 RX 262880 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1045 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1586834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10584171693 RX 3864681 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10534575442 RX 262725 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1583840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11565338076 RX 3628450 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11517817858 RX 263009 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1587811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10593329553 RX 3866721 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10543711867 RX 262851 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1584568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11568031760 RX 3630346 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11520482273 RX 263138 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1588792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10602501028 RX 3868785 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10552861370 RX 262980 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1585293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11570759525 RX 3632266 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11523180269 RX 263264 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1589770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10611680968 RX 3870825 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10562019823 RX 263109 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1586022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11573457682 RX 3634210 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11525848159 RX 263393 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1590747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10620867502 RX 3872865 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10571184857 RX 263235 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1586762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11576201237 RX 3636106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11528562001 RX 263522 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1591726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10630039040 RX 3874929 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10580334428 RX 263364 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1587489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 149998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11578965046 RX 3638026 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11531295169 RX 263648 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1592704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 159929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10639212452 RX 3876969 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10589486367 RX 263493 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1588214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11581645780 RX 3639970 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11533946742 RX 263777 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1593682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10648395338 RX 3879009 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10598647765 RX 263619 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1588942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11584387204 RX 3641866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11536657580 RX 263906 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1594661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10657574301 RX 3881073 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10607804750 RX 263748 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1589676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11587173466 RX 3643786 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11539412863 RX 264032 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1595639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10666747905 RX 3883113 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10616956878 RX 263877 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1590389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11589919606 RX 3645730 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11542130745 RX 264161 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1596617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10675937127 RX 3885153 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10626124595 RX 264003 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1591114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11592617206 RX 3647626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11544798655 RX 264290 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 984 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1597596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10685122810 RX 3887217 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10635288286 RX 264132 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1591854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11595365107 RX 3649546 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11547515942 RX 264416 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1598574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10694283358 RX 3889257 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10644427382 RX 264261 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1592592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11598071196 RX 3651490 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11550191242 RX 264545 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1599553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10703452738 RX 3891297 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10653575290 RX 264387 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1593315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11600796187 RX 3653386 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11552887320 RX 264674 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1600532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10712646422 RX 3893361 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10662746968 RX 264516 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1594050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11603547396 RX 3655306 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11555608121 RX 264800 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1601509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10721818619 RX 3895401 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10671897693 RX 264645 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1594843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11607022925 RX 3657250 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11559051187 RX 264929 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1602488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10730979101 RX 3897441 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10681036734 RX 264771 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1595571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11609719641 RX 3659146 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11561718076 RX 265058 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1603467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10740159729 RX 3899505 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10690195373 RX 264900 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1596291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 150958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11612390522 RX 3661066 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11564359250 RX 265184 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1604445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 160953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10749342231 RX 3901545 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10699356376 RX 265029 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1597017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11615122137 RX 3663010 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11567061236 RX 265313 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 879 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1605423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10758527610 RX 3903585 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10708520262 RX 265155 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1597733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11617826752 RX 3664906 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11569736511 RX 265442 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1606402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10767701518 RX 3905649 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10717672206 RX 265284 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1598466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11620514775 RX 3666826 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11572394062 RX 265568 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1607379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10776873715 RX 3907689 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10726822934 RX 265413 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1599213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11623278579 RX 3668770 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11575127165 RX 265697 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 910 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1608358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10786069591 RX 3909729 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10735997288 RX 265539 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1599938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11625954879 RX 3670666 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11577774332 RX 265826 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1609337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10795236971 RX 3911793 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10745142707 RX 265668 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1600672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11628826574 RX 3672586 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11580615641 RX 265952 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1337 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1610315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10804411856 RX 3913833 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10754296110 RX 265797 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1601409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11631578259 RX 3674530 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11583336913 RX 266081 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1611293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10813611380 RX 3915873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10763474104 RX 265923 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1602136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11634280277 RX 3676426 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11586008693 RX 266210 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 882 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1612272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10822772424 RX 3917937 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10772613201 RX 266052 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1602868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11637021343 RX 3678346 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11588718505 RX 266336 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1581 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1613251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10831934187 RX 3919977 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10781753514 RX 266181 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1603629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11640003828 RX 3680290 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11591669462 RX 266465 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 982 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1614229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10841120655 RX 3922017 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10790918475 RX 266307 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1604368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11642751918 RX 3682186 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11594387745 RX 266594 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1615206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10850297380 RX 3924081 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10800073229 RX 266436 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1605094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11645468028 RX 3684106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11597074891 RX 266720 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1616186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 161977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10859474695 RX 3926121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10809229058 RX 266565 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1605815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 151999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11648157500 RX 3686050 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11599734860 RX 266849 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1617164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10868648299 RX 3928161 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10818381187 RX 266691 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1606535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11650895359 RX 3687946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11602444266 RX 266978 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1618142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10877820992 RX 3930225 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10827531920 RX 266820 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1607273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11653621025 RX 3689866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11605139263 RX 267104 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1619121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10887016676 RX 3932265 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10836706087 RX 266949 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1607996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11656364277 RX 3691810 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11607853025 RX 267233 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1620099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10896190280 RX 3934305 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10845858214 RX 267075 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1608724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11659103398 RX 3693706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11610562376 RX 267362 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1621077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10905362781 RX 3936369 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10855008756 RX 267204 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1609441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11661799956 RX 3695626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11613230266 RX 267488 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1622055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10914548160 RX 3938409 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10864172632 RX 267333 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1610174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11664485654 RX 3697570 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11615886310 RX 267617 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1623033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10923715044 RX 3940449 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10873318057 RX 267459 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1610902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11667213761 RX 3699466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11618585282 RX 267746 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1624013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10932886393 RX 3942513 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10882467435 RX 267588 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1611650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11669908227 RX 3701386 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11621248706 RX 267872 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1624991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10942086109 RX 3944553 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10891645623 RX 267717 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1612402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11672763348 RX 3703330 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11624073713 RX 268001 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1207 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1625968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10951243969 RX 3946593 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10900782045 RX 267843 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1613124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11675454046 RX 3705226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11626734198 RX 268130 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1626949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 162915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10960415444 RX 3948657 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10909931552 RX 267972 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1613848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11678167486 RX 3707146 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11629418310 RX 268256 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1493 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1627927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10969595384 RX 3950697 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10919090003 RX 268101 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1614616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 152959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11681176747 RX 3709090 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11632395958 RX 268385 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1628904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10978781918 RX 3952737 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10928255034 RX 268227 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1615342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11683885714 RX 3710986 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11635075699 RX 268514 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1629883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10987953456 RX 3954801 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10937404605 RX 268356 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1616079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11686938792 RX 3712906 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11638099309 RX 268640 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1630861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 10997126868 RX 3956841 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10946556539 RX 268485 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1616800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11689655613 RX 3714850 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11640786460 RX 268769 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1631839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11006309754 RX 3958881 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10955717930 RX 268611 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1617539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11692354663 RX 3716746 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11643455867 RX 268898 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1632818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11015488717 RX 3960945 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10964874910 RX 268740 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1618258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11695070067 RX 3718666 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11646141536 RX 269024 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1633796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11024662321 RX 3962985 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10974027036 RX 268869 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1618998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11697852803 RX 3720610 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11648893444 RX 269153 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1634774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11033851543 RX 3965025 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10983194747 RX 268995 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1619737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11700554506 RX 3722506 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11651564789 RX 269282 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1635753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11043037226 RX 3967089 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 10992358448 RX 269124 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1620469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11703290946 RX 3724426 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11654271191 RX 269408 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1636731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11052197774 RX 3969129 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11001497543 RX 269253 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1621177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11706034726 RX 3726370 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11656985068 RX 269537 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1637710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11061367154 RX 3971169 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11010645454 RX 269379 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1621915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11708738281 RX 3728266 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11659657369 RX 269666 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1638689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 163939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11070560838 RX 3973233 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11019817132 RX 269508 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1622648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11711438243 RX 3730186 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11662328233 RX 269792 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1639666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11079733035 RX 3975273 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11028967855 RX 269637 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1623382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11714104466 RX 3732130 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11664964951 RX 269921 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1204 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1640645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11088893517 RX 3977313 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11038106891 RX 269763 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1624117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 153999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11716971640 RX 3734026 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11667801734 RX 270050 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1641623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11098073649 RX 3979377 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11047265533 RX 269892 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1624857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11719704391 RX 3735946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11670504631 RX 270176 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1642602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11107256647 RX 3981417 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11056426541 RX 270021 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1625587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11722464742 RX 3737890 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11673233749 RX 270305 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 955 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1643580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11116442026 RX 3983457 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11065590421 RX 270147 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1626300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11725170522 RX 3739786 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11675909029 RX 270434 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1644558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11125615438 RX 3985521 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11074742355 RX 270276 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1627070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11728221764 RX 3741706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11678929209 RX 270560 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1645536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11134788131 RX 3987561 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11083893079 RX 270405 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1627783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11730911898 RX 3743650 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11681590145 RX 270689 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1646515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11143984007 RX 3989601 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11093067432 RX 270531 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1628516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11733658829 RX 3745546 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11684306926 RX 270818 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1647493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11153150891 RX 3991665 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11102212861 RX 270660 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1629245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11736343555 RX 3747466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11686962995 RX 270944 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1648472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11162326272 RX 3993705 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11111366268 RX 270789 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1629983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11739077660 RX 3749410 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11689666413 RX 271073 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1649450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11171525796 RX 3995745 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11120544266 RX 270915 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1630742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11742037627 RX 3751306 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11692594619 RX 271202 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1475 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1650428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 164963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11180686344 RX 3997809 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11129683357 RX 271044 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1631455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11744703529 RX 3753226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11695231367 RX 271328 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1651408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11189848603 RX 3999849 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11138823670 RX 271173 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1632177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11747385665 RX 3755170 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11697883416 RX 271457 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1652386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11199035071 RX 4001889 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11147988643 RX 271299 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1632889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 154959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11750090210 RX 3757066 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11700558651 RX 271586 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1653362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11208211300 RX 4003953 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11157143399 RX 271428 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1633601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11752766498 RX 3758986 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11703204276 RX 271712 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1066 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1654343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11217389111 RX 4005993 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11166299227 RX 271557 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1634334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11755563569 RX 3760930 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11705970939 RX 271841 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 945 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1655321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11226562715 RX 4008033 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11175451351 RX 271683 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1635083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11758378873 RX 3762826 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11708754916 RX 271970 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1193 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1656298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11235734912 RX 4010097 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11184602081 RX 271812 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1635821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11761130285 RX 3764722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11711475732 RX 272093 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1657278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11244931092 RX 4012137 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11193776246 RX 271941 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1636538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11763862445 RX 3766666 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11714178219 RX 272222 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1658256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11254104696 RX 4014177 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11202928371 RX 272067 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1637283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11766963787 RX 3768562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11717249283 RX 272351 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 655 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1659233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11263276701 RX 4016241 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11212078910 RX 272196 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1638014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11769657427 RX 3770482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11719912216 RX 272477 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1660212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11272462576 RX 4018281 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11221242792 RX 272325 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1638741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11772348076 RX 3772426 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11722572656 RX 272606 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1661190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11281629460 RX 4020321 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11230388215 RX 272451 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1639467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11775049455 RX 3774322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11725243996 RX 272735 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1662169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 165987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11290800313 RX 4022385 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11239537595 RX 272580 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1640200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11777751987 RX 3776242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11727916317 RX 272861 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1663148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11300000525 RX 4024425 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11248715789 RX 272709 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1640924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11780437793 RX 3778186 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11730572291 RX 272990 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1664125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11309158385 RX 4026465 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11257852213 RX 272835 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1641668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11783160861 RX 3780082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11733264874 RX 273119 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1665105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11318329364 RX 4028529 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11267001714 RX 272964 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1642400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 155997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11785888039 RX 3782002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11735961403 RX 273245 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1666084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11327509800 RX 4030569 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11276160173 RX 273093 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1643117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11788584718 RX 3783946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11738629273 RX 273374 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1416 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1667061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11336696334 RX 4032609 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11285325205 RX 273219 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1643873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11791546429 RX 3785842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11741559457 RX 273503 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1668039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11345867376 RX 4034673 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11294474780 RX 273348 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1644609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11794281353 RX 3787762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11744264362 RX 273629 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1669018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11355041284 RX 4036713 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11303626718 RX 273477 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1645347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11796982608 RX 3789706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11746935256 RX 273758 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1669996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11364224170 RX 4038753 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11312788112 RX 273603 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1646075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11799683579 RX 3791602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11749607061 RX 273887 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1670974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11373402637 RX 4040817 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11321945095 RX 273732 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1646808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11802454914 RX 3793522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11752348055 RX 274013 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 992 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1511 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1671953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11382576737 RX 4042857 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11331097228 RX 273861 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1647588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11805617742 RX 3795466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11755479380 RX 274142 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1187 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1672931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 166925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11391765959 RX 4044897 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11340264934 RX 273987 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1648303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11808253336 RX 3797362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11758085502 RX 274271 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1673909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11400951146 RX 4046961 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11349428615 RX 274116 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1649046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11811326777 RX 3799282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11761129404 RX 274397 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1674888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11410112190 RX 4049001 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11358567715 RX 274245 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1649776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11814055099 RX 3801226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11763828396 RX 274526 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1675867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11419281570 RX 4051041 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11367715629 RX 274371 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1650502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11816744039 RX 3803122 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11766487880 RX 274655 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1676845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11428474758 RX 4053105 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11376887306 RX 274500 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1651215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 156957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11819466936 RX 3805042 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11769182401 RX 274781 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 930 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1677823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11437647451 RX 4055145 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11386038036 RX 274629 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1651931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11822199770 RX 3806986 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11771885884 RX 274910 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1678802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11446807933 RX 4057185 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11395177065 RX 274755 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1652658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11824910903 RX 3808882 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11774568058 RX 275039 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1679780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11455988065 RX 4059249 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11404335709 RX 274884 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1653401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11827624200 RX 3810802 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11777251274 RX 275165 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1680759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11465171063 RX 4061289 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11413496728 RX 275013 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1654131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11830301898 RX 3812746 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11779899928 RX 275294 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1681737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11474356442 RX 4063329 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11422660606 RX 275139 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1654842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11832961240 RX 3814642 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11782529246 RX 275423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 688 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1682715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11483529854 RX 4065393 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11431812547 RX 275268 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1655578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11835712529 RX 3816562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11785250468 RX 275549 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1683693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11492702547 RX 4067433 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11440963270 RX 275397 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1656315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11838481433 RX 3818506 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11787988037 RX 275678 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1684672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 167949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11501898423 RX 4069473 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11450137621 RX 275523 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1657039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11841231689 RX 3820402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11790708818 RX 275807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1005 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1685650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11511065307 RX 4071537 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11459283045 RX 275652 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1657766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11843995076 RX 3822322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11793442437 RX 275933 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1686629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11520240688 RX 4073577 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11468436453 RX 275781 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1658514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11846846389 RX 3824266 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11796262943 RX 276062 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1109 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1687607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11529440212 RX 4075617 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11477614458 RX 275907 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1659245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11849574627 RX 3826162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11798961474 RX 276191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1688585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11538600760 RX 4077681 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11486753560 RX 276036 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1659971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11852282077 RX 3828082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11801639753 RX 276317 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1689565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11547763019 RX 4079721 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11495893878 RX 276165 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1660714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 157998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11855008680 RX 3830026 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11804336257 RX 276446 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1690543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11556949487 RX 4081761 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11505058852 RX 276291 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1661429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11857720479 RX 3831922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11807018947 RX 276575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1691519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11566125716 RX 4083825 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11514213605 RX 276420 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1662159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11860436986 RX 3833842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11809706103 RX 276701 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 660 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1692500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11575303527 RX 4085865 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11523369436 RX 276549 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1662899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11863127262 RX 3835786 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11812366578 RX 276830 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1693478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11584477131 RX 4087905 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11532521563 RX 276675 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1663611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11865827874 RX 3837682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11815036896 RX 276959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1028 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1694455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11593649328 RX 4089969 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11541672295 RX 276804 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1664376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11868650070 RX 3839602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11817828313 RX 277085 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1695435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11602845508 RX 4092009 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11550846463 RX 276933 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1665101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11871359673 RX 3841546 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11820508074 RX 277214 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1520 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1696413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 168973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11612019112 RX 4094049 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11559998590 RX 277059 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1665862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11874318744 RX 3843442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11823435289 RX 277343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1697390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11621191117 RX 4096113 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11569149126 RX 277188 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1666593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11877070294 RX 3845362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11826158043 RX 277469 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1698369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11630376992 RX 4098153 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11578313009 RX 277317 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1667310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11879807406 RX 3847306 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11828866898 RX 277598 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1699347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11639543876 RX 4100193 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11587458437 RX 277443 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1668029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11882500137 RX 3849202 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11831530863 RX 277727 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1700326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11648714729 RX 4102257 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11596607816 RX 277572 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1668779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11885556832 RX 3851122 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11834555900 RX 277853 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1701305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11657914941 RX 4104297 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11605786012 RX 277701 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1669519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 158958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11888250370 RX 3853066 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11837219309 RX 277982 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1702282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11667072801 RX 4106337 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11614922432 RX 277827 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1670262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11891022077 RX 3854962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11839959772 RX 278111 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1016 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1703262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11676243780 RX 4108401 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11624071944 RX 277956 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1670986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11893707845 RX 3856882 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11842615816 RX 278237 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1704241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11685424216 RX 4110441 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11633230398 RX 278085 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1671710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11896424544 RX 3858826 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11845302942 RX 278366 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1705218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11694610750 RX 4112481 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11642395440 RX 278211 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1672431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11899141196 RX 3860722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11847988591 RX 278495 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1706196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11703781792 RX 4114545 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11651545010 RX 278340 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1673146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11901793991 RX 3862642 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11850611996 RX 278621 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1707174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11712955204 RX 4116585 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11660696940 RX 278469 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1673879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11904472027 RX 3864586 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11853260540 RX 278750 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1708153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 169997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11722138586 RX 4118625 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11669858337 RX 278595 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1674602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11907188904 RX 3866482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11855947245 RX 278879 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1709131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11731317053 RX 4120689 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11679015325 RX 278724 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1675327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11909887523 RX 3868402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11858616582 RX 279005 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1710109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11740490657 RX 4122729 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11688167452 RX 278853 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1676069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11912639957 RX 3870346 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11861339797 RX 279134 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 956 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1711088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11749680375 RX 4124769 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11697335168 RX 278979 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1676801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11915400607 RX 3872242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11864069916 RX 279263 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1712066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11758865562 RX 4126833 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11706498850 RX 279108 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1677518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11918116174 RX 3874162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11866757097 RX 279389 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1713044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11768026110 RX 4128873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11715637943 RX 279237 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1678251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11920832731 RX 3876106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11869443737 RX 279518 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1714024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11777195986 RX 4130913 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11724785857 RX 279363 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1678984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 159998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11923519675 RX 3878002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11872100247 RX 279647 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1715002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11786389174 RX 4132977 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11733957531 RX 279492 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1679722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11926284636 RX 3879922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11874834807 RX 279773 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1715979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11795561371 RX 4135017 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11743108261 RX 279621 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1680443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11928971517 RX 3881866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11877492283 RX 279902 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1716959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11804722349 RX 4137057 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11752247295 RX 279747 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1681169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11931673548 RX 3883762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11880164639 RX 280031 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1061 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1717937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11813902481 RX 4139121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11761405939 RX 279876 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1681915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11934475735 RX 3885682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11882935828 RX 280157 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1718915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 170937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11823084983 RX 4141161 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11770566951 RX 280005 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1682654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11937228192 RX 3887626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11885657571 RX 280286 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1719894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 11832270858 RX 4143201 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11779730836 RX 280131 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1683374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 11939920260 RX 3889522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11888320504 RX 280415 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 48 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -60 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1720868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 11841402282 RX 4145527 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11788840871 RX 280488 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1683414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: ulsch_rounds 160512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 11939991367 RX 3891878 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11888382417 RX 281303 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1721287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 8379: ulsch_rounds 171204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 11844753535 RX 4149124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11792173344 RX 282287 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1683517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: ulsch_rounds 160554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 11940189946 RX 3894149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11888578094 RX 282033 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1722003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11847382880 RX 4151188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11794771715 RX 282416 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1684481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 96c8: ulsch_rounds 160637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11944751607 RX 3896151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11893127090 RX 282232 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1722743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11850068989 RX 4153228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11797427849 RX 282542 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1685448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11953764903 RX 3898047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11902119264 RX 282361 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1723502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11852768485 RX 4155292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11800095894 RX 282671 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1686414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11963055966 RX 3899967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11911388657 RX 282487 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1724253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11855538218 RX 4157332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11802833618 RX 282800 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1687383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11972366519 RX 3901911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11920676507 RX 282616 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1724994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11858266051 RX 4159372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11805531223 RX 282926 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1688350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 160957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11981699246 RX 3903807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11929987476 RX 282745 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1725740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11861023533 RX 4161436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11808256565 RX 283055 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1689315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 11991010151 RX 3905727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11939276661 RX 282871 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1726492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11863674214 RX 4163476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11810876140 RX 283184 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1690283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12000317454 RX 3907671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11948561753 RX 283000 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 637 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1727235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11866369001 RX 4165516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11813539714 RX 283310 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1691252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12009633781 RX 3909567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11957855849 RX 283129 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1727983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 171972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11869026744 RX 4167580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11816167755 RX 283439 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1692217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12018945967 RX 3911487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11967146303 RX 283255 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 661 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1728739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11871732985 RX 4169620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11818843230 RX 283568 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1693185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12028272662 RX 3913431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11976450755 RX 283384 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1729483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11874442952 RX 4171660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11821523116 RX 283694 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1694153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12037573629 RX 3915327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11985729528 RX 283513 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1730229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11877224966 RX 4173724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11824275585 RX 283823 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1695119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12046873782 RX 3917247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 11995007986 RX 283639 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1082 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1730986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11879993940 RX 4175764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11827013294 RX 283952 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1696087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12056200642 RX 3919191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12004312623 RX 283768 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1731730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11882753715 RX 4177804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11829742061 RX 284078 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1697055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12065501582 RX 3921087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12013591399 RX 283897 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1732473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11885498993 RX 4179868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11832456063 RX 284207 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1698021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12074808263 RX 3923007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12022876368 RX 284023 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 645 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1733196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11888174159 RX 4181908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11835100341 RX 284336 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1698989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12084141870 RX 3924951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12032187721 RX 284152 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1733942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11890877175 RX 4183948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11837772832 RX 284462 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1699956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12093441238 RX 3926847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12041464899 RX 284281 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1734673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11893556480 RX 4186012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11840421576 RX 284591 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1700923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 161996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12102742798 RX 3928767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12050744750 RX 284407 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1735418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11896231650 RX 4188052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11843065899 RX 284720 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1701891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12112076213 RX 3930711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12060055906 RX 284536 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1673 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1736189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11899302672 RX 4190092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11846106021 RX 284846 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1702857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12121395231 RX 3932607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12069352704 RX 284665 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1736926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 172996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11902009466 RX 4192156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11848781436 RX 284975 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1703824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12130708758 RX 3934527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12078644503 RX 284791 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1737668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11904703521 RX 4194196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11851444930 RX 285104 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1704792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12140008060 RX 3936471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12087921621 RX 284920 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 662 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1738419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11907387188 RX 4196236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11854098095 RX 285230 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1705759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12149323238 RX 3938367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12097214581 RX 285049 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1739178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11910125288 RX 4198300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11856804647 RX 285359 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1706726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12158649629 RX 3940287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12106519222 RX 285175 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1739920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11912865751 RX 4200340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11859514183 RX 285488 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1707694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12167943657 RX 3942231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12115791095 RX 285304 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1740661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11915542829 RX 4202380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11862159998 RX 285614 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1708661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12177251191 RX 3944127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12125076455 RX 285433 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 629 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1741402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11918204905 RX 4204444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11864789461 RX 285743 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1709628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12186577390 RX 3946047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12134380901 RX 285559 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1742150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11920995971 RX 4206484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11867549360 RX 285872 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1710596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12195871829 RX 3947991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12143653154 RX 285688 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1026 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1742888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11923743826 RX 4208524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11870266286 RX 285998 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1711563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12205185534 RX 3949887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12152944640 RX 285817 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1743617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11926466560 RX 4210588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11872958048 RX 286127 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1712530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 162956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12214518453 RX 3951807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12162255793 RX 285943 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 699 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1744359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11929176052 RX 4212628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11875636457 RX 286256 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1713496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12223815517 RX 3953751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12171530675 RX 286072 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1745115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 173934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11931928761 RX 4214668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11878357839 RX 286382 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1714465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12233126597 RX 3955647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12180819544 RX 286201 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1745869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11934656330 RX 4216732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11881052550 RX 286511 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1715432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12242446652 RX 3957567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12190117858 RX 286327 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1746616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11937358988 RX 4218772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11883724996 RX 286640 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1716398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12251765478 RX 3959511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12199414452 RX 286456 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1747354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11940058372 RX 4220812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11886393001 RX 286766 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1717366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12261085837 RX 3961407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12208712576 RX 286585 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1748092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11942776379 RX 4222876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11889079801 RX 286895 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1718333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12270392836 RX 3963327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12217997857 RX 286711 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1748834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11945478733 RX 4224916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11891751276 RX 287024 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1719300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12279693458 RX 3965271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12227276319 RX 286840 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1749584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11948215922 RX 4226956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11894456381 RX 287150 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1720268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12289020510 RX 3967167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12236581149 RX 286969 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1750332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11950911731 RX 4229020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11897121432 RX 287279 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1721235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12298320597 RX 3969087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12245859533 RX 287095 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 598 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1751064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11953582540 RX 4231060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11899762746 RX 287408 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1722202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12307621438 RX 3971031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12255138188 RX 287224 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1751810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11956380680 RX 4233100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11902530115 RX 287534 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1723170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12316954853 RX 3972927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12264449351 RX 287353 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1752546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11959036898 RX 4235164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11905156148 RX 287663 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1724136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12326245916 RX 3974847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12273718729 RX 287479 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1753286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11961774759 RX 4237204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11907863236 RX 287792 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1725104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 163997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12335555973 RX 3976791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12283006574 RX 287608 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1754049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 174958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11964550283 RX 4239244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11910606838 RX 287918 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1726072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12344889196 RX 3978687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12292317529 RX 287737 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1754791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11967302186 RX 4241308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11913328160 RX 288047 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1727037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12354200101 RX 3980607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12301606717 RX 287863 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1755541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11969997905 RX 4243348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11915993166 RX 288176 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1728004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12363506908 RX 3982551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12310891807 RX 287992 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1756277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11972763607 RX 4245388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11918729278 RX 288302 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1728974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12372823731 RX 3984447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12320185908 RX 288121 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1757026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11975459178 RX 4247452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11921392832 RX 288431 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1729939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12382135917 RX 3986367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12329476378 RX 288247 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1757766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11978162359 RX 4249492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11924065288 RX 288560 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1730906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12391462116 RX 3988311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12338780825 RX 288376 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1758513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11980922737 RX 4251532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11926794085 RX 288686 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1731875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12400763525 RX 3990207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12348059599 RX 288505 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1759260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11983645572 RX 4253596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11929485787 RX 288815 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1732841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12410063678 RX 3992127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12357338055 RX 288631 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1759997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11986332678 RX 4255636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11932141931 RX 288944 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1733808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12419390069 RX 3994071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12366642686 RX 288760 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1760751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11989036207 RX 4257676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11934812945 RX 289070 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1734777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12428691532 RX 3995967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12375921463 RX 288889 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 618 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1761509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11991765674 RX 4259740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11937512122 RX 289199 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1735743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12437998213 RX 3997887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12385206434 RX 289015 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1762252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11994437456 RX 4261780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11940153441 RX 289328 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1736710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 164957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12447331324 RX 3999831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12394517780 RX 289144 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1762991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 175982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11997174437 RX 4263820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11942858491 RX 289454 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1737678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12456631188 RX 4001727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12403794963 RX 289273 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1763750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 11999908300 RX 4265884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11945562109 RX 289583 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1738645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12465932748 RX 4003647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12413074819 RX 289399 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 664 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1764488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12002575485 RX 4267924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11948199012 RX 289712 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1739612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12475265667 RX 4005591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12422385970 RX 289528 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1765249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12005287269 RX 4269964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11950878377 RX 289838 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1740579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12484585181 RX 4007487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12431682768 RX 289657 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1766000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12008031127 RX 4272028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11953591398 RX 289967 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1741546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12493898708 RX 4009407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12440974566 RX 289783 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1766751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12010855950 RX 4274068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11956386384 RX 290096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1742513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12503197514 RX 4011351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12450251675 RX 289912 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1015 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1767538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12013970603 RX 4276108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11959468488 RX 290222 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1743481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12512513134 RX 4013247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12459544628 RX 290041 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1768304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12017057954 RX 4278172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11962524832 RX 290351 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1744448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12521839525 RX 4015167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12468849260 RX 290167 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1653 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1769050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12019753778 RX 4280212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11965188376 RX 290480 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1745415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12531133084 RX 4017111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12478121129 RX 290296 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1769800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12022502825 RX 4282252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11967906759 RX 290606 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1746383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12540441141 RX 4019007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12487406488 RX 290425 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 680 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1770548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12025223664 RX 4284316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11970596944 RX 290735 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1747350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12549767340 RX 4020927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12496710926 RX 290551 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1771284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 176922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12027890624 RX 4286356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11973233777 RX 290864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1748317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12559061283 RX 4022871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12505983178 RX 290680 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 579 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1772032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12030625168 RX 4288396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11975937400 RX 290990 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1749285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 165997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12568375484 RX 4024767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12515274672 RX 290809 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 905 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1772749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12033318118 RX 4290460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11978601014 RX 291119 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1750252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12577708403 RX 4026687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12524585820 RX 290935 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1773489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12035997670 RX 4292500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11981249803 RX 291248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1751217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12587004971 RX 4028631 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12533860703 RX 291064 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1774226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12038709089 RX 4294540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11983929639 RX 291374 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1752186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12596316051 RX 4030527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12543149566 RX 291193 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 713 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1774968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12041403033 RX 4296604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11986593238 RX 291503 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1753154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12605636602 RX 4032447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12552447880 RX 291319 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1775726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12044114206 RX 4298644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11989273089 RX 291632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1754119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12614954932 RX 4034391 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12561744481 RX 291448 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1776464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12046822980 RX 4300684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11991951463 RX 291758 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1755087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12624275264 RX 4036287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12571042603 RX 291577 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1777220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12049541746 RX 4302748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11994638233 RX 291887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1756055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12633582732 RX 4038207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12580327893 RX 291703 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1777978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12052312360 RX 4304788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 11997376493 RX 292016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1757021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12642882885 RX 4040151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12589606350 RX 291832 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1778726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12055064984 RX 4306828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12000097885 RX 292142 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1757989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12652209964 RX 4042047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12598911186 RX 291961 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 645 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1779470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12057739814 RX 4308892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12002742223 RX 292271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1758957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12661510547 RX 4043967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12608189570 RX 292087 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1780218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 177946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12060412918 RX 4310932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12005383597 RX 292400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1759923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12670810892 RX 4045911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12617468219 RX 292216 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1780965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12063126233 RX 4312972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12008066452 RX 292526 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1760891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 166957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12680144307 RX 4047807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12626779375 RX 292345 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1781694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12065839920 RX 4315036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12010749262 RX 292655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1761858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12689435866 RX 4049727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12636048767 RX 292471 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1782430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12068536007 RX 4317076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12013415785 RX 292784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1762825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12698745427 RX 4051671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12645336607 RX 292600 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1783190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12071268427 RX 4319116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12016116419 RX 292910 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1763793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12708078650 RX 4053567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12654647560 RX 292729 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1783933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12073985522 RX 4321180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12018802258 RX 293039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1764759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12717390051 RX 4055487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12663936751 RX 292855 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1784688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12076716581 RX 4323220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12021501375 RX 293168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1765726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12726696858 RX 4057431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12673221843 RX 292984 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1785461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12079666667 RX 4325260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12024419843 RX 293294 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1766695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12736013158 RX 4059327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12682515946 RX 293113 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1390 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 597 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1786205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12082307746 RX 4327324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12027030085 RX 293423 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1767661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12745325813 RX 4061247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12691806415 RX 293239 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 621 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1786953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12084971324 RX 4329364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12029662542 RX 293552 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1768628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12754652012 RX 4063191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12701110864 RX 293368 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1787690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12087661170 RX 4331404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12032321720 RX 293678 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1769596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12763952979 RX 4065087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12710389634 RX 293497 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1788439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12090426720 RX 4333468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12035056455 RX 293807 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1770563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12773253628 RX 4067007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12719668095 RX 293623 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1789187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 178970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12093125931 RX 4335508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12037724475 RX 293936 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1771530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12782580019 RX 4068951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12728972725 RX 293752 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1789931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12095802952 RX 4337548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12040370255 RX 294062 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1772498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12791880986 RX 4070847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12738251494 RX 293881 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1790697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12098655250 RX 4339612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12043190921 RX 294191 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1773465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 167996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12801188163 RX 4072767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12747536468 RX 294007 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1033 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1791439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12101352466 RX 4341652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12045857414 RX 294320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1774432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12810521274 RX 4074711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12756847807 RX 294136 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1792193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12104044564 RX 4343692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12048517994 RX 294446 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1775399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12819820642 RX 4076607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12766124984 RX 294265 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1792922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12106720155 RX 4345756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12051163724 RX 294575 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1776367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12829122698 RX 4078527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12775404849 RX 294391 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1793663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12109479763 RX 4347796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12053892511 RX 294704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1777334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12838455617 RX 4080471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12784715997 RX 294520 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1794420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12112175579 RX 4349836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12056556085 RX 294830 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1778300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12847774608 RX 4082367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12794012786 RX 294649 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1646 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1795172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179652/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12115184771 RX 4351900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12059535305 RX 294959 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1779268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12857088604 RX 4084287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12803304591 RX 294775 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 576 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1795922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12118006550 RX 4353940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12062326356 RX 295088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1780235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12866387410 RX 4086231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12812581698 RX 294904 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1519 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 940 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1796705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12120924526 RX 4355980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12065212240 RX 295214 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1781202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12875702588 RX 4088127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12821874659 RX 295033 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1797454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12123622475 RX 4358044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12067880295 RX 295343 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1782170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12885029475 RX 4090047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12831179289 RX 295159 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1798189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 179994/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12126320071 RX 4360084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12070548250 RX 295472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1783137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12894323034 RX 4091991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12840451156 RX 295288 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 634 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1798934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12129015212 RX 4362124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12073211834 RX 295598 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1784104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12903630595 RX 4093887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12849736513 RX 295417 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1799689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12131781576 RX 4364188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12075945077 RX 295727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1785072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 168956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12912957290 RX 4095807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12859040961 RX 295543 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1800425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12134524103 RX 4366228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12078656090 RX 295856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1786039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12922251233 RX 4097751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12868313222 RX 295672 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1801167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12137206005 RX 4368268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12081307763 RX 295982 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1787006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12931564938 RX 4099647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12877604712 RX 295801 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 602 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1801916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12139897532 RX 4370332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12083968378 RX 296111 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1787974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12940898353 RX 4101567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12886915868 RX 295927 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 940 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1802660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12142661193 RX 4372372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12086701125 RX 296240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1788939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12950194921 RX 4103511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12896190755 RX 296056 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1803396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12145394382 RX 4374412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12089403692 RX 296366 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1789907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12959505505 RX 4105407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12905479621 RX 296185 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1804132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12148113021 RX 4376476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12092090953 RX 296495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1790876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12968826498 RX 4107327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12914777935 RX 296311 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1804882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12150833661 RX 4378516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12094781253 RX 296624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1791841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12978144828 RX 4109271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12924074525 RX 296440 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1805636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12153502544 RX 4380556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12097418096 RX 296750 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1792808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12987464691 RX 4111167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12933372651 RX 296569 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1806386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 180932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12156241282 RX 4382620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12100124543 RX 296879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1793777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 12996772682 RX 4113087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12942657936 RX 296695 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1807143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12158958861 RX 4384660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12102808875 RX 297008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1794743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13006072835 RX 4115031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12951936381 RX 296824 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1807893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12161713782 RX 4386700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12105533141 RX 297134 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1795710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13015399418 RX 4116927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12961241218 RX 296953 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1808642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181188/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12164437208 RX 4388764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12108224903 RX 297263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1796679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13024700497 RX 4118847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12970519612 RX 297079 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1809386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12167219188 RX 4390804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12110975960 RX 297392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1797645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 169997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13034000842 RX 4120791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12979798269 RX 297208 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1810128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12169976358 RX 4392844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12113701813 RX 297518 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1798612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13043333761 RX 4122687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12989109416 RX 297337 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1810863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12172694444 RX 4394908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12116389144 RX 297647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1799580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13052625816 RX 4124607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 12998378809 RX 297463 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1811613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12175413971 RX 4396948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12119076430 RX 297776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1800547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13061935377 RX 4126551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13007666644 RX 297592 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1812359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12178113216 RX 4398988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12121744425 RX 297902 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1801514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13071268104 RX 4128447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13016977604 RX 297721 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1813108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12180800758 RX 4401052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12124400624 RX 298031 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1802481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13080579947 RX 4130367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13026266796 RX 297847 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 594 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1813849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12183491005 RX 4403092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12127060753 RX 298160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1803448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13089886754 RX 4132311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13035551887 RX 297976 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1814599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12186212603 RX 4405132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12129751414 RX 298286 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1804416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13099202585 RX 4134207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13044845983 RX 298105 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1815334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 181956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12188952869 RX 4407196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12132459515 RX 298415 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1805383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13108515763 RX 4136127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13054136462 RX 298231 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1816085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12191635711 RX 4409236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12135109699 RX 298544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1806350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13117841962 RX 4138071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13063440904 RX 298360 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1816853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12194754627 RX 4411276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12138197205 RX 298670 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1807317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13127142433 RX 4139967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13072719672 RX 298489 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1817606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12197438279 RX 4413340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12140848883 RX 298799 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1808285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13136443578 RX 4141887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13081998125 RX 298615 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1818340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12200178262 RX 4415380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12143558394 RX 298928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1809252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 170957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13145769969 RX 4143831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13091302758 RX 298744 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1819097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12202927826 RX 4417420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12146276757 RX 299054 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1810219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13155070440 RX 4145727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13100581514 RX 298873 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1819828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12205594939 RX 4419484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12148913630 RX 299183 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1811187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13164378113 RX 4147647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13109866494 RX 298999 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 659 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1820574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12208317591 RX 4421524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12151605382 RX 299312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1812154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13173711224 RX 4149591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13119177838 RX 299128 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1821319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12210985596 RX 4423564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12154242300 RX 299438 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1813120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13183010096 RX 4151487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13128455017 RX 299257 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 599 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1822058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12213668818 RX 4425628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12156894033 RX 299567 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1814088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13192312125 RX 4153407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13137734877 RX 299383 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1822795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12216377779 RX 4427668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12159573859 RX 299696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1815056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13201645513 RX 4155351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13147046035 RX 299512 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1823541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12219071640 RX 4429708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12162237513 RX 299822 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1816021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13210964035 RX 4157247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13156342822 RX 299641 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1824290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 182980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12221794977 RX 4431772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12164929245 RX 299951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1816989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13220278058 RX 4159167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13165634625 RX 299767 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 654 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1825015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12224457957 RX 4433812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12167561687 RX 300080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1817957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13229577360 RX 4161111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13174911742 RX 299896 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1825773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12227241248 RX 4435852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12170314156 RX 300206 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1818923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13238892042 RX 4163007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13184204695 RX 300025 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1003 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1826525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12229998705 RX 4437916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12173039969 RX 300335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1819891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13248218929 RX 4164927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13193509335 RX 300151 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1827267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 12232693831 RX 4439956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12175703533 RX 300464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1820859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 171917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13257512984 RX 4166871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13202781208 RX 300280 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 608 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1827385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 19 +UE 8379: ulsch_rounds 183364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 12233041098 RX 4442430 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12176039177 RX 301373 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1821823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13266799055 RX 4168915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13212045610 RX 300557 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1827413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 183398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 12233059119 RX 4444585 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12176054454 RX 302021 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1822249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 24 +UE 96c8: ulsch_rounds 172089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 13270605322 RX 4172480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13215833521 RX 302308 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1828388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 8379: ulsch_rounds 183488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12237108662 RX 4446749 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12180092875 RX 302296 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1822943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13273231639 RX 4174544 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13218430094 RX 302583 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1829366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12245745566 RX 4448789 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12188709378 RX 302422 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1823652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13275861344 RX 4176488 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13221032265 RX 302712 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1830345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12254906610 RX 4450853 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12197848483 RX 302551 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1824380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13278538484 RX 4178384 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13223679838 RX 302841 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1831324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12264075990 RX 4452893 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12206996398 RX 302680 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1825108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13281321785 RX 4180304 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13226432157 RX 302967 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1832302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12273269178 RX 4454933 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12216168074 RX 302806 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1825840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13284066367 RX 4182248 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13229145984 RX 303096 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1833280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 183914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12282441871 RX 4456997 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12225318796 RX 302935 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1826567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13286740443 RX 4184144 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13231791133 RX 303225 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1834259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12291602353 RX 4459037 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12234457829 RX 303064 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1827282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13289415282 RX 4186064 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13234435747 RX 303351 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1835237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12300782485 RX 4461077 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12243616472 RX 303190 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1828001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13292132122 RX 4188008 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13237122898 RX 303480 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1836216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12309965483 RX 4463141 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12252777486 RX 303319 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1828731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13294845101 RX 4189904 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13239805638 RX 303609 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1837194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12319150862 RX 4465181 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12261941369 RX 303448 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1829469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13297568937 RX 4191824 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13242499673 RX 303735 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 936 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1838172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12328324274 RX 4467221 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12271093301 RX 303574 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1830199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 172974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13300302393 RX 4193768 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13245203622 RX 303864 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1839150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12337496967 RX 4469285 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12280244032 RX 303703 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1830922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13302987227 RX 4195664 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13247858194 RX 303993 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1840129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12346692843 RX 4471325 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12289418379 RX 303832 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1831671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13305866234 RX 4197584 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13250706442 RX 304119 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1228 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1841107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12355859727 RX 4473365 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12298563810 RX 303958 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1832406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13308580922 RX 4199528 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13253390604 RX 304248 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1842086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12365035108 RX 4475429 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12307717225 RX 304087 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1833141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13311362659 RX 4201424 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13256141992 RX 304377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1843064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12374234632 RX 4477469 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12316895219 RX 304216 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1833869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13314114389 RX 4203344 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13258863189 RX 304503 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1844042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12383395180 RX 4479509 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12326034320 RX 304342 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1834605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13316824224 RX 4205288 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13261542880 RX 304632 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1845022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 184938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12392557439 RX 4481573 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12335174634 RX 304471 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1835330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13319571039 RX 4207184 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13264259696 RX 304761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1846000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12401743907 RX 4483613 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12344339601 RX 304600 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1836055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13322307998 RX 4209104 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13266966103 RX 304887 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1846976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12410920136 RX 4485653 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12353494358 RX 304726 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1836785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13325022936 RX 4211048 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13269650290 RX 305016 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1847957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12420097947 RX 4487717 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12362650186 RX 304855 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1837494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13327702712 RX 4212944 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13272300366 RX 305145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1848935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12429271551 RX 4489757 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12371802315 RX 304984 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1838228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13330435379 RX 4214864 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13275003774 RX 305271 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1849912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12438443748 RX 4491797 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12380953052 RX 305110 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1838960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 173934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13333139715 RX 4216808 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13277679089 RX 305400 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1850892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12447639928 RX 4493861 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12390127221 RX 305239 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1839698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13335971601 RX 4218704 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13280481315 RX 305529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1024 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1851870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12456813532 RX 4495901 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12399279348 RX 305368 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1840413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13338685762 RX 4220624 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13283165963 RX 305655 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1852847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12465985537 RX 4497941 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12408429878 RX 305494 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1841138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13341447742 RX 4222568 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13285897083 RX 305784 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1853826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12475171412 RX 4500005 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12417593762 RX 305623 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1841862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13344180217 RX 4224464 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13288599565 RX 305913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1854804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12484338296 RX 4502045 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12426739184 RX 305752 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1842580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13346816413 RX 4226384 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13291206638 RX 306039 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 675 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1056 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1855783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12493509149 RX 4504085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12435888565 RX 305878 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1843317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13349626873 RX 4228328 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13293985693 RX 306168 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1856762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 185962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12502709361 RX 4506149 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12445066762 RX 306007 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1844047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13352327485 RX 4230224 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13296656532 RX 306297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1857739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12511867221 RX 4508189 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12454203182 RX 306136 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1844769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13355069182 RX 4232144 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13299366964 RX 306423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1858719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12521038200 RX 4510229 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12463352687 RX 306262 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1845495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13357789749 RX 4234088 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13302057585 RX 306552 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 989 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1859698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12530218636 RX 4512293 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12472511144 RX 306391 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1846224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13360557088 RX 4235984 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13304795169 RX 306681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1860675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12539405170 RX 4514333 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12481676178 RX 306520 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1846981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13363267800 RX 4237904 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13307473478 RX 306807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1861653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12548576212 RX 4516373 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12490825744 RX 306646 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1847716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13365960376 RX 4239848 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13310136902 RX 306936 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1862631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12557749624 RX 4518437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12499977678 RX 306775 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1848453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 174974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13368701486 RX 4241744 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13312847735 RX 307065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1863610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12566933006 RX 4520477 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12509139079 RX 306904 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1849174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13371429743 RX 4243664 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13315545295 RX 307191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1864588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12576111473 RX 4522517 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12518296063 RX 307030 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1849895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13374158110 RX 4245608 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13318244302 RX 307320 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1865566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12585285077 RX 4524581 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12527448190 RX 307159 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1850646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13377274593 RX 4247504 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13321330161 RX 307449 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1899 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1866545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12594474795 RX 4526621 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12536615909 RX 307288 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1851360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13379934824 RX 4249424 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13323959529 RX 307575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 942 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1867523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12603659982 RX 4528661 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12545779587 RX 307414 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1852091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13382674176 RX 4251368 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13326669901 RX 307704 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1868501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 186986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12612820530 RX 4530725 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12554918698 RX 307543 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1852812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13385362967 RX 4253264 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13329329350 RX 307833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1869481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12621990406 RX 4532765 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12564066611 RX 307672 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1853535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13388087867 RX 4255184 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13332023911 RX 307959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 672 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1870459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12631183594 RX 4534805 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12573238289 RX 307798 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1854258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13390785149 RX 4257220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13334691786 RX 308088 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1158 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1871436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12640355791 RX 4536869 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12582389011 RX 307927 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1854996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13393588319 RX 4259116 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13337464397 RX 308217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1872416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12649516769 RX 4538909 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12591528039 RX 308056 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1855744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13396343002 RX 4261036 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13340188598 RX 308343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 959 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1873394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12658696901 RX 4540949 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12600686679 RX 308182 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1856465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13399101685 RX 4262980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13342917701 RX 308472 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1874372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12667879403 RX 4543013 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12609847685 RX 308311 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1857180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 175934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13401825346 RX 4264876 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13345612282 RX 308601 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1875351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12677065278 RX 4545053 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12619011569 RX 308440 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1857891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13404523076 RX 4266796 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13348280167 RX 308727 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1876329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12686238690 RX 4547093 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12628163503 RX 308566 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1858627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13407221011 RX 4268740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13350947556 RX 308856 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1877306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12695410887 RX 4549157 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12637314232 RX 308695 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1859354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13409933646 RX 4270636 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13353630752 RX 308985 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1878286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12704607259 RX 4551197 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12646488579 RX 308824 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1860080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13412662041 RX 4272556 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13356329739 RX 309111 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1879264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 187924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12713774143 RX 4553237 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12655634003 RX 308950 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1860806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13415327504 RX 4274500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13358965981 RX 309240 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 702 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1880242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12722949028 RX 4555301 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12664787420 RX 309079 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1861537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13418033319 RX 4276396 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13361641777 RX 309369 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1881221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12732149048 RX 4557341 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12673965414 RX 309208 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1862258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13420745680 RX 4278316 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13364324452 RX 309495 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1882199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12741309596 RX 4559381 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12683104515 RX 309334 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1863031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13423733904 RX 4280260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13367280796 RX 309624 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1544 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1883178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12750471359 RX 4561445 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12692244825 RX 309463 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1863754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13426446857 RX 4282156 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13369963967 RX 309753 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 898 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1884157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12759658323 RX 4563485 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12701409796 RX 309592 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1864481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13429152690 RX 4284076 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13372639282 RX 309879 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1885133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12768834552 RX 4565525 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12710564549 RX 309718 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1865217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13431883917 RX 4286020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13375341238 RX 310008 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1886113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12778011867 RX 4567589 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12719720376 RX 309847 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1865948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13434675379 RX 4287916 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13378100982 RX 310137 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1172 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1887092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12787185967 RX 4569629 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12728872505 RX 309976 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1866683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 176973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13437513280 RX 4289836 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13380908240 RX 310263 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 906 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1888069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12796358164 RX 4571669 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12738023232 RX 310102 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1867411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13440247473 RX 4291780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13383612699 RX 310392 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1889048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12805553848 RX 4573733 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12747197399 RX 310231 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1868129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13442915109 RX 4293676 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13386249913 RX 310521 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1890027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12814727948 RX 4575773 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12756349530 RX 310360 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1868836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13445590258 RX 4295596 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13388895017 RX 310647 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1891004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 188948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12823899953 RX 4577813 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12765500058 RX 310486 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1869563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13448322105 RX 4297540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13391597489 RX 310776 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1891982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12833085332 RX 4579877 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12774663937 RX 310615 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1870282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13450996865 RX 4299436 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13394242628 RX 310905 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1892961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12842252712 RX 4581917 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12783809359 RX 310744 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1871014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13453778371 RX 4301356 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13396994041 RX 311031 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 952 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1893940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12851423565 RX 4583957 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12792958735 RX 310870 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1871741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13456488288 RX 4303300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13399673742 RX 311160 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1894918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12860623281 RX 4586021 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12802136925 RX 310999 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1872498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13459601642 RX 4305196 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13402756632 RX 311289 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1895896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12869781637 RX 4588061 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12811273342 RX 311128 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1873218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13462316535 RX 4307116 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13405442251 RX 311415 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1896876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12878952616 RX 4590101 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12820422839 RX 311254 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1873935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13465018434 RX 4309060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13408114572 RX 311544 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1897854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12888132556 RX 4592165 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12829581302 RX 311383 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1874658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13467718805 RX 4310956 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13410785401 RX 311673 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1898832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12897319586 RX 4594205 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12838746338 RX 311512 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1875376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 177933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13470396998 RX 4312876 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13413434050 RX 311799 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1899810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12906490628 RX 4596245 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12847895908 RX 311638 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1876108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13473145626 RX 4314820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13416152288 RX 311928 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 957 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1900788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12915664040 RX 4598309 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12857047845 RX 311767 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1876847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13475931263 RX 4316716 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13418907641 RX 312057 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1013 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1901767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12924847422 RX 4600349 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12866209239 RX 311896 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1877579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13478674888 RX 4318636 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13421620997 RX 312183 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1902745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 189972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12934025889 RX 4602389 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12875366225 RX 312022 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1878323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13481415572 RX 4320580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13424331900 RX 312312 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 935 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1903723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12943199493 RX 4604453 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12884518353 RX 312151 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1879046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13484124127 RX 4322476 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13427010625 RX 312441 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1904702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12952389211 RX 4606493 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12893686069 RX 312280 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1879762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13486821323 RX 4324396 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13429678515 RX 312567 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1905680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12961574398 RX 4608533 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12902849752 RX 312406 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1880487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13489562478 RX 4326340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13432389383 RX 312696 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1906658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12970734946 RX 4610597 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12911988851 RX 312535 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1881201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13492275478 RX 4328236 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13435071587 RX 312825 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1907638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12979904822 RX 4612637 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12921136761 RX 312664 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1881923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13494977293 RX 4330156 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13437742917 RX 312951 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1908616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12989098010 RX 4614677 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12930308432 RX 312790 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1882637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13497689004 RX 4332100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13440425592 RX 313080 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1909593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 12998270207 RX 4616741 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12939459158 RX 312919 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1883360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13500397526 RX 4333996 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13443104872 RX 313209 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1910573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13007431185 RX 4618781 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12948598197 RX 313048 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1884122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13503352886 RX 4335916 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13446029624 RX 313335 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1313 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1911551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13016611317 RX 4620821 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12957756837 RX 313174 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1884842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 178974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13505981684 RX 4337860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13448629342 RX 313464 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1912529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13025793819 RX 4622885 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12966917845 RX 313303 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1885572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13508690402 RX 4339756 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13451307611 RX 313593 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1913508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13034979694 RX 4624925 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12976081723 RX 313432 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1886287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13511377161 RX 4341676 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13453965117 RX 313719 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1914486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 190996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13044153106 RX 4626965 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12985233662 RX 313558 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1887049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13514337249 RX 4343620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13456893864 RX 313848 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1523 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1915463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13053325303 RX 4629029 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 12994384395 RX 313687 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1887766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13517065131 RX 4345516 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13459591424 RX 313977 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1916443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13062521675 RX 4631069 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13003558751 RX 313816 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1888493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13519824653 RX 4347436 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13462321097 RX 314103 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1917421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13071688559 RX 4633109 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13012704174 RX 313942 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1889228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13522636330 RX 4349380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13465103086 RX 314232 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1041 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1918399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13080863444 RX 4635173 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13021857578 RX 314071 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1889958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13525378468 RX 4351276 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13467814445 RX 314361 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 970 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1919378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13090063464 RX 4637213 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13031035577 RX 314200 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1890690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13528123994 RX 4353196 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13470530770 RX 314487 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1920356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13099224012 RX 4639253 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13040174676 RX 314326 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1891399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13530794948 RX 4355140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13473172470 RX 314616 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1921335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13108385775 RX 4641317 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13049314984 RX 314455 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1892118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13533518665 RX 4357036 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13475867051 RX 314745 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1922314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13117572739 RX 4643357 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13058479960 RX 314584 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1892852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13536237985 RX 4358956 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13478557176 RX 314871 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1923290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13126748968 RX 4645397 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13067634711 RX 314710 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1893582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 179934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13538926362 RX 4360900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13481214677 RX 315000 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1924270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13135926283 RX 4647461 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13076790536 RX 314839 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1894300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13541656707 RX 4362796 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13483916177 RX 315129 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1925248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 191936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13145099887 RX 4649501 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13085942664 RX 314968 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1895019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13544376313 RX 4364716 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13486606257 RX 315255 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1926226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13154272580 RX 4651541 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13095093399 RX 315094 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1895746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13547063074 RX 4366660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13489262787 RX 315384 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1927205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13163468264 RX 4653605 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13104267565 RX 315223 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1896468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13549767765 RX 4368556 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13491938112 RX 315513 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1928183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13172641868 RX 4655645 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13113419691 RX 315352 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1897190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13552561950 RX 4370476 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13494702352 RX 315639 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1014 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1929161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13181814369 RX 4657685 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13122570229 RX 315478 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1897928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13555308617 RX 4372420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13497419138 RX 315768 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1930139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13190999748 RX 4659749 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13131734108 RX 315607 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1898653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13558025548 RX 4374316 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13500106239 RX 315897 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1931117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13200166632 RX 4661789 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13140879537 RX 315736 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1899376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13560724834 RX 4376236 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13502775576 RX 316023 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1932097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13209337981 RX 4663829 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13150028916 RX 315862 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1900116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13563466154 RX 4378180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13505484952 RX 316152 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 902 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1053 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1933075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13218537697 RX 4665893 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13159207104 RX 315991 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1900856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13566285681 RX 4380076 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13508275412 RX 316281 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1934052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13227695557 RX 4667933 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13168343528 RX 316120 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1901579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13568998229 RX 4381996 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13510958653 RX 316407 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1935033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13236867032 RX 4669973 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13177493027 RX 316246 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1902296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13571729750 RX 4383940 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13513660614 RX 316536 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1936011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13246046972 RX 4672037 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13186651478 RX 316375 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1903044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 180974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13574738189 RX 4385836 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13516638287 RX 316665 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1724 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1936988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 192960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13255233506 RX 4674077 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13195816506 RX 316504 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1903760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13577504916 RX 4387756 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13519375856 RX 316791 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1937967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13264405044 RX 4676117 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13204966078 RX 316630 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1904462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13580178254 RX 4389700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13522019989 RX 316920 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1938945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13273578456 RX 4678181 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13214118025 RX 316759 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1905183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13582884001 RX 4391596 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13524696736 RX 317049 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1939923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13282761342 RX 4680221 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13223279420 RX 316888 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1905893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13585564366 RX 4393516 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13527348289 RX 317175 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1940902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13291940305 RX 4682261 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13232436401 RX 317014 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1906625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13588265587 RX 4395460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13530019108 RX 317304 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1941880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13301113909 RX 4684325 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13241588527 RX 317143 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1907343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13590969447 RX 4397356 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13532694413 RX 317433 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1942858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13310303131 RX 4686365 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13250756248 RX 317272 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1908081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13593729530 RX 4399276 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13535424612 RX 317559 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 972 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 898 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1943837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13319488814 RX 4688405 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13259919941 RX 317398 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1908819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13596480313 RX 4401220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13538145348 RX 317688 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1944815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13328649362 RX 4690469 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13269059041 RX 317527 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1909548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13599185237 RX 4403116 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13540821189 RX 317817 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1945794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13337818742 RX 4692509 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13278206952 RX 317656 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1910282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13601892129 RX 4405036 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13543496459 RX 317943 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1946773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13347012426 RX 4694549 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13287378623 RX 317782 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1911016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13604567386 RX 4406980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13546140647 RX 318072 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1947750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13356184623 RX 4696613 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13296529349 RX 317911 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1911729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 181934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13607272905 RX 4408876 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13548817394 RX 318201 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1948729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 193984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13365345105 RX 4698653 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13305668377 RX 318040 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1912467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13610096352 RX 4410796 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13551610733 RX 318327 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1949708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13374525733 RX 4700693 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13314827026 RX 318166 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1913200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13612783474 RX 4412740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13554267228 RX 318456 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1950686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13383708235 RX 4702757 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13323988041 RX 318295 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1913936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13615542967 RX 4414636 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13556995895 RX 318585 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1951664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13392893614 RX 4704797 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13333151931 RX 318424 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1914668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13618244833 RX 4416556 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13559667745 RX 318711 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1952643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13402067522 RX 4706837 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13342303868 RX 318550 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1915398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13620931460 RX 4418500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13562323764 RX 318840 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1953620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13411239719 RX 4708901 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13351454606 RX 318679 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1916173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13623930624 RX 4420396 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13565291594 RX 318969 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1542 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1954599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13420435595 RX 4710941 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13360628955 RX 318808 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1916894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13626638801 RX 4422316 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13567970824 RX 319095 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1955578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13429602975 RX 4712981 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13369774385 RX 318934 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1917618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13629359199 RX 4424260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13570660929 RX 319224 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1956556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13438777860 RX 4715045 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13378927790 RX 319063 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1918350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13632080109 RX 4426156 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13573351535 RX 319353 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1957534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13447977384 RX 4717085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13388105789 RX 319192 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1919099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13635167250 RX 4428076 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13576407804 RX 319479 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 631 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1958513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13457138428 RX 4719125 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13397244892 RX 319318 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1919817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13637810056 RX 4430020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13579021861 RX 319608 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1959492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 194922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13466300191 RX 4721189 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13406385200 RX 319447 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1920542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13640511184 RX 4431916 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13581693191 RX 319737 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1960470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13475486659 RX 4723229 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13415550171 RX 319576 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1921268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 182973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13643229973 RX 4433836 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13584383271 RX 319863 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1482 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1961447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13484663384 RX 4725269 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13424704926 RX 319702 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1922024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13646170476 RX 4435780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13587292687 RX 319992 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1962427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13493840699 RX 4727333 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13433860758 RX 319831 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1922744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13648877581 RX 4437676 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13589969449 RX 320121 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1963405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13503014303 RX 4729373 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13443012887 RX 319960 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1923470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13651596271 RX 4439596 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13592659108 RX 320247 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1400 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1964383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13512186996 RX 4731413 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13452163622 RX 320086 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1924238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13654515134 RX 4441540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13595546895 RX 320376 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1965362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13521382680 RX 4733477 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13461337788 RX 320215 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1924964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 13657214791 RX 4443436 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13598216222 RX 320505 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1966338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 13530535290 RX 4735627 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13470468972 RX 320418 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1925424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 183447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 13658897150 RX 4446010 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13599873958 RX 321476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 228 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -68 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1967251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 13539060797 RX 4737675 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13478973426 RX 320689 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1925437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: ulsch_rounds 183460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 13658900662 RX 4447488 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13599873958 RX 321476 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1967659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13540461637 RX 4741380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13480348522 RX 322495 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1925976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: ulsch_rounds 183534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13660573548 RX 4450003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13601540567 RX 322336 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1968415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13543142034 RX 4743444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13482998728 RX 322624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1926943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13667376727 RX 4451947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13608327090 RX 322465 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1969157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13545833404 RX 4745508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13485658842 RX 322753 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1927910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13676676095 RX 4453843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13617604271 RX 322594 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1969902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 195958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13548613184 RX 4747524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13488407306 RX 322879 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1928878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13685978151 RX 4455763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13626884134 RX 322720 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1970645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13551326065 RX 4749588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13491090071 RX 323008 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1929845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13695311070 RX 4457707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13636195285 RX 322849 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 644 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1971393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13553956429 RX 4751652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13493689378 RX 323137 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1930811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 183935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13704630061 RX 4459603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13645492076 RX 322978 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 702 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1972144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13556673976 RX 4753668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13496375713 RX 323263 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1931779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13713944057 RX 4461523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13654783880 RX 323104 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1972883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13559373103 RX 4755732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13499043728 RX 323392 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1932746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13723242863 RX 4463467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13664060987 RX 323233 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1008 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1973629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13562155797 RX 4757796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13501793263 RX 323521 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1933713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13732558041 RX 4465363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13673353950 RX 323362 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1974377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13564873552 RX 4759812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13504479117 RX 323647 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1934681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13741884928 RX 4467283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13682658596 RX 323488 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1975116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13567533469 RX 4761876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13507108535 RX 323776 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1935648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13751178487 RX 4469227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13691930465 RX 323617 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1975869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13570240552 RX 4763940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13509783985 RX 323905 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1936615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13760486048 RX 4471123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13701215819 RX 323746 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1038 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1976625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13573058202 RX 4765956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13512570570 RX 324031 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1937583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13769812743 RX 4473043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13710520266 RX 323872 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1977373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13575734517 RX 4768020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13515216270 RX 324160 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1938550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13779106686 RX 4474987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13719792525 RX 324001 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1978113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13578445243 RX 4770084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13517896126 RX 324289 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1939517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13788420391 RX 4476883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13729084013 RX 324130 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1978859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 196982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13581131664 RX 4772100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13520552290 RX 324415 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1940485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13797753806 RX 4478803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13738395172 RX 324256 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 674 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 621 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1979595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13583791879 RX 4774164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13523181773 RX 324544 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1941450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13807050374 RX 4480747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13747670060 RX 324385 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 661 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1980329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13586439296 RX 4776228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13525799325 RX 324673 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1942418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13816360958 RX 4482643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13756958921 RX 324514 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1417 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1981123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13589402564 RX 4778244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13528728212 RX 324799 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1943387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 184974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13825681951 RX 4484563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13766257246 RX 324640 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 688 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 650 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1981857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13592051842 RX 4780308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13531345854 RX 324928 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1944352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13835000281 RX 4486507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13775553844 RX 324769 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1982603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13594769520 RX 4782372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13534033095 RX 325057 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1945319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13844320144 RX 4488403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13784851963 RX 324898 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 606 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1983344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13597430416 RX 4784388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13536662533 RX 325183 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1946288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13853628135 RX 4490323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13794137252 RX 325024 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1984084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13600106681 RX 4786452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13539306801 RX 325312 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1947254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13862928288 RX 4492267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13803415708 RX 325153 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 638 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1984836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13602797574 RX 4788516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13541967386 RX 325441 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1948221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13872254871 RX 4494163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13812720545 RX 325282 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1985577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13605477541 RX 4790532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13544616135 RX 325567 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1949190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13881555950 RX 4496083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13821998936 RX 325408 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1986312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13608175068 RX 4792596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13547284135 RX 325696 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1950156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13890856295 RX 4498027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13831277586 RX 325537 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1642 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1987079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 197921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13611259264 RX 4794660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13550336068 RX 325825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1951123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13900189214 RX 4499923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13840588730 RX 325666 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1987808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13613921642 RX 4796676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13552968505 RX 325951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1952091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13909481269 RX 4501843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13849858128 RX 325792 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1988593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13616721664 RX 4798740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13555737326 RX 326080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1953058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13918790830 RX 4503787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13859145968 RX 325921 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1004 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1989348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13619436290 RX 4800804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13558420156 RX 326209 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1954025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13928123557 RX 4505683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13868456930 RX 326050 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1990094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13622114854 RX 4802820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13561068384 RX 326335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1954992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 185934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13937435400 RX 4507603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13877746121 RX 326176 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 714 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1990832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13624807198 RX 4804884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13563729450 RX 326464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1955959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13946742207 RX 4509547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13887031206 RX 326305 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1991576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13627524192 RX 4806948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13566415214 RX 326593 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1956927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13956058038 RX 4511443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13896325307 RX 326434 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1992334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13630219681 RX 4808964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13569080245 RX 326719 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1957894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13965371216 RX 4513363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13905615781 RX 326560 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1993064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13632897707 RX 4811028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13571728974 RX 326848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1958861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13974697415 RX 4515307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13914920235 RX 326689 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 649 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1993812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13635592126 RX 4813092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13574392533 RX 326977 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1959828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13983997886 RX 4517203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13924198996 RX 326818 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1994596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13638545454 RX 4815108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13577314000 RX 327103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1960796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 13993299031 RX 4519123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13933477464 RX 326944 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1409 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1995346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13641236388 RX 4817172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13579973133 RX 327232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1961763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14002625422 RX 4521067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13942782107 RX 327073 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1996091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 198945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13643962491 RX 4819236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13582669271 RX 327361 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1962730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14011925893 RX 4522963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13952060873 RX 327202 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1996830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13646687117 RX 4821252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13585363917 RX 327487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1963698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14021233566 RX 4524883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13961345848 RX 327328 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1997563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13649365019 RX 4823316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13588011169 RX 327616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1964665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14030566677 RX 4526827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13970657193 RX 327457 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 661 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1998295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13652060193 RX 4825380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13590675674 RX 327745 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1965631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14039865549 RX 4528723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13979934369 RX 327586 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 679 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1999052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13654733625 RX 4827396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13593317469 RX 327871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1966599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14049167578 RX 4530643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13989214235 RX 327712 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 1999783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13657461246 RX 4829460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13596015059 RX 328000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1967567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 186975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14058500966 RX 4532587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 13998525394 RX 327841 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1171 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2000564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13660309999 RX 4831524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13598832295 RX 328129 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1968532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14067819488 RX 4534483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14007822181 RX 327970 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2001306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13663022235 RX 4833540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13601512226 RX 328255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1969500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14077133511 RX 4536403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14017113986 RX 328096 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2002043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13665698239 RX 4835604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13604156524 RX 328384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1970468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14086432813 RX 4538347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14026391099 RX 328225 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2002787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13668402460 RX 4837668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13606829496 RX 328513 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1971434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14095747495 RX 4540243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14035684058 RX 328354 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 677 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2003542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13671093354 RX 4839684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13609488589 RX 328639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1972402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14105074382 RX 4542163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14044988695 RX 328480 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2004287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13673800408 RX 4841748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13612165486 RX 328768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1973370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14114368437 RX 4544107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14054260569 RX 328609 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2005041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 199969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13676509996 RX 4843812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13614843855 RX 328897 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1974336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14123675502 RX 4546003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14063545914 RX 328738 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 670 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2005786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13679300637 RX 4845828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13617603819 RX 329023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1975304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14133002197 RX 4547923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14072850369 RX 328864 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 969 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 694 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2006527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13681981245 RX 4847892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13620252573 RX 329152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1976272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14142296636 RX 4549867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14082122624 RX 328993 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2007280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13684680336 RX 4849956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13622920578 RX 329281 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1977238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14151609845 RX 4551763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14091414111 RX 329122 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2008053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13687649522 RX 4851972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13625856875 RX 329407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1978206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14160943233 RX 4553683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14100725260 RX 329248 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1450 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2008798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13690324884 RX 4854036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13628501143 RX 329536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1979172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 187935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14170240270 RX 4555627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14110000148 RX 329377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2009541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13693055426 RX 4856100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13631200230 RX 329665 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1980140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14179550854 RX 4557523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14119289006 RX 329506 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2010289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13695769508 RX 4858116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13633883040 RX 329791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1981108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14188871405 RX 4559443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14128587322 RX 329632 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2011043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13698503196 RX 4860180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13636585206 RX 329920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1982074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14198190231 RX 4561387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14137883913 RX 329761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2011788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13701201639 RX 4862244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13639253176 RX 330049 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1983041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14207510094 RX 4563283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14147182029 RX 329890 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2012552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13703998299 RX 4864260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13642017466 RX 330175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1984009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14216817589 RX 4565203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14156467319 RX 330016 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2013308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13706747210 RX 4866324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13644735829 RX 330304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1984976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14226118238 RX 4567147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14165745777 RX 330145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 628 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2014062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 200993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13709404478 RX 4868388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13647362298 RX 330433 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1985943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14235444821 RX 4569043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14175050612 RX 330274 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2014831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13712439913 RX 4870404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13650366842 RX 330559 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1986911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14244745404 RX 4570963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14184329008 RX 330400 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 678 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2015592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13715131914 RX 4872468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13653027412 RX 330688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1987878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14254046245 RX 4572907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14193607659 RX 330529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2016345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13717846558 RX 4874532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13655710272 RX 330817 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1988845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14263379164 RX 4574803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14202918820 RX 330658 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2017100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13720557132 RX 4876548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13658390128 RX 330943 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1989812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14272670696 RX 4576723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14212188199 RX 330784 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 653 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2017818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13723220877 RX 4878612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13661022565 RX 331072 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1990780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14281980726 RX 4578667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14221476045 RX 330913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2018576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13725936006 RX 4880676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13663706857 RX 331201 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1991747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 188975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14291313453 RX 4580563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14230786999 RX 331042 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2019322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13728678840 RX 4882692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13666419377 RX 331327 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1992713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14300624854 RX 4582483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14240076193 RX 331168 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2020070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13731400340 RX 4884756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13669110643 RX 331456 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1993681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14309932157 RX 4584427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14249361281 RX 331297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2020827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13734161858 RX 4886820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13671839941 RX 331585 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1994649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14319247988 RX 4586323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14258655371 RX 331426 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2021582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13736900560 RX 4888836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13674547935 RX 331711 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1995615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14328560670 RX 4588243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14267945846 RX 331552 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2022333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 201931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13739632423 RX 4890900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13677248534 RX 331840 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1996583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14337887365 RX 4590187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14277250300 RX 331681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2023089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13742398877 RX 4892964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13679981732 RX 331969 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1997550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14347187836 RX 4592083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14286529079 RX 331810 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 643 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2023832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 8379: MAC: TX 13745113632 RX 4894980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13682664557 RX 332095 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1998517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14356488485 RX 4594003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14295807532 RX 331936 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2024548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13747883870 RX 4896972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13685405175 RX 332221 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 1999485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14365815372 RX 4595947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14305112170 RX 332065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2025293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13750594321 RX 4899012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13688085076 RX 332347 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2000452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14375115843 RX 4597843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14314390937 RX 332194 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2026046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13753305683 RX 4901076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13690764952 RX 332476 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2001419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14384422993 RX 4599763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14323675908 RX 332320 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2026786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13755999734 RX 4903116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13693428556 RX 332605 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2002387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14393756573 RX 4601707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14332987256 RX 332449 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2027540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13758729885 RX 4905156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13696127212 RX 332731 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2003353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 189935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14403055445 RX 4603603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14342264429 RX 332578 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2028288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13761427925 RX 4907220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13698794236 RX 332860 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2004321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14412357501 RX 4605523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14351544285 RX 332704 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2029040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13764173033 RX 4909260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13701508173 RX 332989 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2005289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14421690916 RX 4607467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14360855450 RX 332833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2029796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13766872731 RX 4911300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13704176208 RX 333115 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2006254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14431009438 RX 4609363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14370152236 RX 332962 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2030544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13769618534 RX 4913364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13706890175 RX 333244 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2007221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14440322965 RX 4611283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14379444033 RX 333088 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1421 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2031330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 202953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13772560297 RX 4915404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13709799786 RX 333373 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2008190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14449622763 RX 4613227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14388721141 RX 333217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2032075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13775278297 RX 4917444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13712487102 RX 333499 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2009156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14458937445 RX 4615123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14398014085 RX 333346 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1860 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 654 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2032842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13778349469 RX 4919508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13715527129 RX 333628 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2010123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14468263836 RX 4617043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14407318719 RX 333472 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2033587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13781053505 RX 4921548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13718199605 RX 333757 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2011092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14477558387 RX 4618987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14416590596 RX 333601 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2034345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13783837715 RX 4923588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13720952139 RX 333883 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2012058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14486865452 RX 4620883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14425875950 RX 333730 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2035082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13786512877 RX 4925652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13723596417 RX 334012 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2013025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14496191651 RX 4622803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14435180397 RX 333856 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2035816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13789214825 RX 4927692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13726267291 RX 334141 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2013994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14505486532 RX 4624747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14444452660 RX 333985 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2036589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13792048435 RX 4929732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13729067199 RX 334267 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2014960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14514799741 RX 4626643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14453744139 RX 334114 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2037333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13794776606 RX 4931796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13731764864 RX 334396 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2015927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 190974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14524132660 RX 4628563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14463055298 RX 334240 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2038066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13797496314 RX 4933836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13734453647 RX 334525 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2016894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14533430220 RX 4630507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14472330189 RX 334369 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 662 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2038804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13800189399 RX 4935876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13737117146 RX 334651 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2017862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14542740804 RX 4632403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14481619044 RX 334498 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 639 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2039538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13802896979 RX 4937940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13739795535 RX 334780 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2018829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14552060859 RX 4634323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14490917359 RX 334624 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2040280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 203977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13805599119 RX 4939980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13742466529 RX 334909 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2019796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14561380181 RX 4636267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14500213960 RX 334753 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2041024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13808294265 RX 4942020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13745131535 RX 335035 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2020763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14570700044 RX 4638163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14509512088 RX 334882 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2041772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13810995640 RX 4944084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13747802569 RX 335164 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2021730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14580007043 RX 4640083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14518797370 RX 335008 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2042545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13814092140 RX 4946124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13750866343 RX 335293 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2022698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14589308188 RX 4642027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14528075835 RX 335137 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2043280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13816753037 RX 4948164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13753495801 RX 335419 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2023665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14598634771 RX 4643923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14537380672 RX 335266 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 643 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1503 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2044053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13819727905 RX 4950228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13756439448 RX 335548 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2024632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14607934858 RX 4645843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14546659062 RX 335392 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2044801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13822450736 RX 4952268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13759131245 RX 335677 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2025600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14617236141 RX 4647787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14555937717 RX 335521 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 933 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2045549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13825165014 RX 4954308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13761814085 RX 335803 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2026567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14626569060 RX 4649683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14565248871 RX 335650 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2046291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13827890242 RX 4956372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13764508290 RX 335932 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2027533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 191934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14635860123 RX 4651603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14574518254 RX 335776 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 638 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2047030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13830565081 RX 4958412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13767153109 RX 336061 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2028502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14645170676 RX 4653547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14583806101 RX 335905 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2047778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13833271713 RX 4960452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13769828534 RX 336187 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2029469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14654503403 RX 4655443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14593117058 RX 336034 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2048550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 204915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13836075301 RX 4962516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13772599828 RX 336316 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2030434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14663814308 RX 4657363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14602406254 RX 336160 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2049305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13838775297 RX 4964556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13775269305 RX 336445 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2031402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14673121611 RX 4659307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14611691347 RX 336289 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2050039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13841488255 RX 4966596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13777951114 RX 336571 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2032371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14682437938 RX 4661203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14620985449 RX 336418 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2050797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13844245351 RX 4968660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13780676892 RX 336700 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2033336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14691750124 RX 4663123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14630275913 RX 336544 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2051552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13846938036 RX 4970700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13783337522 RX 336829 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2034304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14701076819 RX 4665067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14639580368 RX 336673 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2052293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13849632861 RX 4972740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13786001031 RX 336955 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2035272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14710377786 RX 4666963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14648859140 RX 336802 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2053075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13852739281 RX 4974804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13789075134 RX 337084 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2036238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14719677939 RX 4668883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14658137590 RX 336928 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 656 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2053813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13855422887 RX 4976844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13791728299 RX 337213 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2037206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14729004799 RX 4670827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14667442233 RX 337057 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2054559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13858123870 RX 4978884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13794399268 RX 337339 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2038174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14738305739 RX 4672723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14676721000 RX 337186 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2055303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13860887467 RX 4980948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13797132476 RX 337468 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2039140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14747612420 RX 4674643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14686005972 RX 337312 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2056055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13863622482 RX 4982988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13799836039 RX 337597 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2040108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 192975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14756946027 RX 4676587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14695317325 RX 337441 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2056788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13866347236 RX 4985028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13802530239 RX 337723 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2041075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14766245395 RX 4678483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14704594507 RX 337570 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 659 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2057518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 205939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13869003233 RX 4987092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13805155717 RX 337852 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2042042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14775546955 RX 4680403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14713874357 RX 337696 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2058262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13871747668 RX 4989132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13807869664 RX 337981 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2043010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14784880370 RX 4682347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14723185509 RX 337825 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2059004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13874415780 RX 4991172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13810506537 RX 338107 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2043976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14794199388 RX 4684243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14732482315 RX 337954 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2059752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13877122648 RX 4993236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13813181972 RX 338236 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2044943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14803512915 RX 4686163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14741774110 RX 338080 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2060507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13879869691 RX 4995276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13815897366 RX 338365 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2045911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14812812217 RX 4688107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14751051222 RX 338209 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 663 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2061256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13882556814 RX 4997316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13818552098 RX 338491 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2046878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14822127395 RX 4690003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14760344182 RX 338338 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2061998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13885251562 RX 4999380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13821217129 RX 338620 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2047845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14831453786 RX 4691923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14769648820 RX 338464 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2062745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13887972988 RX 5001420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13823907294 RX 338749 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2048813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14840747814 RX 4693867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14778920700 RX 338593 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1377 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2063532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13890918635 RX 5003460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13826821346 RX 338875 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2049780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14850055348 RX 4695763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14788206056 RX 338722 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2064293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13893610246 RX 5005524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13829481956 RX 339004 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2050747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14859381547 RX 4697683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14797510499 RX 338848 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2065047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13896358686 RX 5007564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13832198877 RX 339133 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2051715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 193935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14868675986 RX 4699627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14806782762 RX 338977 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 633 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2065800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13899047080 RX 5009604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13834855046 RX 339259 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2052682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14877989691 RX 4701523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14816074254 RX 339106 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2066558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 206963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13901836368 RX 5011668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13837611986 RX 339388 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2053649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14887322610 RX 4703443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14825385404 RX 339232 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2067301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13904518694 RX 5013708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13840263689 RX 339517 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2054615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14896619674 RX 4705387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14834660290 RX 339361 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2068047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13907242534 RX 5015748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13842955441 RX 339643 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2055584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14905930754 RX 4707283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14843949149 RX 339490 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2068793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13909970582 RX 5017812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13845653141 RX 339772 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2056551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14915250809 RX 4709203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14853247459 RX 339616 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2069535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13912669628 RX 5019852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13848321181 RX 339901 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2057517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14924569635 RX 4711147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14862544057 RX 339745 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 687 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2070289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13915411133 RX 5021892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13851032149 RX 340027 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2058485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14933889994 RX 4713043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14871842192 RX 339874 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2071041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13918109403 RX 5023956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13853698672 RX 340156 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2059452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14943196993 RX 4714963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14881127472 RX 340000 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2071781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13920854400 RX 5025996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13856412654 RX 340285 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2060419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14952497615 RX 4716907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14890405925 RX 340129 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1000 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2072545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13923711652 RX 5028036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13859237766 RX 340411 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2061387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14961824667 RX 4718803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14899710759 RX 340258 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1038 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2073291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 13926390938 RX 5030100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13861886495 RX 340540 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2062354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14971124754 RX 4720723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14908989139 RX 340384 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1041 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2073636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 8379: ulsch_rounds 207797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 13927598946 RX 5032762 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13863074427 RX 341487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2063320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 194900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 14980415098 RX 4722791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14918257314 RX 340664 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2073649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 207810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 13927601695 RX 5034270 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13863074427 RX 341487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2064010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 194979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 14987006965 RX 4725486 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14924830362 RX 341542 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2074318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: ulsch_rounds 207895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13929807458 RX 5036875 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13865272595 RX 342365 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2064503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 14988784811 RX 4728394 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14926581383 RX 342666 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2075273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 207981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13936968421 RX 5038939 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13872415720 RX 342494 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2065205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 14991453921 RX 4730338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14929222562 RX 342795 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2076224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13945845550 RX 5040955 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13881272052 RX 342620 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2065909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 14994130761 RX 4732234 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14931871156 RX 342924 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2077179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13954755385 RX 5043019 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13890161018 RX 342749 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2066630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 14996816674 RX 4734154 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14934528712 RX 343050 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 967 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2078132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13963669427 RX 5045083 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13899053687 RX 342878 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2067337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 14999525022 RX 4736098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14937208478 RX 343179 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2079083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13972583231 RX 5047099 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13907946620 RX 343004 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2068087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15002617984 RX 4737994 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14940270625 RX 343308 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2011 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2080037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13981487624 RX 5049163 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13916830156 RX 343133 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2068767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15005221831 RX 4739914 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14942846566 RX 343434 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2080989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13990388306 RX 5051227 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13925709981 RX 343262 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2069504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15007911747 RX 4741858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14945507041 RX 343563 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2081941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 13999288077 RX 5053243 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13934588421 RX 343388 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2070224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15010574111 RX 4743754 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14948138927 RX 343692 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2082896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14008231833 RX 5055307 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13943511243 RX 343517 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2070931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15013289677 RX 4745674 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14950826084 RX 343818 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2083849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14017143012 RX 5057371 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13952401547 RX 343646 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2071637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15015985059 RX 4747618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14953493933 RX 343947 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2084800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14026032094 RX 5059387 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13961269319 RX 343772 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2072351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 195949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15018651156 RX 4749514 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14956130706 RX 344076 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 994 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2085755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 208919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14034976042 RX 5061451 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13970192326 RX 343901 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2073077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15021434610 RX 4751434 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14958883541 RX 344202 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1141 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1672 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2086706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14043859507 RX 5063515 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13979054981 RX 344030 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2073831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15024393472 RX 4753378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14961812268 RX 344331 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2087659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14052747437 RX 5065531 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13987921600 RX 344156 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2074562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15027072325 RX 4755274 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14964460947 RX 344460 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2088615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14061716219 RX 5067595 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 13996869394 RX 344285 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2075293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196268/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15029746725 RX 4757194 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14967105145 RX 344586 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 970 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2089564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14070580163 RX 5069659 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14005712573 RX 344414 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2076007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15032496834 RX 4759138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14969825911 RX 344715 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1048 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2090520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14079489213 RX 5071675 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14014600254 RX 344540 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2076724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15035236309 RX 4761034 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14972535768 RX 344844 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2091473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14088406728 RX 5073739 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14023496889 RX 344669 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2077425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15037895432 RX 4762954 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14975166618 RX 344970 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2092423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14097309843 RX 5075803 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14032379162 RX 344798 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2078135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15040553082 RX 4764898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14977795931 RX 345099 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2093379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14106239950 RX 5077819 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14041287861 RX 344924 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2078854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15043273577 RX 4766794 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14980486041 RX 345228 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2094331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14115140440 RX 5079883 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14050167512 RX 345053 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2079565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15045947028 RX 4768714 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14983130189 RX 345354 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2095282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14124039907 RX 5081947 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14059046134 RX 345182 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2080293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15048663815 RX 4770658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14985817330 RX 345483 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2096237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14132966942 RX 5083963 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14067951775 RX 345308 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2081010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15051395403 RX 4772554 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14988519321 RX 345612 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1040 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2097189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 209943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14141867624 RX 5086027 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14076831605 RX 345437 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2081735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 196988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15054093347 RX 4774474 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14991187141 RX 345738 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2098141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14150783924 RX 5088091 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14085727024 RX 345566 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2082453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15056749784 RX 4776418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14993813019 RX 345867 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2099096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14159717679 RX 5090107 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14094639364 RX 345692 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2083169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15059442745 RX 4778314 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14996476899 RX 345996 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2100049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14168615802 RX 5092171 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14103516647 RX 345821 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2083898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15062139061 RX 4780234 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 14999144288 RX 346122 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2101000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14177491266 RX 5094235 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14112371325 RX 345950 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2084659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15065439115 RX 4782178 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15002414406 RX 346251 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2158 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2101956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14186443519 RX 5096251 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14121302120 RX 346076 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2085380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15068243849 RX 4784074 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15005190467 RX 346380 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2102907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14195342794 RX 5098315 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14130180557 RX 346205 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2086101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15070933880 RX 4785994 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15007850962 RX 346506 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2103859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14204219857 RX 5100379 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14139036819 RX 346334 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2086834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15073659374 RX 4787938 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15010546990 RX 346635 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2104814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14213148557 RX 5102395 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14147944114 RX 346460 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2087534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15076296272 RX 4789834 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15013155565 RX 346764 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2105765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14222047640 RX 5104459 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14156822356 RX 346589 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2088259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15078989682 RX 4791754 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15015819014 RX 346890 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 945 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2106719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14230981091 RX 5106523 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14165734894 RX 346718 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2088978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15081689530 RX 4793698 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15018489843 RX 347019 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1099 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2107673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14239892574 RX 5108539 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14174625011 RX 346844 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2089701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15084482652 RX 4795594 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15021254083 RX 347148 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1688 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2108623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 210967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14248781352 RX 5110603 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14183492975 RX 346973 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2090446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 197948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15087396335 RX 4797514 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15024136908 RX 347274 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2109579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14257735797 RX 5112667 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14192426455 RX 347102 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2091156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15090119671 RX 4799458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15026831434 RX 347403 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1014 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2110531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14266619758 RX 5114683 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14201289113 RX 347228 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2091861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15092857834 RX 4801354 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15029540840 RX 347532 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2111483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14275521721 RX 5116747 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14210170229 RX 347357 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2092582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198188/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15095559410 RX 4803274 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15032213206 RX 347658 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1039 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2112437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14284469317 RX 5118811 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14219096881 RX 347486 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2093288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15098248953 RX 4805218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15034873145 RX 347787 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2113389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14293346942 RX 5120827 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14227953214 RX 347612 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2094029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15101007905 RX 4807114 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15037601722 RX 347916 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1097 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2114344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14302256777 RX 5122891 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14236842176 RX 347741 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2094734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15103674246 RX 4809034 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15040238976 RX 348042 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2115296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14311170323 RX 5124955 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14245734851 RX 347870 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2095450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15106373990 RX 4810978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15042909810 RX 348171 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2116248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14320084623 RX 5126971 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14254627791 RX 347996 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2096186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15109180821 RX 4812874 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15045685946 RX 348300 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1201 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2117202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14328989016 RX 5129035 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14263511326 RX 348125 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2096894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15111880603 RX 4814794 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15048356820 RX 348426 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1090 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2118154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14337889698 RX 5131099 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14272391162 RX 348254 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2097616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15114603815 RX 4816738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15051051366 RX 348555 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2119106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14346789469 RX 5133115 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14281269600 RX 348380 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2098345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15117313356 RX 4818634 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15053731057 RX 348684 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2120061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 211991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14355733225 RX 5135179 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14290192417 RX 348509 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2099067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15120013698 RX 4820554 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15056402912 RX 348810 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 958 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2121014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14364644404 RX 5137243 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14299082716 RX 348638 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2099785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 198989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15122714276 RX 4822498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15059074252 RX 348939 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2121965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14373533486 RX 5139259 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14307950486 RX 348764 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2100508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15125434950 RX 4824394 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15061765328 RX 349068 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2122920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14382477434 RX 5141323 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14316873495 RX 348893 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2101222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15128127477 RX 4826314 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15064428782 RX 349194 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2123871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14391360899 RX 5143387 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14325736151 RX 349022 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2101938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15130772350 RX 4828258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15067043806 RX 349323 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2124824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14400248829 RX 5145403 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14334602768 RX 349148 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2102656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15133452367 RX 4830154 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15069695399 RX 349452 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2125780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14409217611 RX 5147467 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14343550556 RX 349277 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2103368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15136196677 RX 4832074 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15072410713 RX 349578 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1005 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2126729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14418081555 RX 5149531 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14352393734 RX 349406 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2104075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15138866483 RX 4834018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15075050430 RX 349707 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2127685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14426990605 RX 5151547 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14361281419 RX 349532 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2104794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15141540635 RX 4835914 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15077694598 RX 349836 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2128638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14435908120 RX 5153611 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14370178049 RX 349661 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2105496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15144222317 RX 4837834 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15080347658 RX 349962 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2129588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14444811235 RX 5155675 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14379060326 RX 349790 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2106226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15146937070 RX 4839778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15083033402 RX 350091 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1049 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2130544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 212930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14453741342 RX 5157691 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14387969023 RX 349916 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2106955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15149646732 RX 4841674 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15085713158 RX 350220 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1148 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2131496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14462641832 RX 5159755 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14396848664 RX 350045 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2107694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15152475146 RX 4843594 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15088511514 RX 350346 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2132447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14471541299 RX 5161819 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14405727292 RX 350174 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2108405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 199949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15155125052 RX 4845538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15091132966 RX 350475 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2133402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14480468334 RX 5163835 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14414632931 RX 350300 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2109111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15157744722 RX 4847434 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15093724238 RX 350604 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 970 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2134354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14489369016 RX 5165899 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14423512770 RX 350429 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2109846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15160461442 RX 4849354 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15096410913 RX 350730 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2135306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14498285316 RX 5167963 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14432408195 RX 350558 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2110572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15163165630 RX 4851298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15099086218 RX 350859 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2136261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14507219071 RX 5169979 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14441320535 RX 350684 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2111294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15165840201 RX 4853194 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15101730842 RX 350988 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2137214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14516117194 RX 5172043 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14450197812 RX 350813 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2112022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15168538641 RX 4855114 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15104398712 RX 351114 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 890 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2138165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14524992658 RX 5174107 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14459052489 RX 350942 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2112719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15171201588 RX 4857058 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15107032496 RX 351243 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2139121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14533944911 RX 5176123 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14467983293 RX 351068 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2113449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15173913965 RX 4858954 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15109715221 RX 351372 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1015 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2140072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14542844186 RX 5178187 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14476861728 RX 351197 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2114158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15176638625 RX 4860874 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15112409792 RX 351498 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 999 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 882 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2141024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14551721249 RX 5180251 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14485717993 RX 351326 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2114877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15179307131 RX 4862818 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15115050520 RX 351627 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1001 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2141978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 213954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14560649453 RX 5182267 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14494625289 RX 351452 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2115586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15182026390 RX 4864714 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15117741111 RX 351756 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2142930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14569549032 RX 5184331 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14503503539 RX 351581 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2116319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15184758325 RX 4866634 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15120443107 RX 351882 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1103 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2143884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14578482483 RX 5186395 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14512416064 RX 351710 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2117032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15187491433 RX 4868578 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15123146545 RX 352011 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1017 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 935 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2144837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14587393470 RX 5188411 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14521306180 RX 351836 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2117751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 200989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15190204579 RX 4870474 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15125830221 RX 352140 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1102 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2145788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14596282744 RX 5190475 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14530174139 RX 351965 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2118458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15192896251 RX 4872394 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15128492684 RX 352266 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2146744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14605237189 RX 5192539 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14539107620 RX 352094 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2119185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15195681435 RX 4874338 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15131248983 RX 352395 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1184 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2147695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14614120654 RX 5194555 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14547970283 RX 352220 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2119903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15198416323 RX 4876234 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15133954299 RX 352524 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1055 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1118 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2148648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14623023113 RX 5196711 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14556851397 RX 352349 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2120628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15201180108 RX 4878154 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15136687472 RX 352650 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2149602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14631970709 RX 5198775 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14565778047 RX 352478 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2121328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15203846537 RX 4880098 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15139325256 RX 352779 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 899 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2150553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14640847838 RX 5200791 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14574634370 RX 352604 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2122062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15206570117 RX 4881994 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15142019852 RX 352908 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1022 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2151509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14649758169 RX 5202855 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14583523336 RX 352733 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2122772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15209256087 RX 4883914 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15144676342 RX 353034 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2152461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14658671715 RX 5204919 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14592416013 RX 352862 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2123529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15212340298 RX 4885858 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15147729632 RX 353163 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2185 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2153412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 214978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14667585519 RX 5206935 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14601308947 RX 352988 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2124241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15215058891 RX 4887754 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15150418225 RX 353292 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2154367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14676490408 RX 5208999 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14610192481 RX 353117 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2124974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15217772836 RX 4889674 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15153100955 RX 353418 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 980 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1060 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2155319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14685391090 RX 5211063 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14619072321 RX 353246 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2125689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15220495916 RX 4891618 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15155795566 RX 353547 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 934 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2156270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14694290365 RX 5213079 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14627950756 RX 353372 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2126415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 201949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15223223201 RX 4893514 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15158494072 RX 353676 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1001 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2157226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14703234617 RX 5215143 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14636873576 RX 353501 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2127133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15225940630 RX 4895434 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15161181734 RX 353802 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1046 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1078 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2158179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14712145796 RX 5217207 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14645763884 RX 353630 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2127859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15228704307 RX 4897378 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15163914817 RX 353931 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1085 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2159129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14721034382 RX 5219223 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14654631655 RX 353756 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2128594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15231443186 RX 4899274 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15166624238 RX 354060 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2160085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14729978826 RX 5221287 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14663554661 RX 353885 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2129315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202268/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15234120882 RX 4901194 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15169272376 RX 354186 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2161036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14738862291 RX 5223351 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14672417323 RX 354014 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2130053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15237198011 RX 4903138 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15172320244 RX 354315 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2006 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1038 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2161988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14747749725 RX 5225367 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14681283938 RX 354140 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2130770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15239948809 RX 4905034 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15175041496 RX 354444 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2162945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14756719003 RX 5227431 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14690231727 RX 354269 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2131509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15242658727 RX 4906954 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15177721227 RX 354570 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2163894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 215917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14765582947 RX 5229495 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14699074909 RX 354398 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2132226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15245355595 RX 4908898 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15180389077 RX 354699 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1026 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2164849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14774491501 RX 5231511 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14707962591 RX 354524 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2132937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15248029698 RX 4910794 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15183034702 RX 354828 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 983 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2165803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14783409512 RX 5233575 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14716859231 RX 354653 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2133658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15250738309 RX 4912714 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15185712971 RX 354954 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 977 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2166753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14792312627 RX 5235639 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14725741497 RX 354782 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2134376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15253457756 RX 4914658 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15188403066 RX 355083 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2167708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14801242238 RX 5237655 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14734650191 RX 354908 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2135081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15256172774 RX 4916554 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15191090172 RX 355212 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -55 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2168661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14810143224 RX 5239719 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14743529831 RX 355037 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2135785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 202988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15258858446 RX 4918474 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15193746201 RX 355338 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2169612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14819042691 RX 5241783 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14752408459 RX 355166 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2136507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15261578919 RX 4920418 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15196437312 RX 355467 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2170566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14827969230 RX 5243799 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14761314101 RX 355292 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2137216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15264223338 RX 4922314 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15199051870 RX 355596 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2171519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14836870408 RX 5245863 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14770193937 RX 355421 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2137930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15266895620 RX 4924234 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15201693014 RX 355722 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2172471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14845786708 RX 5247927 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14779089363 RX 355550 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2138650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15269590730 RX 4926178 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15204358446 RX 355851 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2173425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14854719967 RX 5249943 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14788001696 RX 355676 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2139373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15272351021 RX 4928074 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15207090072 RX 355980 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1098 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2174379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14863618586 RX 5252007 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14796878973 RX 355805 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2140107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15275292713 RX 4929994 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15210002031 RX 356106 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2027 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2175330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 216941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14872494050 RX 5254071 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14805733649 RX 355934 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2140822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15278090283 RX 4931938 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15212769736 RX 356235 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 988 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2176285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14881445807 RX 5256087 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14814664454 RX 356060 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2141531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15280787581 RX 4933834 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15215437636 RX 356364 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2177237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14890345578 RX 5258151 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14823542886 RX 356189 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2142259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15283543274 RX 4935754 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15218163359 RX 356490 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2178189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14899222641 RX 5260215 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14832399151 RX 356318 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2142983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15286228428 RX 4937698 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15220818966 RX 356619 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 962 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1008 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2179143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14908150845 RX 5262231 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14841306443 RX 356444 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2143700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15288937361 RX 4939594 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15223499119 RX 356748 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 945 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2180095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14917050424 RX 5264295 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14850184698 RX 356573 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2144432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 203948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15291680980 RX 4941514 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15226212936 RX 356874 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2181049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14925983875 RX 5266359 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14859097230 RX 356702 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2145149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15294420409 RX 4943458 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15228923283 RX 357003 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1038 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2182002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14934894862 RX 5268375 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14867987348 RX 356828 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2145859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15297111701 RX 4945354 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15231585671 RX 357132 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 949 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2182953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217623/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14943784136 RX 5270439 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14876855312 RX 356957 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2146578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204188/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15299828239 RX 4947274 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15234272852 RX 357258 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1033 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2183909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14952738581 RX 5272503 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14885788789 RX 357086 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2147294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15302518741 RX 4949218 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15236933312 RX 357387 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 940 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2184860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14961622046 RX 5274519 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14894651448 RX 357212 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2148011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15305238615 RX 4951114 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15239624393 RX 357516 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1001 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 988 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2185813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14970524505 RX 5276583 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14903532569 RX 357341 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2148729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15307971098 RX 4953034 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15242326890 RX 357642 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1070 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2186767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 217965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14979472101 RX 5278647 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14912459216 RX 357470 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2149450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15310718428 RX 4954978 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15245043661 RX 357771 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1095 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2187718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14988349230 RX 5280663 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14921315551 RX 357596 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2150178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15313470332 RX 4956874 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15247766335 RX 357900 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2188674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 14997259561 RX 5282727 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14930204514 RX 357725 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2150923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15316569660 RX 4958794 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15250835962 RX 358026 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2112 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2189626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15006173107 RX 5284791 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14939097194 RX 357854 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2151649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15319244368 RX 4960738 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15253481632 RX 358155 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2190577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15015086911 RX 5286807 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14947990120 RX 357980 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2152379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15321971928 RX 4962634 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15256179142 RX 358284 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1003 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2191532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15023991800 RX 5288871 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14956873653 RX 358109 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2153100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15324672475 RX 4964554 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15258850992 RX 358410 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 941 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2192484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15032892482 RX 5290935 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14965753490 RX 358238 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2153825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 204989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15327408738 RX 4966498 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15261556388 RX 358539 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2193435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15041791757 RX 5292951 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14974631922 RX 358364 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2154532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15330058516 RX 4968394 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15264178311 RX 358668 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2194391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15050736009 RX 5295015 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14983554744 RX 358493 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2155250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15332767925 RX 4970314 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15266858047 RX 358794 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1007 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2195344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15059647188 RX 5297079 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 14992445052 RX 358622 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2155954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15335490543 RX 4972258 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15269552077 RX 358923 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2196294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15068535774 RX 5299095 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15001312819 RX 358748 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2156679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15338158183 RX 4974154 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15272189341 RX 359052 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1055 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -52 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2197250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15077480218 RX 5301159 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15010235826 RX 358877 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2157403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15340902210 RX 4976074 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15274903148 RX 359178 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2198201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 218989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15086363683 RX 5303223 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15019098481 RX 359006 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2158113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15343630636 RX 4978018 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15277602135 RX 359307 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 989 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2199153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15095251117 RX 5305239 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15027965106 RX 359132 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2158830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15346373308 RX 4979914 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15280315952 RX 359436 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1111 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2200110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15104220395 RX 5307303 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15036912887 RX 359261 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2159556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15349126705 RX 4981834 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15283039672 RX 359562 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2201059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15113084339 RX 5309367 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15045756069 RX 359390 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2160258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15351787131 RX 4983778 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15285670933 RX 359691 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2202014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15121992893 RX 5311383 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15054643752 RX 359516 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2161001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15354913843 RX 4985674 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15288767121 RX 359820 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2111 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2202968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15130910904 RX 5313447 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15063540385 RX 359645 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2161714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15357583187 RX 4987594 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15291408380 RX 359946 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 933 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2203918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15139814019 RX 5315511 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15072422662 RX 359774 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2162449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 205949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15360285779 RX 4989538 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15294080696 RX 360075 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 975 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2204873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15148743630 RX 5317527 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15081331359 RX 359900 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2163163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15362996282 RX 4991434 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15296763396 RX 360204 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1008 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2205825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15157644120 RX 5319591 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15090211003 RX 360029 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2163888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15365689049 RX 4993354 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15299426850 RX 360330 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 991 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2206777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15166544083 RX 5321655 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15099089627 RX 360158 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2164605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15368414177 RX 4995298 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15302121431 RX 360459 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1374 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2207731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15175470622 RX 5323671 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15107995267 RX 360284 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2165351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15371276206 RX 4997194 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15304953868 RX 360588 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2208683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 219927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15184371304 RX 5325735 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15116875107 RX 360413 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2166067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: MAC: TX 15373957936 RX 4999114 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15307606397 RX 360714 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 916 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2209647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15193403567 RX 5327837 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15125885729 RX 360616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2166429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 96c8: ulsch_rounds 206414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 15375276834 RX 5001690 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15308904517 RX 361671 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 647 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -60 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2210431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 8379: ulsch_rounds 220099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15200679690 RX 5330582 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15133141896 RX 361511 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2166441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: ulsch_rounds 206427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 15375279670 RX 5003168 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15308904517 RX 361671 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2210918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15202462569 RX 5333576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15134897824 RX 362720 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2167062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: ulsch_rounds 206506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15377383766 RX 5005638 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15311001533 RX 362533 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2211661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15205168744 RX 5335640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15137573203 RX 362849 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2168029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15384709535 RX 5007582 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15318308806 RX 362662 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2212377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15207889733 RX 5337704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15140264900 RX 362978 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2168997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15394020119 RX 5009478 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15327597665 RX 362791 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2213126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15210624248 RX 5339720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15142966981 RX 363104 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2169964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15403340174 RX 5011398 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15336895982 RX 362917 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2213871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15213311994 RX 5341784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15145623170 RX 363233 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2170931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15412659496 RX 5013342 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15346192588 RX 363046 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2214613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15216037731 RX 5343848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15148317896 RX 363362 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2171898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15421979359 RX 5015238 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15355490701 RX 363175 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2215341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15218731374 RX 5345864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15150981405 RX 363488 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2172865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 206986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15431286358 RX 5017158 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15364775978 RX 363301 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2216091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15221461683 RX 5347928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15153680532 RX 363617 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2173833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15440587503 RX 5019102 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15374054443 RX 363430 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1244 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2216860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15224421730 RX 5349992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15156609424 RX 363746 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2174800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15449914086 RX 5020998 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15383359269 RX 363559 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1079 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2217611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 220965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15227121139 RX 5352008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15159277504 RX 363872 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2175767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15459214173 RX 5022918 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15392637661 RX 363685 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 598 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2218346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15229823432 RX 5354072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15161948463 RX 364001 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2176735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15468515456 RX 5024862 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15401916311 RX 363814 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2219083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15232557885 RX 5356136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15164652006 RX 364130 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2177702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15477848375 RX 5026758 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15411227464 RX 363943 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2219835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15235371128 RX 5358152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15167434095 RX 364256 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2178668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15487139438 RX 5028678 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15420496846 RX 364069 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2220560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15238034806 RX 5360216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15170066596 RX 364385 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2179637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15496449991 RX 5030622 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15429784699 RX 364198 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 646 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2221302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15240764451 RX 5362280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15172765664 RX 364514 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2180604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15505782718 RX 5032518 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15439095660 RX 364327 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2222030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15243424112 RX 5364296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15175395147 RX 364640 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2181569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15515093623 RX 5034438 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15448384844 RX 364453 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 753 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2222775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15246173705 RX 5366360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15178113600 RX 364769 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2182537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15524400926 RX 5036382 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15457669939 RX 364582 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2223514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15248919589 RX 5368424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15180827562 RX 364898 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2183506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15533717253 RX 5038278 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15466964041 RX 364711 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2224265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15251688156 RX 5370440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15183565201 RX 365024 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2184471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 207946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15543029439 RX 5040198 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15476254508 RX 364837 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2224991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15254492430 RX 5372504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15186339960 RX 365153 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2185439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15552356134 RX 5042142 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15485558964 RX 364966 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2225737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15257185330 RX 5374568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15189000570 RX 365282 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2186407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15561657101 RX 5044038 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15494837743 RX 365095 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2226483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 221989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15259882413 RX 5376584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15191667113 RX 365408 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2187373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15570957254 RX 5045958 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15504116200 RX 365221 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2227234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15262572309 RX 5378648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15194324789 RX 365537 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2188341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15580284114 RX 5047902 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15513420837 RX 365350 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2227966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15265254146 RX 5380712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15196976507 RX 365666 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2189309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15589585054 RX 5049798 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15522699612 RX 365479 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2228717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15267938295 RX 5382728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15199629712 RX 365792 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2190275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15598891735 RX 5051718 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15531984581 RX 365605 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2229467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15270638729 RX 5384792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15202297772 RX 365921 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2191243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15608225342 RX 5053662 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15541295929 RX 365734 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 647 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2230204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15273340396 RX 5386856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15204968205 RX 366050 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2192210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15617524710 RX 5055558 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15550573103 RX 365863 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2230946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15276045448 RX 5388872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15207644126 RX 366176 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2193177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15626826270 RX 5057478 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15559852962 RX 365989 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2231693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15278768563 RX 5390936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15210335873 RX 366305 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2194145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15636159685 RX 5059422 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15569164116 RX 366118 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 972 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2232446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15281547830 RX 5393000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15213083931 RX 366434 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2195111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15645478703 RX 5061318 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15578460920 RX 366247 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2233183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15284258926 RX 5395016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15215763331 RX 366560 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2196078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15654792230 RX 5063238 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15587752711 RX 366373 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2233961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15287358485 RX 5397080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15218830540 RX 366689 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2197046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 208987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15664091532 RX 5065182 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15597029820 RX 366502 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 641 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2234704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 222928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15290038609 RX 5399144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15221479314 RX 366818 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2198013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15673406710 RX 5067078 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15606322777 RX 366631 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2235448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15292733336 RX 5401160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15224142838 RX 366944 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2198980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15682733101 RX 5068998 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15615627405 RX 366757 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2236169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15295417097 RX 5403224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15226796013 RX 367073 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2199948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15692027129 RX 5070942 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15624899286 RX 366886 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2236910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15298123767 RX 5405288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15229471433 RX 367202 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2200915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15701334663 RX 5072838 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15634184643 RX 367015 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 626 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2237658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15300777971 RX 5407304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15232093471 RX 367328 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2201882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15710660862 RX 5074758 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15643489088 RX 367141 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2238393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15303467971 RX 5409368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15234752599 RX 367457 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2202850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15719955301 RX 5076702 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15652761352 RX 367270 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 688 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2239151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15306136854 RX 5411432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15237389522 RX 367586 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2203817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15729269006 RX 5078598 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15662052840 RX 367399 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 666 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 627 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2239893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15308804993 RX 5413448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15240027892 RX 367712 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2204784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15738601925 RX 5080518 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15671363992 RX 367525 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2240630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15311490324 RX 5415512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15242683585 RX 367841 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2205750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15747898989 RX 5082462 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15680638871 RX 367654 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2241369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15314200079 RX 5417576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15245362480 RX 367970 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2206719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15757210069 RX 5084358 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15689927726 RX 367783 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2242104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15316903099 RX 5419592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15248034916 RX 368096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2207686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15766530124 RX 5086278 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15699226040 RX 367909 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2242847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15319624287 RX 5421656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15250725196 RX 368225 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2208652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 209947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15775848950 RX 5088222 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15708522640 RX 368038 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2243592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 223952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15322354525 RX 5423720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15253424383 RX 368354 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2209620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15785169309 RX 5090118 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15717820767 RX 368167 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1216 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2244357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15325226004 RX 5425736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15256264340 RX 368480 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2210587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15794476308 RX 5092130 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15727106053 RX 368293 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2245096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15327951596 RX 5427800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15258958996 RX 368609 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2211554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15803776930 RX 5094074 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15736384508 RX 368422 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2245842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15330655081 RX 5429864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15261631507 RX 368738 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2212522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15813103982 RX 5095970 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15745689340 RX 368551 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2246579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15333335259 RX 5431880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15264280246 RX 368864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2213489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15822404069 RX 5097890 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15754967728 RX 368677 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2247327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15336046127 RX 5433944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15266960127 RX 368993 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2214456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15831704910 RX 5099834 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15764246375 RX 368806 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2248069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15338780191 RX 5436008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15269662168 RX 369122 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2215424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15841038325 RX 5101730 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15773557534 RX 368935 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2248811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15341485873 RX 5438024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15272337112 RX 369248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2216390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15850329388 RX 5103650 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15782826914 RX 369061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 624 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2249542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15344153460 RX 5440088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15274974481 RX 369377 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2217358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15859639445 RX 5105594 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15792114758 RX 369190 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 683 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 654 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2250277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15346828925 RX 5442152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15277618724 RX 369506 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2218326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15868972668 RX 5107490 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15801425722 RX 369319 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2251021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15349554866 RX 5444168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15280313405 RX 369632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2219291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15878283573 RX 5109410 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15810714913 RX 369445 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2251773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15352242131 RX 5446232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15282969589 RX 369761 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2220258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15887590380 RX 5111354 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15820000006 RX 369574 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2252522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 224976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15354984465 RX 5448296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15285680557 RX 369890 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2221228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 210987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15896907203 RX 5113250 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15829294110 RX 369703 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2253266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15357713910 RX 5450312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15288378172 RX 370016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2222193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15906219389 RX 5115170 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15838584571 RX 369829 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2254006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15360458359 RX 5452376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15291092134 RX 370145 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2223160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15915545588 RX 5117114 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15847889017 RX 369958 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2254754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15363200879 RX 5454440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15293803142 RX 370274 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2224129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15924846997 RX 5119010 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15857167787 RX 370087 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 699 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2255540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15366426792 RX 5456456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15296995860 RX 370400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2225095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15934147150 RX 5120930 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15866446241 RX 370213 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2179 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2256269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15369191717 RX 5458520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15299730575 RX 370529 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2226062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15943473541 RX 5122874 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15875750875 RX 370342 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1016 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2257006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15371938019 RX 5460584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15302444627 RX 370658 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2227031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15952775004 RX 5124770 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15885029648 RX 370471 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2257761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15374662040 RX 5462600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15305137821 RX 370784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2227997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15962081685 RX 5126690 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15894314610 RX 370597 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 649 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2258497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15377354181 RX 5464664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15307798451 RX 370913 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2228964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15971414796 RX 5128634 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15903625951 RX 370726 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2259229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15380045318 RX 5466728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15310459086 RX 371042 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2229932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15980714660 RX 5130530 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15912903134 RX 370855 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2259962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15382744069 RX 5468744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15313127071 RX 371168 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2230899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15990016220 RX 5132450 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15922182987 RX 370981 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2260723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 225914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15385484591 RX 5470808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15315836592 RX 371297 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2231866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 15999349139 RX 5134394 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15931494141 RX 371110 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2261492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15388389024 RX 5472872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15318707666 RX 371426 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2232833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 211947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16008668653 RX 5136290 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15940790937 RX 371239 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1449 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2262229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15391138323 RX 5474888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15321425558 RX 371552 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2233800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16017982180 RX 5138210 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15950082741 RX 371365 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2262975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15393870507 RX 5476952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15324127664 RX 371681 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2234767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16027280986 RX 5140154 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15959359846 RX 371494 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2263703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15396552089 RX 5479016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15326779883 RX 371810 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2235735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16036596606 RX 5142050 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15968652804 RX 371623 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 595 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2264426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15399219860 RX 5481032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15329418268 RX 371936 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2236702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16045922997 RX 5143970 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15977957445 RX 371749 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2265173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15401936075 RX 5483096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15332101123 RX 372065 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2237669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16055216556 RX 5145914 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15987229321 RX 371878 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2265919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15404682557 RX 5485160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15334815035 RX 372194 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2238637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16064524613 RX 5147810 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 15996514682 RX 372007 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1408 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1122 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2266673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15407734689 RX 5487176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15337835861 RX 372320 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2239604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16073850812 RX 5149730 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16005819123 RX 372133 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2267420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15410505689 RX 5489240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15340576479 RX 372449 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2240571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16083144755 RX 5151674 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16015091378 RX 372262 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1311 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2268195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15413624192 RX 5491304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15343662508 RX 372578 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2241539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16092458956 RX 5153570 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16024382872 RX 372391 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1513 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2268931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15416335656 RX 5493320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15346343841 RX 372704 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2242506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16101791875 RX 5155490 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16033694026 RX 372517 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2269673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 226938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15419029589 RX 5495384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15349007385 RX 372833 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2243471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16111088443 RX 5157434 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16042968907 RX 372646 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2270419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15421701194 RX 5497448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15351647257 RX 372962 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2244440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16120399523 RX 5159330 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16052257764 RX 372775 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 631 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2271162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15424396876 RX 5499464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15354312293 RX 373088 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2245408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 212986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16129720074 RX 5161250 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16061556074 RX 372901 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 700 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2271899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15427091618 RX 5501528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15356975832 RX 373217 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2246373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16139038404 RX 5163194 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16070852671 RX 373030 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1429 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2272677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15430024138 RX 5503592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15359873502 RX 373346 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2247341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16148358736 RX 5165090 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16080150798 RX 373159 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2273420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15432708523 RX 5505608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15362526196 RX 373472 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2248309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16157666204 RX 5167010 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16089436090 RX 373285 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2274182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15435660414 RX 5507672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15365446647 RX 373601 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2249275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16166966357 RX 5168954 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16098714544 RX 373414 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1385 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2274926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15438349525 RX 5509736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15368104248 RX 373730 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2250243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16176293436 RX 5170850 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16108019378 RX 373543 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2275671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15441120717 RX 5511752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15370844911 RX 373856 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2251211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16185594019 RX 5172770 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16117297766 RX 373669 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2276418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15443907642 RX 5513816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15373600414 RX 373985 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2252177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16194894364 RX 5174714 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16126576409 RX 373798 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2277197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15447052745 RX 5515880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15376713089 RX 374114 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2253145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16204227779 RX 5176610 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16135887559 RX 373927 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2277929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15449750751 RX 5517896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15379381049 RX 374240 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2254112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16213519338 RX 5178530 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16145156947 RX 374053 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2278683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 227962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15452469246 RX 5519960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15382068315 RX 374369 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2255079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16222828899 RX 5180474 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16154444779 RX 374182 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2279432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15455229232 RX 5522024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15384797127 RX 374498 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2256047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16232162122 RX 5182370 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16163755750 RX 374311 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 954 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2280177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15457916992 RX 5524040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15387454342 RX 374624 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2257013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 213946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16241473523 RX 5184290 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16173044938 RX 374437 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2280888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15460605039 RX 5526188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15390113954 RX 374825 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2257971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16250685857 RX 5186234 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16182235780 RX 374566 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2281587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15463234051 RX 5528204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15392713782 RX 374951 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2258928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16259876193 RX 5188130 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16191404202 RX 374695 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 624 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2282313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15465870302 RX 5530268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15395319578 RX 375080 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2259883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16269073381 RX 5190050 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16200579474 RX 374821 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2283044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15468598954 RX 5532332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15398018680 RX 375209 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2260838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16278273616 RX 5191994 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16209758242 RX 374950 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 757 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2283757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15471303666 RX 5534348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15400694050 RX 375335 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2261795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16287459116 RX 5193890 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16218921811 RX 375079 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2284491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15474024733 RX 5536412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15403384305 RX 375464 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2262749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16296623304 RX 5195810 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16228064135 RX 375205 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2285201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15476683958 RX 5538476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15406013683 RX 375593 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2263703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16305813234 RX 5197754 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16237232628 RX 375334 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2285920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15479341921 RX 5540492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15408641674 RX 375719 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2264661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16315009231 RX 5199650 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16246406675 RX 375463 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2286643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15482003375 RX 5542556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15411274106 RX 375848 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2265614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16324169450 RX 5201570 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16255545029 RX 375589 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2287388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 228989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15484731578 RX 5544620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15413971821 RX 375977 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2266570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16333387094 RX 5203514 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16264741169 RX 375718 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 909 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2288118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15487491389 RX 5546636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15416700653 RX 376103 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2267527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16342581492 RX 5205410 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16273913621 RX 375847 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2288838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15490131925 RX 5548700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15419310830 RX 376232 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2268480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16351726093 RX 5207330 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16283036383 RX 375973 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2289567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15492849339 RX 5550764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15421998106 RX 376361 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2269437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 214987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16360954042 RX 5209274 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16292242815 RX 376102 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2290302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15495555579 RX 5552780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15424673511 RX 376487 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2270391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16370147069 RX 5211170 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16301413931 RX 376231 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1190 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2291047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15498418203 RX 5554844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15427506083 RX 376616 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2271347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16379335101 RX 5213090 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16310580059 RX 376357 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2291760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15501116205 RX 5556908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15430174128 RX 376745 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2272303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16388518440 RX 5215034 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16319741957 RX 376486 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2292487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15503807711 RX 5558924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15432834708 RX 376871 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2273256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16397686660 RX 5216930 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16328888293 RX 376615 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 788 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2293217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15506537767 RX 5560988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15435533864 RX 377000 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2274213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16406898080 RX 5218850 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16338077732 RX 376741 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2293943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15509250206 RX 5563052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15438216640 RX 377129 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2275169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16416076172 RX 5220794 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16347234411 RX 376870 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2294665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15511989874 RX 5565068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15440926166 RX 377255 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2276123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16425247272 RX 5222690 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16356383617 RX 376999 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 910 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 677 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2295392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 229927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15514676930 RX 5567132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15443582265 RX 377384 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2277080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16434458500 RX 5224610 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16365572858 RX 377125 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2296112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15517374322 RX 5569196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15446250255 RX 377513 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2278035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16443626479 RX 5226554 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16374719444 RX 377254 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2296843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15520096054 RX 5571212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15448941947 RX 377639 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2278989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16452803723 RX 5228450 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16383874777 RX 377383 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2297556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230183/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15522785998 RX 5573276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15451601010 RX 377768 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2279945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16462011174 RX 5230370 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16393060259 RX 377509 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2298275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15525460465 RX 5575340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15454246259 RX 377897 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2280900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 215947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16471202772 RX 5232314 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16402230413 RX 377638 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2298998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15528181425 RX 5577356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15456935523 RX 378023 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2281854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16480366398 RX 5234210 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16411372659 RX 377767 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2299713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15530863408 RX 5579420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15459587291 RX 378152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2282812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16489571924 RX 5236130 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16420555777 RX 377893 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2300420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15533552408 RX 5581484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15462246454 RX 378281 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2283766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16498774787 RX 5238074 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16429737178 RX 378022 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 846 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2301154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15536242584 RX 5583500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15464907039 RX 378407 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2284720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16507958189 RX 5239970 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16438899156 RX 378151 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2301873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15538929030 RX 5585564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15467563178 RX 378536 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2285679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16517161210 RX 5241890 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16448079722 RX 378277 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2302616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15541737746 RX 5587628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15470340857 RX 378665 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2286631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16526314405 RX 5243834 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16457211552 RX 378406 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1078 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2303338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15544406764 RX 5589644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15472980718 RX 378791 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2287586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16535515024 RX 5245730 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16466390705 RX 378535 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2304048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 230951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15547091689 RX 5591708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15475635370 RX 378920 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2288545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16544711133 RX 5247650 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16475564369 RX 378661 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2304781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15549778762 RX 5593772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15478291519 RX 379049 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2289496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16553854023 RX 5249594 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16484685921 RX 378790 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2305515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15552496537 RX 5595788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15480978815 RX 379175 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2290453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16563081972 RX 5251490 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16493892348 RX 378919 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2306237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15555189641 RX 5597852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15483639455 RX 379304 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2291410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16572258560 RX 5253410 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16503046532 RX 379045 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2306991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15558088023 RX 5599916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15486506133 RX 379433 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2292363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16581421163 RX 5255354 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16512187757 RX 379174 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2307717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15560921023 RX 5601932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15489309050 RX 379559 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2293320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 216987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16590648920 RX 5257250 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16521393992 RX 379303 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2308456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231463/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15563653840 RX 5603996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15492011156 RX 379688 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2294274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16599824302 RX 5259170 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16530547037 RX 379429 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2309182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15566327963 RX 5606060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15494655489 RX 379817 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2295229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16609005145 RX 5261114 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16539706461 RX 379558 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2309909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15569026195 RX 5608076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15497323529 RX 379943 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2296185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16618195012 RX 5263010 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16548874896 RX 379687 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2310652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15571947592 RX 5610140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15500213819 RX 380072 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2297141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16627392723 RX 5264930 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16558050165 RX 379813 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1413 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2311376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15574646992 RX 5612204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15502883276 RX 380201 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2298096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16636592958 RX 5266874 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16567228938 RX 379942 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2312099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15577287122 RX 5614220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15505491941 RX 380327 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2299052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16645777962 RX 5268770 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16576392510 RX 380071 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2312829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 231975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15580002194 RX 5616284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15508176248 RX 380456 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2300007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16654942646 RX 5270690 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16585534819 RX 380197 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2313563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15582698811 RX 5618348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15510842796 RX 380585 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2300961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16664132576 RX 5272634 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16594703312 RX 380326 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1134 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2314302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15585513484 RX 5620364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15513626472 RX 380711 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2301918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16673328077 RX 5274530 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16603877346 RX 380455 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2315031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 8379: MAC: TX 15588172909 RX 5622428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15516255935 RX 380840 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2302872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16682488792 RX 5276450 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16613015700 RX 380581 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2315317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 23 +UE 8379: ulsch_rounds 232294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15589186182 RX 5624949 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15517251261 RX 381795 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2303835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 217872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 16691779915 RX 5278537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16622285158 RX 380848 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 212 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2315330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: ulsch_rounds 232307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 15589189157 RX 5626457 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15517251261 RX 381795 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2304514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 96c8: ulsch_rounds 217948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 16698260224 RX 5281166 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16628747030 RX 381728 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2316043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 8379: ulsch_rounds 232398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15591578122 RX 5629194 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15519632043 RX 382679 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2305035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16700140138 RX 5284106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16630598298 RX 382878 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2317020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15599051863 RX 5631210 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15527087736 RX 382805 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2305773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16703223721 RX 5286050 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16633650562 RX 383007 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2318000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15608222842 RX 5633274 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15536237248 RX 382934 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2306489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16705932687 RX 5287946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16636330328 RX 383136 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2318979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15617403278 RX 5635338 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15545395701 RX 383063 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2307198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16708658523 RX 5289866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16639027933 RX 383262 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2319956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15626589812 RX 5637354 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15554560738 RX 383189 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2307907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16711351212 RX 5291810 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16641691347 RX 383391 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2320934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15635760854 RX 5639418 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15563710311 RX 383318 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2308653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16714120424 RX 5293706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16644430388 RX 383520 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2321913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15644934762 RX 5641482 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15572862253 RX 383447 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2309392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16716882265 RX 5295626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16647161934 RX 383646 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2322891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 232995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15654117648 RX 5643498 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15582023641 RX 383573 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2310120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16719602266 RX 5297570 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16649852059 RX 383775 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2323869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15663296115 RX 5645562 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15591180630 RX 383702 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2310833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16722280254 RX 5299466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16652500633 RX 383904 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2324848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15672470215 RX 5647626 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15600332764 RX 383831 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2311565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16724967787 RX 5301386 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16655158144 RX 384030 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2325826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15681659437 RX 5649642 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15609500485 RX 383957 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2312302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16727700137 RX 5303330 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16657860170 RX 384159 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2326804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15690844624 RX 5651706 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15618664174 RX 384086 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2313029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 218925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16730412381 RX 5305226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16660542339 RX 384288 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 993 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2327783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15700005668 RX 5653770 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15627803272 RX 384215 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2313768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16733156046 RX 5307146 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16663256171 RX 384414 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2328762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15709175048 RX 5655786 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15636951180 RX 384341 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2314477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16735829568 RX 5309090 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16665900845 RX 384543 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2329740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15718368236 RX 5657850 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15646122850 RX 384470 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2315211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16738519286 RX 5310986 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16668561360 RX 384672 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2330718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15727540929 RX 5659914 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15655273583 RX 384599 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2315937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16741247011 RX 5312906 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16671259851 RX 384798 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2331697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15736701411 RX 5661930 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15664412617 RX 384725 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2316667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16743990899 RX 5314850 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16673973663 RX 384927 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2332675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15745881543 RX 5663994 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15673571257 RX 384854 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2317386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16746685676 RX 5316746 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16676637573 RX 385056 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2333654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 233934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15755064541 RX 5666058 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15682732271 RX 384983 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2318118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16749409343 RX 5318666 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16679332149 RX 385182 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1011 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2334632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15764249920 RX 5668074 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15691896153 RX 385109 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2318856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16752205972 RX 5320610 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16682099363 RX 385311 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2335610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15773423332 RX 5670138 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15701048099 RX 385238 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2319579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16754945863 RX 5322506 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16684809675 RX 385440 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2336588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15782596025 RX 5672202 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15710198820 RX 385367 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2320303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16757671013 RX 5324426 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16687504712 RX 385566 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1451 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2337567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15791791901 RX 5674218 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15719373180 RX 385493 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2321059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16760567757 RX 5326370 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16690370689 RX 385695 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2338545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15800958785 RX 5676282 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15728518598 RX 385622 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2321776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16763315385 RX 5328266 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16693089478 RX 385824 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2339524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15810134166 RX 5678346 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15737672009 RX 385751 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2322483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 219964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16766041606 RX 5330186 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16695787003 RX 385950 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 933 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2340502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15819333690 RX 5680362 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15746850006 RX 385877 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2323258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16769197212 RX 5332130 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16698911384 RX 386079 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1887 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2341480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15828494238 RX 5682426 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15755989113 RX 386006 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2323968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16771856410 RX 5334026 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16701540697 RX 386208 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 890 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2342460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15837656497 RX 5684490 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15765129425 RX 386135 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2324697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16774565862 RX 5335946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16704220458 RX 386334 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1022 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2343438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15846842965 RX 5686506 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15774294393 RX 386261 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2325431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16777329308 RX 5337890 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16706953561 RX 386463 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 671 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2344414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15856019194 RX 5688570 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15783449146 RX 386390 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2326169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16780030548 RX 5339786 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16709624430 RX 386592 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2345395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 234958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15865197005 RX 5690634 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15792604972 RX 386519 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2326881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16782736170 RX 5341706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16712301187 RX 386718 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2346373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15874370609 RX 5692650 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15801757103 RX 386645 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2327604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16785449003 RX 5343650 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16714983887 RX 386847 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2347350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15883542806 RX 5694714 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15810907826 RX 386774 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2328324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16788146493 RX 5345546 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16717651281 RX 386976 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2348330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15892738986 RX 5696778 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15820081987 RX 386903 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2329047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16790898281 RX 5347466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16720372513 RX 387102 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 911 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 883 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2349308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15901912590 RX 5698794 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15829234117 RX 387029 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2329771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16793630282 RX 5349410 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16723074509 RX 387231 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2350285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15911084595 RX 5700858 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15838384654 RX 387158 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2330496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16796296611 RX 5351306 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16725711287 RX 387360 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2351264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15920270470 RX 5702922 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15847548535 RX 387287 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2331254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 220924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16799248936 RX 5353226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16728632584 RX 387486 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1554 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2352242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15929437354 RX 5704938 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15856693958 RX 387413 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2331977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16801939977 RX 5355170 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16731293535 RX 387615 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2353221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15938608207 RX 5707002 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15865843347 RX 387542 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2332702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16804625269 RX 5357066 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16733949559 RX 387744 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 666 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2354200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15947808419 RX 5709066 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15875021536 RX 387671 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2333431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16807316975 RX 5358986 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16736611551 RX 387870 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2355177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15956966279 RX 5711082 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15884157950 RX 387797 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2334161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16810027354 RX 5360930 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16739292784 RX 387999 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1057 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2356157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15966137258 RX 5713146 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15893307456 RX 387926 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2334912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16813168421 RX 5362826 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16742402370 RX 388128 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1654 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2357136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 235982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15975317694 RX 5715210 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15902465909 RX 388055 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2335620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16815817923 RX 5364746 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16745022796 RX 388254 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2358113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15984504228 RX 5717226 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15911630943 RX 388181 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2336348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16818508538 RX 5366690 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16747683251 RX 388383 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2359091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 15993675270 RX 5719290 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15920780514 RX 388310 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2337095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16821280793 RX 5368586 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16750423774 RX 388512 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2360069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16002848682 RX 5721354 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15929932458 RX 388439 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2337803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16824005750 RX 5370506 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16753118340 RX 388638 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 936 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2361048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16012032064 RX 5723370 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15939093849 RX 388565 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2338515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16826749618 RX 5372450 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16755832217 RX 388767 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2362026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16021210531 RX 5725434 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15948250832 RX 388694 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2339238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16829501284 RX 5374346 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16758554941 RX 388896 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 947 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1030 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2363004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16030384135 RX 5727498 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15957402952 RX 388823 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2339965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16832292586 RX 5376266 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16761317208 RX 389022 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2363983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16039573853 RX 5729514 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15966570673 RX 388949 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2340689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 221965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16835013064 RX 5378210 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16764007819 RX 389151 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2364961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16048759040 RX 5731578 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15975734366 RX 389078 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2341404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16837715408 RX 5380106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16766680160 RX 389280 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2365939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16057919588 RX 5733642 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15984873467 RX 389207 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2342136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16840462004 RX 5382026 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16769396901 RX 389406 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2366919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16067089464 RX 5735658 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 15994021381 RX 389333 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2342880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16843210397 RX 5383970 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16772115179 RX 389535 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2367897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 236920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16076282652 RX 5737722 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16003193049 RX 389462 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2343596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16845929101 RX 5385866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16774805334 RX 389664 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1478 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2368874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16085454849 RX 5739786 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16012343777 RX 389591 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2344352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16849004969 RX 5387786 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16777851169 RX 389790 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1154 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2369854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16094615827 RX 5741802 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16021482812 RX 389717 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2345090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16851778398 RX 5389730 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16780594606 RX 389919 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2370832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16103795959 RX 5743866 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16030641453 RX 389846 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2345819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16854517643 RX 5391626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16783303992 RX 390048 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 976 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2371810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16112978461 RX 5745930 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16039802468 RX 389975 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2346549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16857365137 RX 5393546 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16786121534 RX 390174 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1126 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2372789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16122164336 RX 5747946 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16048966351 RX 390101 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2347278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16860128083 RX 5395490 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16788854627 RX 390303 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 914 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2373767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16131337748 RX 5750010 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16058118283 RX 390230 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2348014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16862948230 RX 5397386 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16791645007 RX 390432 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2374744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16140509945 RX 5752074 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16067269010 RX 390359 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2348738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16865691174 RX 5399306 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16794359355 RX 390558 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2375724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16149706317 RX 5754090 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16076443370 RX 390485 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2349459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 222925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16868430464 RX 5401250 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16797068736 RX 390687 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2376702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16158873201 RX 5756154 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16085588794 RX 390614 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2350186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16871124827 RX 5403146 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16799733161 RX 390816 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2377680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16168048086 RX 5758218 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16094742202 RX 390743 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2350924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16873876827 RX 5405066 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16802454864 RX 390942 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1002 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2378659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16177248106 RX 5760234 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16103920202 RX 390869 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2351649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16876631333 RX 5407010 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16805179030 RX 391071 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2379637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 237944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16186408654 RX 5762298 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16113059299 RX 390998 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2352358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16879293635 RX 5408906 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16807812824 RX 391200 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2380616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16195570417 RX 5764362 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16122199613 RX 391127 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2353087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16881972825 RX 5410826 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16810461403 RX 391326 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2381595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16204757381 RX 5766378 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16131364580 RX 391253 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2353805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16884658864 RX 5412770 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16813117452 RX 391455 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2382571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16213933610 RX 5768442 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16140519337 RX 391382 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2354539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16887391128 RX 5414666 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16815819493 RX 391584 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 752 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2383551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16223110925 RX 5770506 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16149675163 RX 391511 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2355260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16890122904 RX 5416586 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16818522886 RX 391710 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 932 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 905 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2384530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16232285025 RX 5772522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16158827296 RX 391637 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2356004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16892858311 RX 5418530 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16821227926 RX 391839 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2385507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16241457222 RX 5774586 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16167978011 RX 391766 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2356747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16895606642 RX 5420426 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16823945718 RX 391968 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2386486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16250652906 RX 5776650 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16177152167 RX 391895 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2357471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16898324455 RX 5422346 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16826633375 RX 392094 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 933 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2387465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16259827006 RX 5778666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16186304301 RX 392021 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2358198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16901059229 RX 5424290 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16829338285 RX 392223 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2388442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16268999011 RX 5780730 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16195454841 RX 392150 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2358925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 223965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16903766067 RX 5426186 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16832014571 RX 392352 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2389420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16278184390 RX 5782794 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16204618721 RX 392279 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2359656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16906570455 RX 5428106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16834789185 RX 392478 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1044 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2390399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16287351770 RX 5784810 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16213764147 RX 392405 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2360380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16909294958 RX 5430050 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16837484287 RX 392607 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 771 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2391378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 238968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16296522623 RX 5786874 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16222913526 RX 392534 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2361114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16911988305 RX 5431946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16840147706 RX 392736 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2392356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16305722339 RX 5788938 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16232091717 RX 392663 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2361834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16914696542 RX 5433866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16842827437 RX 392862 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2393334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16314880695 RX 5790954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16241228143 RX 392789 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2362566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16917430150 RX 5435810 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16845530394 RX 392991 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 884 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2394314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16324051674 RX 5793018 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16250377645 RX 392918 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2363293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16920157234 RX 5437706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16848228380 RX 393120 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1512 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2395292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16333231614 RX 5795082 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16259536099 RX 393047 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2364059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16923113949 RX 5439626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16851152676 RX 393246 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2396270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16342418644 RX 5797098 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16268701132 RX 393173 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2364780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16925854162 RX 5441570 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16853863499 RX 393375 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2397248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16351589686 RX 5799162 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16277850705 RX 393302 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2365508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16928601071 RX 5443466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16856580300 RX 393504 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 940 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2398226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16360763098 RX 5801226 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16287002640 RX 393431 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2366242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16931310515 RX 5445386 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16859259996 RX 393630 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2399205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16369946480 RX 5803242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16296164034 RX 393557 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2366965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16933991878 RX 5447330 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16861911584 RX 393759 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2400183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16379124947 RX 5805306 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16305321026 RX 393686 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2367693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 224925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16936728965 RX 5449226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16864618987 RX 393888 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1014 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2401161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16388298551 RX 5807370 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16314473155 RX 393815 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2368409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16939508762 RX 5451146 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16867369874 RX 394014 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1031 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2402140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16397488269 RX 5809386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16323640883 RX 393941 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2369131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16942306150 RX 5453090 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16870137559 RX 394143 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2403118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 239992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16406673456 RX 5811450 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16332804577 RX 394070 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2369840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16944975940 RX 5455066 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16872778275 RX 394341 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2404096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16415834004 RX 5813514 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16341943673 RX 394199 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2370571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16947720656 RX 5456962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16875492092 RX 394470 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 910 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1320 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2405076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16425003880 RX 5815530 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16351091590 RX 394325 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2371322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16950600794 RX 5458882 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16878341217 RX 394596 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2406054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16434197068 RX 5817594 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16360263259 RX 394454 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2372048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16953278787 RX 5460826 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16880989385 RX 394725 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2407031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16443369265 RX 5819658 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16369413993 RX 394583 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2372765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16956012012 RX 5462722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16883691411 RX 394854 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2408011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16452530243 RX 5821674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16378553029 RX 394709 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2373504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16958663726 RX 5464642 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16886313419 RX 394980 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 958 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2408989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16461710375 RX 5823738 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16387711669 RX 394838 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2374227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16961430250 RX 5466586 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16889049967 RX 395109 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 896 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2409967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16470892877 RX 5825802 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16396872681 RX 394967 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2374962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16964169814 RX 5468482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16891759403 RX 395238 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2410946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16480078752 RX 5827818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16406036564 RX 395093 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2375691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16966912806 RX 5470402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16894473275 RX 395364 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2411924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16489252164 RX 5829882 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16415188507 RX 395222 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2376411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16969610755 RX 5472346 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16897141170 RX 395493 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2412901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16498424361 RX 5831946 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16424339231 RX 395351 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2377156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 225967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16972358731 RX 5474242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16899859458 RX 395622 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2413881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 240931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16507620733 RX 5833962 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16433513593 RX 395477 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2377881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16975077632 RX 5476162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16902549523 RX 395748 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 902 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2414859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16516787617 RX 5836026 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16442659013 RX 395606 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2378610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16977807443 RX 5478106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16905248495 RX 395877 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 948 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2415837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16525962502 RX 5838090 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16451812430 RX 395735 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2379348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16980544367 RX 5480002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16907954917 RX 396006 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2416816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16535162522 RX 5840106 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16460990429 RX 395861 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2380078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16983276072 RX 5481922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16910656412 RX 396132 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2417794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16544323070 RX 5842170 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16470129535 RX 395990 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2380803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16985979067 RX 5483866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16913329214 RX 396261 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2418773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16553484833 RX 5844234 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16479269842 RX 396119 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2381515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16988690601 RX 5485762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16916011919 RX 396390 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2419752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16562671797 RX 5846250 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16488434804 RX 396245 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2382233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16991378998 RX 5487682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16918670887 RX 396516 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2420728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16571848026 RX 5848314 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16497589560 RX 396374 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2382976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16994224267 RX 5489626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16921485525 RX 396645 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1220 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2421708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16581025341 RX 5850378 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16506745395 RX 396503 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2383694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16996955301 RX 5491522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16924187446 RX 396774 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1419 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2422686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16590198945 RX 5852394 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16515897520 RX 396629 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2384443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 16999936398 RX 5493442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16927138403 RX 396900 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 963 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2423664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16599371638 RX 5854458 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16525048247 RX 396758 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2385166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17002643059 RX 5495386 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16929815200 RX 397029 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2424643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16608567322 RX 5856522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16534222402 RX 396887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2385898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 226927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17005417926 RX 5497282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16932560124 RX 397158 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2425621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 241955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16617740926 RX 5858538 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16543374529 RX 397013 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2386628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17008146806 RX 5499202 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16935259161 RX 397284 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2426599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16626913427 RX 5860602 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16552525071 RX 397142 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2387361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17010847014 RX 5501146 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16937928478 RX 397413 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 933 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2427577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16636098806 RX 5862666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16561688946 RX 397271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2388085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17013614311 RX 5503042 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16940667534 RX 397542 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 961 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2428555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16645265690 RX 5864682 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16570834372 RX 397397 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2388803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17016331805 RX 5504962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16943356152 RX 397668 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2429535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16654437039 RX 5866746 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16579983756 RX 397526 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2389533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17019060974 RX 5506906 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16946055144 RX 397797 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2430513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16663636755 RX 5868810 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16589161945 RX 397655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2390280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17021782237 RX 5508802 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16948745254 RX 397926 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2431490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16672794615 RX 5870826 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16598298368 RX 397781 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2391017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17024473184 RX 5510722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16951405719 RX 398052 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2432471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16681966090 RX 5872890 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16607447875 RX 397910 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2391737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17027177657 RX 5512666 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16954080994 RX 398181 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2433449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16691146030 RX 5874954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16616606329 RX 398039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2392459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17029902063 RX 5514562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16956775560 RX 398310 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 901 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2434426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16700332564 RX 5876970 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16625771367 RX 398165 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2393186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17032622428 RX 5516482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16959467132 RX 398436 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2435405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16709504102 RX 5879034 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16634920938 RX 398294 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2393912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17035316975 RX 5518426 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16962130516 RX 398565 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 963 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2436383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16718677514 RX 5881098 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16644072882 RX 398423 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2394645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17038063269 RX 5520322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16964847297 RX 398694 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2437361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 242979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16727860400 RX 5883114 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16653234281 RX 398549 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2395364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 227966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17040725945 RX 5522242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16967480625 RX 398820 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2438340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16737039363 RX 5885178 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16662391264 RX 398678 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2396090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17043478553 RX 5524186 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16970202338 RX 398949 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 939 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2439318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16746212967 RX 5887242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16671543382 RX 398807 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2396799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17046208411 RX 5526082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16972902842 RX 399078 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2440296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16755402189 RX 5889258 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16680711106 RX 398933 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2397532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17048957612 RX 5528002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16975622096 RX 399204 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2441275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16764587872 RX 5891322 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16689874803 RX 399062 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2398246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17051628940 RX 5529946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16978263325 RX 399333 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2442253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16773748420 RX 5893386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16699013902 RX 399191 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2398965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17054316439 RX 5531842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16980922432 RX 399462 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2443232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16782917800 RX 5895402 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16708161816 RX 399317 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2399678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17057071529 RX 5533762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16983648482 RX 399588 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 999 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2444211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16792111484 RX 5897466 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16717333487 RX 399446 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2400407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17059801135 RX 5535706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16986347519 RX 399717 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2445188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16801283681 RX 5899530 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16726484215 RX 399575 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2401119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17062513139 RX 5537602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16989030209 RX 399846 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2446167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16810444163 RX 5901546 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16735623247 RX 399701 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2401841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17065229121 RX 5539522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16991716869 RX 399972 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2447146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16819624791 RX 5903610 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16744781891 RX 399830 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2402558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17067973246 RX 5541466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16994431152 RX 400101 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2448124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 243918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16828807293 RX 5905674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16753942903 RX 399959 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2403274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17070681755 RX 5543362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16997110888 RX 400230 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 660 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2449102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16837992672 RX 5907690 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16763106786 RX 400085 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2403971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 228926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17073315069 RX 5545282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 16999716499 RX 400356 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2450081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16847166580 RX 5909754 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16772258727 RX 400214 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2404704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17076051058 RX 5547226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17002422941 RX 400485 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 935 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2451058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16856338777 RX 5911818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16781409457 RX 400343 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2405429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17078800522 RX 5549122 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17005142691 RX 400614 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2452037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16865534653 RX 5913834 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16790583810 RX 400469 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2406178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17081626023 RX 5551042 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17007938018 RX 400740 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1056 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2453016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16874702033 RX 5915898 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16799729229 RX 400598 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2406902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17084334863 RX 5552986 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17010617273 RX 400869 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2453994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244430/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 16883876918 RX 5917962 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16808882638 RX 400727 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2407498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 96c8: MAC: TX 17086528006 RX 5555260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17012783472 RX 401578 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 19 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2454970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 16893055448 RX 5920188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16818039674 RX 401081 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2407515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: ulsch_rounds 229348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 17086534301 RX 5557121 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17012783886 RX 401877 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2455294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16894708856 RX 5923811 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16819671859 RX 402901 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2407796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: ulsch_rounds 229406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17087243686 RX 5559544 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17013489142 RX 402707 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2456003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16897389159 RX 5925827 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16822323597 RX 403027 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2408757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 96c8: ulsch_rounds 229486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17092758563 RX 5561440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17018989756 RX 402833 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2456734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16900153245 RX 5927891 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16825056830 RX 403156 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2409712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17101881580 RX 5563360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17028091466 RX 402959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2457449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16902823394 RX 5929955 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16827698129 RX 403285 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2410668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17111061419 RX 5565304 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17037249420 RX 403088 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2458170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 244951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16905478062 RX 5931971 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16830321684 RX 403411 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2411622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17120248110 RX 5567200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17046414215 RX 403217 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 691 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2458882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16908132461 RX 5934035 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16832945304 RX 403540 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2412577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17129448345 RX 5569120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17055592996 RX 403343 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2459595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16910815323 RX 5936099 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16835598514 RX 403669 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2413532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17138612851 RX 5571064 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17064735626 RX 403472 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2460329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16913474345 RX 5938115 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16838227987 RX 403795 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2414487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 229966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17147787536 RX 5572960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17073888403 RX 403601 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2461056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16916128975 RX 5940179 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16840853049 RX 403924 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2415442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17156987963 RX 5574880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17083067377 RX 403727 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2461769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16918829045 RX 5942243 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16843522566 RX 404053 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2416396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17166141972 RX 5576824 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17092199537 RX 403856 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2462491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245463/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16921512643 RX 5944259 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16846174254 RX 404179 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2417354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17175354676 RX 5578720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17101390258 RX 403985 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2463223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16924216844 RX 5946323 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16848848217 RX 404308 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2418306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17184530332 RX 5580640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17110544502 RX 404111 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 613 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2463931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16926861801 RX 5948387 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16851462845 RX 404437 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2419259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17193682742 RX 5582584 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17119675061 RX 404240 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1019 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2464654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16929627164 RX 5950403 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16854197530 RX 404563 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2420218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17202890325 RX 5584480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17128860668 RX 404369 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2465400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16932669077 RX 5952467 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16857209494 RX 404692 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2421171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17212076286 RX 5586400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17138025204 RX 404495 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 630 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2466137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16935398541 RX 5954531 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16859908135 RX 404821 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2422125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17221269313 RX 5588344 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17147196318 RX 404624 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2466863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 245975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16938075371 RX 5956547 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16862552934 RX 404947 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2423082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17230467842 RX 5590240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17156372925 RX 404753 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2467601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16940793351 RX 5958611 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16865240225 RX 405076 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2424035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17239619690 RX 5592160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17165503408 RX 404879 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2468332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16943492235 RX 5960675 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16867908215 RX 405205 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2424991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17248819401 RX 5594104 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17174681160 RX 405008 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1480 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2469095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16946441666 RX 5962691 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16870825231 RX 405331 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2425946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 230926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17258009827 RX 5596000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17183849658 RX 405137 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2469804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16949097245 RX 5964755 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16873450268 RX 405460 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2426900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17267166925 RX 5597920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17192985385 RX 405263 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2470542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16951800175 RX 5966819 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16876122734 RX 405589 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2427857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17276369516 RX 5599864 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17202166015 RX 405392 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 913 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2471287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16954559555 RX 5968835 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16878851491 RX 405715 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2428811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17285549253 RX 5601760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17211323847 RX 405521 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2472009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16957254664 RX 5970899 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16881516502 RX 405844 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2429765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17294706735 RX 5603680 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17220459954 RX 405647 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2472741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16959960335 RX 5972963 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16884191927 RX 405973 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2430721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17303904973 RX 5605624 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17229636241 RX 405776 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 919 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2473471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246743/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16962712173 RX 5974979 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16886913294 RX 406099 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2431676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17313101927 RX 5607520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17238811241 RX 405905 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2474194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16965417459 RX 5977043 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16889588749 RX 406228 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2432629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17322272531 RX 5609440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17247960446 RX 406031 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2474909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16968106512 RX 5979107 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16892247952 RX 406357 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2433586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17331467648 RX 5611384 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17257134102 RX 406160 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2475668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 246999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16971235068 RX 5981123 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16895345827 RX 406483 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2434541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17340641683 RX 5613280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17266285800 RX 406289 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2476371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16973894702 RX 5983187 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16897975310 RX 406612 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2435493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17349823552 RX 5615200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17275446253 RX 406415 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1134 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2477098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16976715666 RX 5985251 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16900766426 RX 406741 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2436450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17359038445 RX 5617144 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17284639648 RX 406544 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2477834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16979484497 RX 5987267 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16903504125 RX 406867 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2437405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17368199478 RX 5619040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17293778324 RX 406673 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 892 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2478564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16982205478 RX 5989331 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16906194360 RX 406996 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2438361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 231965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17377394661 RX 5620960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17302952054 RX 406799 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2479284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16984908505 RX 5991395 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16908866836 RX 407125 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2439314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17386574286 RX 5622904 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17312110264 RX 406928 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2480009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16987597351 RX 5993411 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16911525939 RX 407251 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2440269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17395728407 RX 5624800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17321242034 RX 407057 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2480728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16990265630 RX 5995475 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16914164254 RX 407380 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2441226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17404934279 RX 5626720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17330426423 RX 407183 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2481437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16992953868 RX 5997539 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16916823372 RX 407509 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2442178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17414109743 RX 5628664 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17339580472 RX 407312 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2482176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16995648692 RX 5999555 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16919487897 RX 407635 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2443133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17423265337 RX 5630560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17348713717 RX 407441 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2482896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 16998350994 RX 6001619 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16922159332 RX 407764 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2444090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17432469928 RX 5632480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17357896828 RX 407567 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2483613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 247938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17001033850 RX 6003683 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16924812532 RX 407893 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2445043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17441655697 RX 5634424 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17367061165 RX 407696 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2484348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248023/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17003740425 RX 6005699 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16927486500 RX 408019 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2445999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17450852073 RX 5636320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17376235147 RX 407825 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2485057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17006396359 RX 6007763 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16930112518 RX 408148 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2446954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17460032916 RX 5638240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17385394564 RX 407951 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2485792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17009099817 RX 6009827 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16932785510 RX 408277 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2447909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17469212286 RX 5640184 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17394552519 RX 408080 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2486520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17011787987 RX 6011843 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16935441654 RX 408403 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2448864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17478399500 RX 5642080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17403717315 RX 408209 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 978 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2487255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17014596820 RX 6013907 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16938220814 RX 408532 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2449819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 232925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17487599735 RX 5644000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17412896071 RX 408335 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2487982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17017278777 RX 6015971 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16940872522 RX 408661 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2450773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17496763745 RX 5645944 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17422038696 RX 408464 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2488720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17020002425 RX 6017987 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16943564259 RX 408787 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2451729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17505938926 RX 5647840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17431191487 RX 408593 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 695 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2489439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17022666198 RX 6020051 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16946196696 RX 408916 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2452684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17515139353 RX 5649760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17440370452 RX 408719 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2490175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17025383619 RX 6022115 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16948883997 RX 409045 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2453637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17524292866 RX 5651704 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17449502595 RX 408848 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2490876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17028037225 RX 6024131 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16951509009 RX 409171 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2454596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17533506066 RX 5653600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17458693319 RX 408977 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2491603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17030727455 RX 6026195 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16954169599 RX 409300 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2455548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17542681722 RX 5655520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17467847566 RX 409103 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2492327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 248962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17033422523 RX 6028259 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16956834214 RX 409429 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2456500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17551833636 RX 5657464 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17476978121 RX 409232 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2493050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17036104953 RX 6030275 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16959486368 RX 409555 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2457459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17561041192 RX 5659360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17486163729 RX 409361 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2493770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17038754941 RX 6032339 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16962105437 RX 409684 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2458413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17570227622 RX 5661280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17495328261 RX 409487 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2494516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17041494357 RX 6034403 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16964814482 RX 409813 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2459366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17579420180 RX 5663224 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17504499370 RX 409616 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2495240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249303/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17044161192 RX 6036419 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16967451395 RX 409939 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2460323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17588618736 RX 5665120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17513675965 RX 409745 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2495976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17046922186 RX 6038483 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16970181669 RX 410068 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2461277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17597771080 RX 5667040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17522806453 RX 409871 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 842 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2496700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17049597360 RX 6040547 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16972826473 RX 410197 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2462232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 233966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17606970295 RX 5668984 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17531984210 RX 410000 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2497457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17052678810 RX 6042563 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16975876954 RX 410323 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2463187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17616160721 RX 5670880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17541152699 RX 410129 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2498178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17055389104 RX 6044627 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16978556800 RX 410452 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2464142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17625318315 RX 5672800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17550288427 RX 410255 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2498909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17058234151 RX 6046691 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16981371568 RX 410581 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2465098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17634520410 RX 5674744 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17559469048 RX 410384 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1108 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2499644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17060942824 RX 6048707 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16984049947 RX 410707 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2466052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17643700147 RX 5676640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17568626872 RX 410513 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 672 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2500367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17063590990 RX 6050771 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16986667584 RX 410836 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2467007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17652858125 RX 5678560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17577762992 RX 410639 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 613 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2501077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 249986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17066199101 RX 6052835 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16989243695 RX 410965 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2467962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17662055867 RX 5680504 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17586939276 RX 410768 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 713 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2501799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17068866291 RX 6054851 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16991880583 RX 411091 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2468917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17671252794 RX 5682400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17596114284 RX 410897 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2502519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17071548524 RX 6056915 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16994533267 RX 411220 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2469871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17680423867 RX 5684320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17605263493 RX 411023 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2503235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17074222951 RX 6058979 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16997178061 RX 411349 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2470828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17689618984 RX 5686264 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17614437160 RX 411152 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2503978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17076898894 RX 6060995 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 16999822389 RX 411475 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2471782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17698792577 RX 5688160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17623588858 RX 411281 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2504711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17079551249 RX 6063059 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17002444492 RX 411604 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2472735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17707974942 RX 5690080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17632749306 RX 411407 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2505434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17082229844 RX 6065123 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17005093241 RX 411733 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2473692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 234926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17717189835 RX 5692024 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17641942711 RX 411536 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2506167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17084947300 RX 6067139 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17007780046 RX 411859 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2474646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17726350372 RX 5693920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17651081375 RX 411665 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 961 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2506898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17087678767 RX 6069203 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17010479714 RX 411988 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2475603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17735546051 RX 5695840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17660255095 RX 411791 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2507624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17090437897 RX 6071267 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17013208521 RX 412117 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2476556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17744725676 RX 5697784 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17669413302 RX 411920 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1112 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1697 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2508374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17093513243 RX 6073283 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17016253089 RX 412243 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2477510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17753879301 RX 5699680 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17678545072 RX 412049 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2509112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 250924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17096241820 RX 6075347 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17018950744 RX 412372 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2478468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17763085669 RX 5701600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17687729469 RX 412175 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2509840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17098953314 RX 6077411 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17021630640 RX 412501 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2479420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17772261133 RX 5703544 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17696883532 RX 412304 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2510591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17101916880 RX 6079427 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17024563447 RX 412627 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2480374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17781416204 RX 5705440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17706016772 RX 412433 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2511335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17104857411 RX 6081491 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17027473624 RX 412756 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2481332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17790621264 RX 5707360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17715199884 RX 412559 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2512066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17107550090 RX 6083555 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17030137203 RX 412885 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2482285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17799807033 RX 5709304 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17724364223 RX 412688 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2512777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17110197526 RX 6085571 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17032754810 RX 413011 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2483240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17809002967 RX 5711200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17733538215 RX 412817 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2513502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17112869092 RX 6087635 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17035396099 RX 413140 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2484196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17818184306 RX 5713120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17742697634 RX 412943 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2514224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17115540338 RX 6089699 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17038037438 RX 413269 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2485151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17827363676 RX 5715064 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17751855580 RX 413072 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2514966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17118242422 RX 6091715 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17040708452 RX 413395 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2486105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 235966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17836550394 RX 5716960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17761020378 RX 413201 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2515708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17120938490 RX 6093779 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17043373518 RX 413524 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2487061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17845751125 RX 5718880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17770199149 RX 413327 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2516438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17123637404 RX 6095843 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17046041548 RX 413653 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2488015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17854915135 RX 5720824 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17779341770 RX 413456 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2517169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17126312497 RX 6097859 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17048685871 RX 413779 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2488970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17864089820 RX 5722720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17788494559 RX 413585 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2517905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 251948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17128983902 RX 6099923 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17051327225 RX 413908 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2489926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17873290743 RX 5724640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17797673518 RX 413711 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2518643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17132064490 RX 6101987 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17054377701 RX 414037 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2490879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17882444256 RX 5726584 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17806805661 RX 413840 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2519365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17134716422 RX 6104003 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17056999724 RX 414163 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2491837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17891656933 RX 5728480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17815996374 RX 413969 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2520095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17137431033 RX 6106067 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17059682529 RX 414292 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2492790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17900833058 RX 5730400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17825150627 RX 414095 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2520829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17140214237 RX 6108131 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17062436069 RX 414421 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2493742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17909984972 RX 5732344 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17834281181 RX 414224 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1018 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2521566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17142913416 RX 6110147 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17065104625 RX 414547 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2494701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17919192555 RX 5734240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17843466782 RX 414353 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 854 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2522314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17145734546 RX 6112211 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17067895586 RX 414676 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2495655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17928379012 RX 5736160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17852631314 RX 414479 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1089 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2523044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17148438462 RX 6114275 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17070569549 RX 414805 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2496608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17937571570 RX 5738104 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17861802418 RX 414608 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2523766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17151099663 RX 6116291 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17073198997 RX 414931 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2497564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 236926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17946769630 RX 5740000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17870979027 RX 414737 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2524484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17153807505 RX 6118355 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17075878317 RX 415060 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2498519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17955922470 RX 5741920 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17880109522 RX 414863 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2525215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17156478368 RX 6120419 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17078520142 RX 415189 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2499474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17965121685 RX 5743864 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17889287279 RX 414992 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2525930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17159174887 RX 6122435 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17081186695 RX 415315 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2500428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17974311615 RX 5745760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17898455773 RX 415121 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 929 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2526669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 252972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17161931611 RX 6124499 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17083912533 RX 415444 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2501384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17983469705 RX 5747680 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17907591508 RX 415247 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2527389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17164617441 RX 6126563 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17086568687 RX 415573 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2502340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 17992671800 RX 5749624 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17916772138 RX 415376 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 678 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2528105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253143/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17167268663 RX 6128579 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17089190720 RX 415699 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2503293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18001851041 RX 5751520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17925929963 RX 415505 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 724 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2528832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17169964241 RX 6130643 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17091855746 RX 415828 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2504249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18011009461 RX 5753440 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17935066071 RX 415631 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2529555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17172664685 RX 6132707 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17094526700 RX 415957 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2505204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18020207203 RX 5755384 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17944242358 RX 415760 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2530278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17175369541 RX 6134723 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17097202100 RX 416083 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2506158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18029403661 RX 5757280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17953417371 RX 415889 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2531002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17178018609 RX 6136787 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17099819792 RX 416212 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2507113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18038575257 RX 5759200 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17962566585 RX 416015 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2531716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17180708122 RX 6138851 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17102480397 RX 416341 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2508070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18047770374 RX 5761144 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17971740237 RX 416144 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2532437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17183402446 RX 6140867 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17105143951 RX 416467 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2509023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18056943471 RX 5763040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17980891925 RX 416273 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2533163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17186087696 RX 6142931 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17107797151 RX 416596 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2509977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 237965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18066126332 RX 5764960 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17990052385 RX 416399 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2533911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17188917261 RX 6144995 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17110595572 RX 416725 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2510934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18075341225 RX 5766904 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 17999245779 RX 416528 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1110 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2534637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17191586276 RX 6147011 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17113235454 RX 416851 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2511887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18084501266 RX 5768800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18008384439 RX 416657 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2535364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 253996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17194273828 RX 6149075 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17115893065 RX 416980 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2512845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18093697441 RX 5770720 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18017558175 RX 416783 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 916 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2536088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17197019651 RX 6151139 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17118609956 RX 417109 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2513798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18102877066 RX 5772664 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18026716389 RX 416912 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2536822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17199705298 RX 6153155 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17121266125 RX 417235 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2514751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18112030195 RX 5774560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18035848157 RX 417041 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2537541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17202406883 RX 6155219 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17123938611 RX 417364 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2515710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18121237005 RX 5776480 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18045032553 RX 417167 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2538278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17205097365 RX 6157283 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17126599251 RX 417493 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2516662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18130412469 RX 5778424 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18054186619 RX 417296 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2539003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254423/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17207753183 RX 6159299 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17129223807 RX 417619 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2517615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18139567071 RX 5780320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18063319858 RX 417425 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1184 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2539755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17210662742 RX 6161363 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17132102817 RX 417748 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2518574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18148772654 RX 5782240 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18072502971 RX 417551 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2540511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17213708569 RX 6163427 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17135116238 RX 417877 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2519527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18157958423 RX 5784184 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18081667310 RX 417680 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 877 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2541243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17216403716 RX 6165443 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17137780783 RX 418003 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2520481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18167153861 RX 5786080 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18090841303 RX 417809 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2541965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17219117924 RX 6167507 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17140464109 RX 418132 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2521437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 238925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18176335200 RX 5788000 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18100000724 RX 417935 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2542693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17221796012 RX 6169571 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17143112858 RX 418261 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2522393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18185515066 RX 5789944 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18109158683 RX 418064 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2543420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 254935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17224513394 RX 6171587 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17145800144 RX 418387 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2523346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18194701288 RX 5791840 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18118323465 RX 418193 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2544147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17227236584 RX 6173651 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17148493313 RX 418516 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2524302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18203902019 RX 5793760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18127502244 RX 418319 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2544889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17229929178 RX 6175715 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17151153918 RX 418645 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2525257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18213066525 RX 5795704 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18136644872 RX 418448 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2545620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17232684416 RX 6177731 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17153878254 RX 418771 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2526211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18222240714 RX 5797600 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18145797654 RX 418577 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2546392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17235659193 RX 6179795 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17156820444 RX 418900 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2527167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18231441610 RX 5799520 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18154976624 RX 418703 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1581 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2547125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17238338725 RX 6181859 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17159469158 RX 419029 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2528121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18240595592 RX 5801464 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18164108775 RX 418832 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2547844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17241075976 RX 6183875 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17162175675 RX 419155 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2529078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18249807800 RX 5803360 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18173299481 RX 418961 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 736 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2548572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17243739232 RX 6185939 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17164808062 RX 419284 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2530031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18258983952 RX 5805280 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18182453736 RX 419087 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2549310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17246453863 RX 6188003 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17167492354 RX 419413 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2530984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18268136362 RX 5807224 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18191584298 RX 419216 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2550031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255703/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17249167454 RX 6190019 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17170176665 RX 419539 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2531942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18277343449 RX 5809120 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18200769903 RX 419345 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2550754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17251836228 RX 6192083 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17172814971 RX 419668 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2532896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18286529906 RX 5811040 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18209934440 RX 419471 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2551476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17254567707 RX 6194147 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17175515595 RX 419797 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2533850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 239966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18295722960 RX 5812984 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18219105558 RX 419600 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2552191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 255959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17257263420 RX 6196163 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17178181647 RX 419923 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2534806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18304921020 RX 5814880 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18228282156 RX 419729 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2552910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17259950375 RX 6198227 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17180838212 RX 420052 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2535760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18314073364 RX 5816800 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18237412648 RX 419855 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2553631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17262622774 RX 6200291 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17183479546 RX 420181 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2536716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18323273075 RX 5818744 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18246590400 RX 419984 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2554359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17265286558 RX 6202307 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17186113535 RX 420307 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2537670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18332463005 RX 5820640 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18255758889 RX 420113 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 663 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2555082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17267935200 RX 6204371 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17188731187 RX 420436 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2538625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18341620572 RX 5822560 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18264894612 RX 420239 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2555804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17270608266 RX 6206435 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17191373968 RX 420565 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2539582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18350823136 RX 5824504 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18274075240 RX 420368 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 600 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2556544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17273282122 RX 6208451 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17194016779 RX 420691 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2540535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18360002377 RX 5826400 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18283233068 RX 420497 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1204 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2557317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17276320220 RX 6210515 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17197022740 RX 420820 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2541490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18369160355 RX 5828320 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18292369180 RX 420623 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1374 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2558056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17279060263 RX 6212579 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17199732266 RX 420949 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2542446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18378358593 RX 5830264 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18301545472 RX 420752 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2558789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 17281750783 RX 6214595 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17202392901 RX 421075 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2543400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 18387555051 RX 5832160 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18310720479 RX 420881 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 704 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2558992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 20 +UE 8379: ulsch_rounds 256778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 11 +UE 8379: MAC: TX 17282418248 RX 6217085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17203045784 RX 422001 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2544361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 240851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 18396799630 RX 5834264 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18319942989 RX 421158 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2559008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 256805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17282421008 RX 6219011 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17203045976 RX 422391 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2544867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 240932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 18401463095 RX 5837454 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18324587315 RX 422653 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2559899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 20 +UE 8379: ulsch_rounds 256892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17285774078 RX 6221285 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17206389377 RX 422904 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2545521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18403921084 RX 5839739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18327015381 RX 423163 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2560879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 256978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17294006978 RX 6223325 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17214602198 RX 423033 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2546251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18406617028 RX 5841683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18329681824 RX 423292 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2561857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17303187110 RX 6225365 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17223760848 RX 423159 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2546964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18409352854 RX 5843579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18332388216 RX 423421 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2562835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17312369612 RX 6227429 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17232921854 RX 423288 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2547685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18412090786 RX 5845499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18335096130 RX 423547 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2563814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17321555487 RX 6229469 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17242085732 RX 423417 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2548407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18414820986 RX 5847443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18337796664 RX 423676 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2564792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17330728899 RX 6231509 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17251237668 RX 423543 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2549119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18417559431 RX 5849339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18340506996 RX 423805 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2565769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17339901096 RX 6233573 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17260388394 RX 423672 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2549847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18420274616 RX 5851259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18343193196 RX 423931 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2566749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17349097468 RX 6235613 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17269562750 RX 423801 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2550553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18422975843 RX 5853203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18345865482 RX 424060 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2567727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17358264352 RX 6237653 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17278708171 RX 423927 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2551290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18425669868 RX 5855099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18348528896 RX 424189 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2568705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17367439237 RX 6239717 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17287861579 RX 424056 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2552004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18428351874 RX 5857019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18351181951 RX 424315 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1377 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2569684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17376639257 RX 6241757 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17297039582 RX 424185 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2552768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18431265031 RX 5858963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18354063224 RX 424444 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2570662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257830/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17385799805 RX 6243797 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17306178686 RX 424311 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2553492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18434012986 RX 5860859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18356781457 RX 424573 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1117 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2571641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 257916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17394961568 RX 6245861 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17315318990 RX 424440 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2554240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 241977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18436807482 RX 5862779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18359545672 RX 424699 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2572620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17404148532 RX 6247901 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17324483965 RX 424569 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2554970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18439561505 RX 5864723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18362271415 RX 424828 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1065 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2573596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17413324761 RX 6249941 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17333638719 RX 424695 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2555693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18442335363 RX 5866619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18365014977 RX 424957 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2574576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17422502076 RX 6252005 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17342794549 RX 424824 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2556427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18445047791 RX 5868539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18367698673 RX 425083 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1033 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2575554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17431675680 RX 6254045 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17351946677 RX 424953 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2557160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18447802243 RX 5870483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18370423320 RX 425212 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2576532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17440848373 RX 6256085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17361097410 RX 425079 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2557893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18450534386 RX 5872379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18373125261 RX 425341 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 987 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2577511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17450044057 RX 6258149 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17370271570 RX 425208 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2558613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18453272724 RX 5874299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18375835633 RX 425467 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2578489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17459217661 RX 6260189 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17379423707 RX 425337 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2559337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18455931159 RX 5876243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18378465011 RX 425596 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 682 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2579467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17468390162 RX 6262229 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17388574244 RX 425463 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2560048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18458574159 RX 5878139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18381079554 RX 425725 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 683 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2580445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17477575541 RX 6264293 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17397738126 RX 425592 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2560759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18461212931 RX 5880059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18383688650 RX 425851 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 664 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2581423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17486742425 RX 6266333 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17406883554 RX 425721 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2561483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18463901329 RX 5882003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18386346161 RX 425980 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2582403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17495913774 RX 6268373 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17416032933 RX 425847 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2562215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18466580700 RX 5883899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18388994710 RX 426109 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 904 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2583381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 258940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17505113490 RX 6270437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17425211118 RX 425976 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2562947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 242937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18469311877 RX 5885819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18391696746 RX 426235 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2584358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17514271350 RX 6272477 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17434347545 RX 426105 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2563676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18472008546 RX 5887763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18394364150 RX 426364 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2585339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17523442825 RX 6274517 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17443497047 RX 426231 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2564404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18474734081 RX 5889659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18397059227 RX 426493 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2586317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17532622765 RX 6276581 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17452655502 RX 426360 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2565132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18477446214 RX 5891579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18399741917 RX 426619 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1231 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2587294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17541809299 RX 6278621 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17461820534 RX 426489 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2565892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18480483816 RX 5893523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18402747693 RX 426748 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1926 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 637 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2588273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17550980837 RX 6280661 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17470970108 RX 426615 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2566616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18483326907 RX 5895419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18405560824 RX 426877 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2589251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17560154249 RX 6282725 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17480122054 RX 426744 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2567344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18486070218 RX 5897339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18408274721 RX 427003 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2590229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17569337135 RX 6284765 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17489283443 RX 426873 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2568069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18488748303 RX 5899283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18410923355 RX 427132 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2591208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17578516098 RX 6286805 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17498440428 RX 426999 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2568781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18491476614 RX 5901179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18413622347 RX 427261 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2592186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17587689702 RX 6288869 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17507592554 RX 427128 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2569516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18494193378 RX 5903099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18416307996 RX 427387 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 930 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2593164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17596878924 RX 6290909 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17516760273 RX 427257 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2570250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18496938261 RX 5905043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18419021798 RX 427516 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -52 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2594143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17606064607 RX 6292949 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17525923964 RX 427383 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2570972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18499622062 RX 5906939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18421676355 RX 427645 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 622 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2595121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 259964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17615225155 RX 6295013 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17535063065 RX 427512 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2571672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18502258636 RX 5908859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18424284419 RX 427771 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2596100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17624394535 RX 6297053 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17544210974 RX 427641 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2572390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 243978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18504943450 RX 5910803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18426940934 RX 427900 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2597079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17633588219 RX 6299093 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17553382652 RX 427767 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2573152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18507893029 RX 5912699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18429859302 RX 428029 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1391 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2598056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17642760416 RX 6301157 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17562533370 RX 427896 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2573859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18510543398 RX 5914619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18432480739 RX 428155 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2599035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17651920898 RX 6303197 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17571672395 RX 428025 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2574589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18513259274 RX 5916563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18435166899 RX 428284 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2600014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17661101526 RX 6305237 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17580831042 RX 428151 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2575303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18515948894 RX 5918459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18437827339 RX 428413 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2600992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17670284028 RX 6307301 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17589992056 RX 428280 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2576036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18518700596 RX 5920379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18440548586 RX 428539 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1010 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2601970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17679469407 RX 6309341 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17599155933 RX 428409 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2576786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18521529646 RX 5922323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18443346892 RX 428668 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1054 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1006 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2602949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17688643315 RX 6311381 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17608307878 RX 428535 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2577529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18524308602 RX 5924219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18446094810 RX 428797 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 949 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2603926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17697815512 RX 6313445 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17617458603 RX 428664 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2578257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18527055910 RX 5926139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18448813108 RX 428923 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2604905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17707011388 RX 6315485 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17626632963 RX 428793 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2578978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18529780180 RX 5928083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18451507163 RX 429052 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2605884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17716178768 RX 6317525 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17635778387 RX 428919 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2579707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18532518377 RX 5929979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18454214071 RX 429181 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1063 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2606862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 260988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17725353653 RX 6319589 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17644931792 RX 429048 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2580438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18535281826 RX 5931899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18456947159 RX 429307 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2607840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17734553177 RX 6321629 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17654109790 RX 429177 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2581161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 244938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18537988577 RX 5933843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18459625443 RX 429436 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2608819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17743714221 RX 6323669 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17663248891 RX 429303 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2581894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18540731558 RX 5935739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18462339235 RX 429565 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2609798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17752875984 RX 6325733 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17672389195 RX 429432 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2582625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18543448258 RX 5937659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18465026356 RX 429691 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2610776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17762062452 RX 6327773 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17681554159 RX 429561 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2583339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18546141195 RX 5939603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18467689765 RX 429820 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2611753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17771239177 RX 6329813 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17690708917 RX 429687 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2584078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18548873809 RX 5941499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18470391796 RX 429949 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 873 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2612733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17780416492 RX 6331877 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17699864754 RX 429816 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2584800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18551597376 RX 5943419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18473086362 RX 430075 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2613711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17789590096 RX 6333917 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17709016890 RX 429945 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2585531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18554299890 RX 5945363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18475758167 RX 430204 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2614689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17798762789 RX 6335957 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17718167622 RX 430071 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2586258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18557096972 RX 5947259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18478525932 RX 430333 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2615668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17807958473 RX 6338021 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17727341789 RX 430200 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2586982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18559830703 RX 5949179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18481230396 RX 430459 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2616646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17817132077 RX 6340061 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17736493917 RX 430329 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2587747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18562919832 RX 5951123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18484288112 RX 430588 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 937 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2617624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 261926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17826304578 RX 6342101 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17745644459 RX 430455 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2588485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18565686866 RX 5953019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18487024265 RX 430717 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2618602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262012/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17835489957 RX 6344165 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17754808336 RX 430584 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2589231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18568474700 RX 5954939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18489781079 RX 430843 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 992 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2619580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17844656841 RX 6346205 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17763953764 RX 430713 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2589964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18571199479 RX 5956883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18492476116 RX 430972 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2620560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17853828190 RX 6348245 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17773103145 RX 430839 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2590689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 245978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18573933953 RX 5958779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18495181016 RX 431101 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2621538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262268/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17863027906 RX 6350309 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17782281332 RX 430968 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2591419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18576652858 RX 5960699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18497869639 RX 431227 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2622515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17872185766 RX 6352349 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17791417756 RX 431097 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2592148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18579331176 RX 5962643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18500518243 RX 431356 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2623496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17881357241 RX 6354389 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17800567262 RX 431223 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2592887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18582047251 RX 5964539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18503203907 RX 431485 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2624474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17890537181 RX 6356453 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17809725722 RX 431352 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2593600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18584752638 RX 5966459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18505880664 RX 431611 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2625451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17899723715 RX 6358493 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17818890755 RX 431481 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2594332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18587437650 RX 5968403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18508535206 RX 431740 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2626430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17908895253 RX 6360533 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17828040332 RX 431607 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2595051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18590112801 RX 5970299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18511180856 RX 431869 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2627408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17918068665 RX 6362597 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17837192268 RX 431736 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2595770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18592852303 RX 5972219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18513890217 RX 431995 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2628386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17927251551 RX 6364637 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17846353673 RX 431865 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2596505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18595572399 RX 5974163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18516580357 RX 432124 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2629365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 262950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17936430514 RX 6366677 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17855510655 RX 431991 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2597224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18598338928 RX 5976059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18519317415 RX 432253 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 848 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2630343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17945604118 RX 6368741 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17864662790 RX 432120 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2597953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18601070994 RX 5977979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18522019381 RX 432379 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2631321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17954793340 RX 6370873 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17873830499 RX 432249 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2598684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18603806390 RX 5979923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18524725818 RX 432508 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2632300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17963979023 RX 6372913 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17882994186 RX 432375 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2599413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 246938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18606588875 RX 5981819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18527478147 RX 432637 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 945 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2633278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17973139571 RX 6374977 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17892133290 RX 432504 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2600138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18609278687 RX 5983739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18530137661 RX 432763 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1002 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2634257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17982308951 RX 6377017 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17901281206 RX 432633 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2600885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18612049250 RX 5985683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18532878169 RX 432892 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 756 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2635236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 17991502635 RX 6379057 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17910452878 RX 432759 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2601598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18614702187 RX 5987579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18535501611 RX 433021 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2636213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18000674832 RX 6381121 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17919603609 RX 432888 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2602317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18617386479 RX 5989499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18538156161 RX 433147 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2637192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18009835314 RX 6383161 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17928742628 RX 433017 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2603048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18620076609 RX 5991443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18540816641 RX 433276 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 828 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2638170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18019015446 RX 6385201 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17937901272 RX 433143 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2603755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18622753456 RX 5993339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18543464769 RX 433405 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2639149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18028198444 RX 6387265 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17947062282 RX 433272 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2604476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18625479593 RX 5995259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18546159801 RX 433531 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2640127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18037383823 RX 6389305 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17956226158 RX 433401 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2605196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18628207035 RX 5997203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18548858753 RX 433660 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 921 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2641105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 263974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18046557235 RX 6391437 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17965378100 RX 433527 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2605922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18630961383 RX 5999099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18551582934 RX 433789 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2642083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18055729928 RX 6393501 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17974528831 RX 433656 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2606648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18633650859 RX 6001019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18554243439 RX 433915 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2643062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18064925804 RX 6395541 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17983703193 RX 433785 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2607368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18636335581 RX 6002963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18556899448 RX 434044 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2644040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18074092688 RX 6397581 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 17992848614 RX 433911 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2608093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18639059289 RX 6004859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18559594004 RX 434173 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2645019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18083268069 RX 6399645 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18002002022 RX 434040 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2608828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 247977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18641764716 RX 6006779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18562269319 RX 434299 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1941 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2645997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18092467593 RX 6401685 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18011180022 RX 434169 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2609580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18644859295 RX 6008723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18565332938 RX 434428 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 676 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2646975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18101628141 RX 6403725 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18020319124 RX 434295 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2610303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18647591521 RX 6010619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18568034889 RX 434557 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2647955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18110790400 RX 6405789 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18029459430 RX 434424 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2611015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18650267562 RX 6012539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18570680489 RX 434683 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2648933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18119976868 RX 6407829 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18038624401 RX 434553 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2611748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18652956816 RX 6014483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18573339467 RX 434812 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1012 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2649909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18129153097 RX 6409869 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18047779164 RX 434679 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2612483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18655789384 RX 6016379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18576142209 RX 434941 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2650890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18138330908 RX 6411933 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18056934989 RX 434808 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2613197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18658483878 RX 6018299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18578807090 RX 435067 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2651868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18147504512 RX 6413973 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18066087112 RX 434937 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2613939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18661184756 RX 6020243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18581477438 RX 435196 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2652845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 264998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18156676709 RX 6416013 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18075237847 RX 435063 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2614649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18663876456 RX 6022139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18584140847 RX 435325 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2653825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18165872889 RX 6418077 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18084412013 RX 435192 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2615365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18666600339 RX 6024059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18586835438 RX 435451 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2654803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18175046493 RX 6420117 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18093564146 RX 435321 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2616086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18669313037 RX 6026003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18589518604 RX 435580 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 868 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2655780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18184218498 RX 6422157 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18102714685 RX 435447 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2616815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18672030538 RX 6027899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18592205755 RX 435709 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2656759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18193404373 RX 6424221 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18111878562 RX 435576 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2617533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 248937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18674759147 RX 6029819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18594904276 RX 435835 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1573 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2657737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18202571257 RX 6426261 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18121023986 RX 435705 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2618283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18677839050 RX 6031763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18597952069 RX 435964 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1143 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2658716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18211742110 RX 6428301 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18130173365 RX 435831 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2619002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18680567532 RX 6033659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18600651081 RX 436093 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2659695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18220942322 RX 6430365 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18139351555 RX 435960 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2619767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18683672723 RX 6035579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18603725099 RX 436219 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2660672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18230100182 RX 6432405 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18148487978 RX 436089 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2620486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18686369797 RX 6037523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18606392488 RX 436348 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2661652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18239271161 RX 6434445 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18157637482 RX 436215 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2621205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18689071487 RX 6039419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18609065280 RX 436477 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2662631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18248451597 RX 6436509 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18166795946 RX 436344 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2621935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18691772543 RX 6041339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18611736069 RX 436603 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 979 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2663608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 265938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18257638131 RX 6438549 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18175960979 RX 436473 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2622660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18694529945 RX 6043283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18614464696 RX 436732 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2664586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18266809173 RX 6440589 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18185110548 RX 436599 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2623377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18697259862 RX 6045179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18617165150 RX 436861 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1066 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 999 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2665565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18275983081 RX 6442653 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18194262490 RX 436728 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2624121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18700088423 RX 6047099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18619961954 RX 436987 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2666543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18285165967 RX 6444693 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18203423879 RX 436857 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2624833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18702803074 RX 6049043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18622645675 RX 437116 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2667521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18294344434 RX 6446733 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18212580858 RX 436983 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2625563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18705492547 RX 6050939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18625304673 RX 437245 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2668500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18303518534 RX 6448797 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18221732996 RX 437112 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2626291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18708232159 RX 6052859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18628014153 RX 437371 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 703 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2669478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18312707756 RX 6450837 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18230900710 RX 437241 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2627002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 249978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18710883136 RX 6054803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18630636463 RX 437500 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 789 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2670456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18321892943 RX 6452877 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18240064395 RX 437367 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2627712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18713575698 RX 6056699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18633299922 RX 437629 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2671435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18331053987 RX 6454941 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18249203493 RX 437496 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2628468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18716662233 RX 6058619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18636355655 RX 437755 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2672414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18340223367 RX 6456981 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18258351407 RX 437625 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2629171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18719320269 RX 6060563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18638985464 RX 437884 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 742 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2673392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18349416555 RX 6459021 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18267523082 RX 437751 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2629902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18722032568 RX 6062459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18641668199 RX 438013 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2674370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18358589248 RX 6461085 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18276673818 RX 437880 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2630622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18724720577 RX 6064379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18644327162 RX 438139 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2675349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 266962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18367749730 RX 6463125 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18285812843 RX 438009 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2631346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18727385298 RX 6066323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18646962433 RX 438268 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2676327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18376929862 RX 6465165 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18294971487 RX 438135 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2632066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18730059693 RX 6068219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18649606636 RX 438397 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2677306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18386112860 RX 6467229 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18304132497 RX 438264 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2632804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18732777635 RX 6070139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18652293802 RX 438523 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2678284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18395298239 RX 6469269 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18313296378 RX 438393 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2633524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18735492997 RX 6072083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18654979476 RX 438652 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2679262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18404471651 RX 6471309 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18322448313 RX 438519 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2634249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18738209712 RX 6073979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18657666607 RX 438781 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 915 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2680240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18413644344 RX 6473373 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18331599051 RX 438648 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2634988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18740951936 RX 6075899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18660377510 RX 438907 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1146 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2681219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18422840220 RX 6475413 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18340773401 RX 438777 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2635728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 250938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18743788198 RX 6077843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18663183261 RX 439036 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 726 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2682197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18432007104 RX 6477453 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18349918824 RX 438903 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2636441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18746422968 RX 6079739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18665788912 RX 439165 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2683176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18441182485 RX 6479517 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18359072232 RX 439032 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2637168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18749171564 RX 6081659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18668507150 RX 439291 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2684154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18450382009 RX 6481557 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18368250232 RX 439161 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2637883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18751875851 RX 6083603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18671181924 RX 439420 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 799 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2685132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18459542557 RX 6483597 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18377389334 RX 439287 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2638619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18754612786 RX 6085499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18673888346 RX 439549 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1952 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2686112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18468704816 RX 6485661 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18386529640 RX 439416 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2639353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18757641423 RX 6087419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18676887298 RX 439675 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 646 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 931 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2687090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 267986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18477891284 RX 6487701 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18395694612 RX 439545 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2640062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18760390562 RX 6089363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18679607073 RX 439804 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2688066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18487067513 RX 6489741 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18404849365 RX 439671 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2640802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18763114467 RX 6091259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18682298660 RX 439933 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2689047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18496245324 RX 6491805 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18414005197 RX 439800 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2641518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18765794743 RX 6093179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18684950208 RX 440059 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2690025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18505418928 RX 6493845 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18423157320 RX 439929 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2642240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18768458516 RX 6095123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18687584007 RX 440188 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 751 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2691002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18514591125 RX 6495885 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18432308054 RX 440055 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2642959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18771148239 RX 6097019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18690243981 RX 440317 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2691982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18523787305 RX 6497949 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18441482217 RX 440184 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2643680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18773875073 RX 6098939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18692942052 RX 440443 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2692960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18532960909 RX 6499989 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18450634342 RX 440313 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2644412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18776539611 RX 6100883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18695575826 RX 440572 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 667 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2693937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18542132914 RX 6502029 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18459784870 RX 440439 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2645145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 251978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18779251472 RX 6102779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18698258566 RX 440701 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2694916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18551318789 RX 6504093 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18468948752 RX 440568 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2645887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18781952964 RX 6104699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18700930386 RX 440827 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2695894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18560485673 RX 6506133 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18478094173 RX 440697 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2646605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18784635528 RX 6106643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18703583877 RX 440956 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 943 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2696873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18569656526 RX 6508173 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18487243560 RX 440823 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2647340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 96c8: MAC: TX 18787457652 RX 6108539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18706376330 RX 441085 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 948 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1914 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -59 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2697851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 268926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18578846241 RX 6510267 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18496411278 RX 441026 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2647884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 26 +UE 96c8: ulsch_rounds 252297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 18 +UE 96c8: MAC: TX 18789754978 RX 6111293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18708647699 RX 442061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 252 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -62 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2698803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18587767281 RX 6512439 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18505311321 RX 441306 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2647896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: ulsch_rounds 252309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 18789758597 RX 6112685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18708647699 RX 442061 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2699195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18589445706 RX 6516078 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18506963685 RX 443120 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2648356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: ulsch_rounds 252378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18791171406 RX 6115286 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18710054850 RX 442904 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2699910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18592113294 RX 6518094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18509602045 RX 443246 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2649319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18797703024 RX 6117329 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18716570366 RX 443118 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2700658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18594873190 RX 6520158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18512330306 RX 443375 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2650288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18807002822 RX 6119225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18725847478 RX 443247 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 677 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2701405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18597598893 RX 6522222 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18515025493 RX 443504 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2651254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18816317504 RX 6121145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18735140436 RX 443373 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2702149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18600309674 RX 6524238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18517705399 RX 443630 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2652221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18825643895 RX 6123089 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18744445070 RX 443502 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2702884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18603035394 RX 6526302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18520400100 RX 443759 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2653190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18834938446 RX 6124985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18753716951 RX 443631 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2703622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18605715983 RX 6528366 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18523048804 RX 443888 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2654156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18844245511 RX 6126905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18763002308 RX 443757 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 606 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2704359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269703/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18608387359 RX 6530382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18525690053 RX 444014 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2655123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 252942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18853571710 RX 6128849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18772306758 RX 443886 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2705082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18611092246 RX 6532446 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18528365473 RX 444143 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2656092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18862866591 RX 6130745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18781579014 RX 444015 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2705817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18613778700 RX 6534510 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18531021572 RX 444272 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2657058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18872179800 RX 6132665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18790870499 RX 444141 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 707 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2706576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 269959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18616476856 RX 6536526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18533688085 RX 444398 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2658025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18881512719 RX 6134609 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18800181647 RX 444270 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 648 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2707317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18619156025 RX 6538590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18536334836 RX 444527 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2658992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18890810279 RX 6136505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18809456535 RX 444399 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2708067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18621902991 RX 6540654 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18539050746 RX 444656 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2659960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18900120863 RX 6138425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18818745392 RX 444525 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 823 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2708816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18624693243 RX 6542670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18541809148 RX 444782 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2660927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18909440918 RX 6140369 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18828043706 RX 444654 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 960 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 893 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2709565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18627460348 RX 6544734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18544543818 RX 444911 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2661894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18918760240 RX 6142265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18837340317 RX 444783 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2710323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18630488844 RX 6546798 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18547542339 RX 445040 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2662861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18928080103 RX 6144185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18846638445 RX 444909 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 633 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2711059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18633207050 RX 6548814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18550229134 RX 445166 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2663828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18937387102 RX 6146129 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18855923731 RX 445038 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2711802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18635911693 RX 6550878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18552902056 RX 445295 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2664796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18946688247 RX 6148025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18865202192 RX 445167 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2712544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18638630681 RX 6552942 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18555587770 RX 445424 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2665763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18956014830 RX 6149945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18874507023 RX 445293 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 720 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2713281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18641352826 RX 6554958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18558279457 RX 445550 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2666730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18965314917 RX 6151889 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18883785414 RX 445422 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2714012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18644041589 RX 6557022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18560937008 RX 445679 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2667698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 253982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18974616200 RX 6153785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18893064062 RX 445551 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 737 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2714745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18646748478 RX 6559086 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18563613910 RX 445808 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2668665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18983949119 RX 6155705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18902375218 RX 445677 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 687 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2715495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 270983/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18649489442 RX 6561102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18566324412 RX 445934 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2669631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 18993240182 RX 6157649 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18911644610 RX 445806 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2716245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18652170001 RX 6563166 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18568973622 RX 446063 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2670600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19002550735 RX 6159545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18920932456 RX 445935 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 886 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2717004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18654952871 RX 6565230 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18571724689 RX 446192 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2671567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19011883462 RX 6161465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18930243413 RX 446061 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2717747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18657650170 RX 6567246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18574392669 RX 446318 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2672532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19021194367 RX 6163409 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18939532601 RX 446190 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2718494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18660421262 RX 6569310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18577133302 RX 446447 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2673500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19030501670 RX 6165305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18948817705 RX 446319 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2719219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18663089725 RX 6571374 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18579771702 RX 446576 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2674469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19039817997 RX 6167225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18958111808 RX 446445 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 719 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 685 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2719954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18665771109 RX 6573390 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18582423390 RX 446702 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2675434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19049130183 RX 6169169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18967402270 RX 446574 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1620 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2720738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18668940115 RX 6575454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18585559807 RX 446831 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2676402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19058456878 RX 6171065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18976706719 RX 446703 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 996 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2721477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18671646089 RX 6577518 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18588235247 RX 446960 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2677370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19067757845 RX 6172985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18985985486 RX 446829 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2722221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18674400316 RX 6579534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18590958056 RX 447086 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2678336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19077057998 RX 6174929 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 18995263949 RX 446958 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2722971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18677112855 RX 6581598 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18593639359 RX 447215 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2679304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 254942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19086384858 RX 6176825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19004568586 RX 447087 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2723695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 271922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18679766464 RX 6583662 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18596261407 RX 447344 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2680272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19095685798 RX 6178745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19013847365 RX 447213 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 628 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2724425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18682478133 RX 6585678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18598941298 RX 447470 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2681238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19104992479 RX 6180689 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19023132339 RX 447342 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1441 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2725192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18685420948 RX 6587742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18601852376 RX 447599 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2682206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19114326086 RX 6182585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19032443684 RX 447471 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2725931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18688120492 RX 6589806 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18604522814 RX 447728 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2683173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19123625454 RX 6184505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19041720865 RX 447597 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 700 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2726672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272263/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18690827599 RX 6591822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18607198730 RX 447854 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2684140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19132927014 RX 6186449 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19051000725 RX 447726 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2727403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18693486846 RX 6593886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18609828228 RX 447983 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2685108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19142260429 RX 6188345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19060311875 RX 447855 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 592 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2728159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18696186194 RX 6595950 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18612494771 RX 448112 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2686074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19151579447 RX 6190265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19069608665 RX 447981 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2728896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18698894404 RX 6597966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18615171723 RX 448238 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2687041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19160892974 RX 6192209 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19078900451 RX 448110 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2729632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18701610670 RX 6600030 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18617857567 RX 448367 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2688009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19170192276 RX 6194105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19088177563 RX 448239 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2730369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18704336411 RX 6602094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18620553695 RX 448496 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2688976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19179507454 RX 6196025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19097470522 RX 448365 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2731112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18707032204 RX 6604110 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18623218791 RX 448622 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2689943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19188833845 RX 6197969 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19106775158 RX 448494 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2731852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18709722476 RX 6606174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18625877904 RX 448751 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2690911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19198127873 RX 6199865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19116047034 RX 448623 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2732604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 272946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18712562296 RX 6608238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18628686729 RX 448880 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2691878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 255981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19207435407 RX 6201785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19125332395 RX 448749 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1017 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1669 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2733366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18715630360 RX 6610254 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18631723802 RX 449006 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2692845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19216761606 RX 6203729 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19134636835 RX 448878 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2734111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18718290859 RX 6612318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18634353280 RX 449135 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2693813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19226056045 RX 6205625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19143909096 RX 449007 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2734864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18721011353 RX 6614382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18637040481 RX 449264 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2694780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19235369750 RX 6207545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19153200593 RX 449133 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 683 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2735608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18723698402 RX 6616398 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18639696595 RX 449390 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2695747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19244702669 RX 6209489 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19162511737 RX 449262 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2736361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18726457873 RX 6618462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18642425427 RX 449519 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2696713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19253999733 RX 6211385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19171786625 RX 449391 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2737098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18729149470 RX 6620526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18645086012 RX 449648 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2697682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19263310813 RX 6213305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19181075484 RX 449517 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 727 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2737853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273543/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18731822816 RX 6622542 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18647727356 RX 449774 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2698649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19272630868 RX 6215249 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19190373801 RX 449646 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 652 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2738590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18734516249 RX 6624606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18650390920 RX 449903 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2699615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19281949694 RX 6217145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19199670401 RX 449775 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2739343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18737235140 RX 6626670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18653078166 RX 450032 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2700583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19291270053 RX 6219065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19208968533 RX 449901 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2740096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18740005815 RX 6628686 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18655818343 RX 450158 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2701550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19300577052 RX 6221009 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19218253823 RX 450030 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2740834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18742724917 RX 6630750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18658506105 RX 450287 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2702517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19309877674 RX 6222905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19227532282 RX 450159 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 696 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2741570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 273970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18745404251 RX 6632814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18661154919 RX 450416 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2703485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 256941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19319204726 RX 6224825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19236837121 RX 450285 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2742310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18748078685 RX 6634830 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18663799202 RX 450542 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2704452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19328504813 RX 6226769 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19246115506 RX 450414 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 716 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2743045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18750797059 RX 6636894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18666486428 RX 450671 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2705419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19337805654 RX 6228665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19255394153 RX 450543 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 741 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2743786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18753518991 RX 6638958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18669176688 RX 450800 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2706387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19347139069 RX 6230585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19264705304 RX 450669 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 984 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2744553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18756317522 RX 6640974 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18671944022 RX 450926 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2707353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19356430132 RX 6232529 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19273974691 RX 450798 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2745290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18758990651 RX 6643038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18674585361 RX 451055 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2708321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19365740189 RX 6234425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19283262541 RX 450927 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 567 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2746038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18761666855 RX 6645102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18677231091 RX 451184 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2709289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19375073412 RX 6236345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19292573507 RX 451053 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2746786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18764346154 RX 6647118 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18679879825 RX 451310 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2710254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19384384317 RX 6238289 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19301862698 RX 451182 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 651 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2747533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274652/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18767001717 RX 6649182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18682504401 RX 451439 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2711221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19393691124 RX 6240185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19311147787 RX 451311 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 669 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2748261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18769676849 RX 6651246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18685149160 RX 451568 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2712191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19403007947 RX 6242105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19320441891 RX 451437 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 687 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2749002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18772395737 RX 6653262 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18687836431 RX 451694 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2713156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19412320133 RX 6244049 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19329732355 RX 451566 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2749753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18775109331 RX 6655326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18690519246 RX 451823 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2714123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19421646332 RX 6245945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19339036802 RX 451695 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 709 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2750489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 274995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18777832140 RX 6657506 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18693210963 RX 451952 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2715092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19430947741 RX 6247865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19348315573 RX 451821 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2751217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18780496179 RX 6659522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18695843380 RX 452078 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2716058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 257982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19440247894 RX 6249809 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19357594024 RX 451950 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 661 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2751966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18783212408 RX 6661586 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18698527702 RX 452207 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2717025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19449574285 RX 6251705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19366898666 RX 452079 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2752705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18785948234 RX 6663650 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18701232732 RX 452336 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2717994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19458875748 RX 6253625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19376177445 RX 452205 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2753444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18788646476 RX 6665666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18703900747 RX 452462 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2718960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19468182429 RX 6255569 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19385462415 RX 452334 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 717 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2754188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18791349271 RX 6667730 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18706573253 RX 452591 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2719927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19477515540 RX 6257465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19394773756 RX 452463 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2754923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18794051122 RX 6669794 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18709244267 RX 452720 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2720895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19486815404 RX 6259385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19404050948 RX 452589 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 734 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2755666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18796793799 RX 6671810 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18711955210 RX 452846 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2721862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19496116964 RX 6261329 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19413330806 RX 452718 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2756424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18799597500 RX 6673874 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18714726985 RX 452975 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2722829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19505449883 RX 6263225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19422641957 RX 452847 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2757202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18802680234 RX 6675938 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18717777421 RX 453104 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2723796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19514769397 RX 6265145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19431938754 RX 452973 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 744 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2757937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18805364387 RX 6677954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18720430631 RX 453230 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2724763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19524082924 RX 6267089 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19441230554 RX 453102 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 692 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2758680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 275933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18808062812 RX 6680018 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18723098636 RX 453359 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2725730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19533381730 RX 6268985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19450507661 RX 453231 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2759438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18810785057 RX 6682082 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18725788856 RX 453488 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2726698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19542697350 RX 6270905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19459800625 RX 453357 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1406 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2760206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18813731358 RX 6684098 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18728702928 RX 453614 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2727665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 258942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19552023741 RX 6272849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19469105263 RX 453486 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2760938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18816509972 RX 6686162 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18731452508 RX 453743 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2728632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19561317300 RX 6274745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19478377135 RX 453615 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2761675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18819220349 RX 6688226 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18734132369 RX 453872 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2729600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19570625357 RX 6276665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19487662503 RX 453741 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2762428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18821963695 RX 6690242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18736843352 RX 453998 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2730567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19579951556 RX 6278609 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19496966951 RX 453870 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 611 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2763156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18824617309 RX 6692306 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18739466872 RX 454127 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2731534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19589245499 RX 6280505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19506239204 RX 453999 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2763901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18827323802 RX 6694370 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18742142257 RX 454256 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2732502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19598559700 RX 6282425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19515530691 RX 454125 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2764647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18830010985 RX 6696386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18744798391 RX 454382 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2733469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19607892619 RX 6284369 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19524841845 RX 454254 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2765384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18832717877 RX 6698450 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18747473806 RX 454511 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2734434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19617189187 RX 6286265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19534116716 RX 454383 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2766113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18835393450 RX 6700514 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18750119611 RX 454640 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2735403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19626500267 RX 6288185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19543405586 RX 454509 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 772 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2766855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18838112261 RX 6702530 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18752806862 RX 454766 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2736371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19635820818 RX 6290129 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19552703902 RX 454638 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2767637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 276957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18841349288 RX 6704594 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18756011621 RX 454895 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2737336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19645139148 RX 6292025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19562000499 RX 454767 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2225 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 981 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2768386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18844155337 RX 6706658 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18758786375 RX 455024 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2738304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19654459480 RX 6293945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19571298619 RX 454893 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 721 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2769117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18846834894 RX 6708674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18761436155 RX 455150 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2739272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19663766948 RX 6295889 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19580583913 RX 455022 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 612 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2769847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18849524817 RX 6710738 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18764095784 RX 455279 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2740238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 259982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19673067101 RX 6297785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19589862367 RX 455151 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 743 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2770590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18852220402 RX 6712802 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18766759358 RX 455408 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2741206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19682394180 RX 6299705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19599167194 RX 455277 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 687 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2771333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18854915912 RX 6714818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18769424394 RX 455534 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2742174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19691694763 RX 6301649 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19608445575 RX 455406 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2772072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18857634715 RX 6716882 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18772111700 RX 455663 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2743140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19700995108 RX 6303545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19617724218 RX 455535 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 671 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2772802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18860280158 RX 6718946 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18774727845 RX 455792 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2744108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19710328523 RX 6305465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19627035376 RX 455661 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 693 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2773543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18863033079 RX 6720962 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18777447710 RX 455918 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2745075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19719620082 RX 6307409 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19636304762 RX 455790 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2774271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18865726263 RX 6723026 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18780111299 RX 456047 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2746042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19728929643 RX 6309305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19645592606 RX 455919 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 684 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2775010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18868489484 RX 6725090 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18782844522 RX 456176 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2747010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19738262866 RX 6311225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19654903576 RX 456045 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 885 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2775759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18871222528 RX 6727106 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18785546127 RX 456302 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2747976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19747574267 RX 6313169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19664192771 RX 456174 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 658 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2776493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 277981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18873885740 RX 6729170 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18788179010 RX 456431 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2748943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19756881074 RX 6315065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19673477870 RX 456303 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 730 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2777244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18876601944 RX 6731234 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18790863302 RX 456560 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2749912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19766197374 RX 6316985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19682771964 RX 456429 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 860 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2777990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18879384487 RX 6733250 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18793615781 RX 456686 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2750878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19775510029 RX 6318929 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19692062433 RX 456558 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 856 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2105 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2778784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18882602480 RX 6735314 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18796801154 RX 456815 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2751845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 260942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19784836228 RX 6320825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19701366874 RX 456687 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 667 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2779525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18885306107 RX 6737378 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18799473645 RX 456944 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2752813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19794137195 RX 6322745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19710645650 RX 456813 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1053 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2780301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18888094218 RX 6739394 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18802229123 RX 457070 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2753780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19803437844 RX 6324689 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19719924097 RX 456942 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 690 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2781037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18890800132 RX 6741458 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18804904528 RX 457199 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2754747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19812764235 RX 6326585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19729228735 RX 457071 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 725 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2781777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18893483871 RX 6743522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18807557723 RX 457328 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2755715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19822065202 RX 6328505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19738507508 RX 457197 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2782526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18896210175 RX 6745538 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18810252414 RX 457454 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2756682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19831372379 RX 6330449 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19747792488 RX 457326 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2783265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18898923725 RX 6747602 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18812935284 RX 457583 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2757649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19840705490 RX 6332345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19757103837 RX 457455 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 818 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2784036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18901708481 RX 6749666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18815687307 RX 457712 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2758616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19850004858 RX 6334265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19766381016 RX 457581 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 785 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2784775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 278920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18904434860 RX 6751682 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18818382474 RX 457838 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2759584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19859306914 RX 6336209 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19775660874 RX 457710 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2785538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18907230946 RX 6753746 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18821146784 RX 457967 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2760551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19868639833 RX 6338105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19784972021 RX 457839 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1018 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2786294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18909964940 RX 6755810 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18823848439 RX 458096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2761517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19877958824 RX 6340025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19794268812 RX 457965 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 726 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2787035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18912682254 RX 6757826 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18826535675 RX 458222 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2762485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19887272820 RX 6341969 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19803560615 RX 458094 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2787770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18915383010 RX 6759890 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18829207105 RX 458351 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2763452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19896571626 RX 6343865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19812837716 RX 458223 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 835 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2788513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18918075904 RX 6761954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18831869147 RX 458480 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2764419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 261981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19905886804 RX 6345785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19822130678 RX 458349 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 697 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 702 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2789253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18920773586 RX 6763970 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18834535650 RX 458606 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2765387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19915213691 RX 6347729 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19831435322 RX 458478 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2789999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18923496410 RX 6766034 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18837227352 RX 458735 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2766354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19924507250 RX 6349625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19840707190 RX 458607 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2790740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18926169251 RX 6768098 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18839870158 RX 458864 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2767321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19933814811 RX 6351545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19849992542 RX 458733 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 698 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2791497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18928943406 RX 6770114 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18842612248 RX 458990 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2768289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19943141506 RX 6353489 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19859296986 RX 458862 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 869 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2037 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2792246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18932097921 RX 6772178 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18845736804 RX 459119 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2769256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19952435449 RX 6355385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19868569233 RX 458991 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2792986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18934903033 RX 6774242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18848511583 RX 459248 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2770223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19961749154 RX 6357305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19877860715 RX 459117 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 972 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2793741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 279944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18937606905 RX 6776258 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18851184009 RX 459374 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2771191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19971082569 RX 6359249 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19887171872 RX 459246 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 710 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 711 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2794472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18940307381 RX 6778322 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18853854542 RX 459503 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2772156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19980379137 RX 6361145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19896446753 RX 459375 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2795214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18943040261 RX 6780386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18856557084 RX 459632 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2773124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19989689721 RX 6363065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19905735614 RX 459501 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 764 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2795968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18945824499 RX 6782402 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18859309543 RX 459758 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2774093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 19999010714 RX 6365009 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19915033931 RX 459630 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 948 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2796712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18948553397 RX 6784466 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18862008660 RX 459887 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2775058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20008329044 RX 6366905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19924330532 RX 459759 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 733 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2797450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18951266904 RX 6786530 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18864691475 RX 460016 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2776025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 262941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20017648907 RX 6368825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19933628657 RX 459885 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 677 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2798191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18953916027 RX 6788546 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18867309122 RX 460142 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2776994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20026956898 RX 6370769 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19942913952 RX 460014 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 667 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2798930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18956580795 RX 6790610 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18869943071 RX 460271 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2777960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20036257051 RX 6372665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19952192405 RX 460143 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 635 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2799709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18959554030 RX 6792674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18872883804 RX 460400 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2778927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20045583634 RX 6374585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19961497236 RX 460269 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1468 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2800452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18962279559 RX 6794690 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18875578525 RX 460526 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2779896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20054884713 RX 6376529 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19970775622 RX 460398 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2801202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18964979386 RX 6796754 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18878245033 RX 460655 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2780862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20064185058 RX 6378425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19980054274 RX 460527 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2801960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18967695465 RX 6798818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18880929354 RX 460784 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2781829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20073517977 RX 6380345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19989365422 RX 460653 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 778 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1665 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2802722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 280968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18970746234 RX 6800834 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18883949630 RX 460910 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2782797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20082810032 RX 6382289 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 19998634822 RX 460782 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 825 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2803479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18973518998 RX 6802898 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18886690794 RX 461039 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2783764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20092119593 RX 6384185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20007922668 RX 460911 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2804218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 18976250874 RX 6805032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18889392957 RX 461237 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2784731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20101452320 RX 6386105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20017233630 RX 461037 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 651 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2804237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: ulsch_rounds 281172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 18976258297 RX 6807265 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18889393613 RX 462061 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2785697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 96c8: MAC: TX 20110753666 RX 6388133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20026512350 RX 461317 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 28 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2804287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 281207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 10 +UE 8379: MAC: TX 18976330426 RX 6809382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18889463012 RX 462712 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2786174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 263831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20114956160 RX 6391450 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20030695190 RX 462990 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2805259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 22 +UE 8379: ulsch_rounds 281297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 18980370725 RX 6811566 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18893492214 RX 462984 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2786874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20117578044 RX 6393562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20033287594 RX 463268 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2806240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 18988997932 RX 6813630 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18902098616 RX 463113 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2787602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 263997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20120325266 RX 6395482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20036003964 RX 463394 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2807218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 18998171536 RX 6815646 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18911250739 RX 463239 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2788324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20123037743 RX 6397426 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20038687170 RX 463523 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2808195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19007343733 RX 6817710 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18920401461 RX 463368 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2789043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20125711306 RX 6399322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20041331343 RX 463652 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2809175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19016539913 RX 6819774 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18929575628 RX 463497 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2789759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20128396099 RX 6401242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20043987327 RX 463778 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2810153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19025713517 RX 6821790 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18938727754 RX 463623 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2790483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20131101831 RX 6403186 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20046664074 RX 463907 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1490 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2811130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19034885522 RX 6823854 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18947878287 RX 463752 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2791239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20134016191 RX 6405082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20049549377 RX 464036 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2812109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19044071397 RX 6825918 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18957042165 RX 463881 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2791985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20136741965 RX 6407002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20052244459 RX 464162 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 840 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 679 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2813087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 281980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19053238281 RX 6827934 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18966187597 RX 464007 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2792698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20139400585 RX 6408946 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20054873792 RX 464291 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 953 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2814066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19062409134 RX 6829998 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18975336970 RX 464136 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2793468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20142391185 RX 6410842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20057833656 RX 464420 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1527 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2815045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19071609346 RX 6832062 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18984515159 RX 464265 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2794198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20145156324 RX 6412762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20060569708 RX 464546 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 935 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -55 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2816022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19080767206 RX 6834078 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 18993651583 RX 464391 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2794919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20147842416 RX 6414706 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20063225767 RX 464675 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 962 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2817002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19089938185 RX 6836142 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19002801090 RX 464520 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2795661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20150689776 RX 6416602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20066043344 RX 464804 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1143 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2817981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19099118621 RX 6838206 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19011959545 RX 464649 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2796383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 264957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20153407208 RX 6418522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20068730480 RX 464930 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2818958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19108305155 RX 6840222 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19021124575 RX 464775 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2797121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20156164378 RX 6420466 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20071456138 RX 465059 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1064 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2819936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19117476197 RX 6842286 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19030274150 RX 464904 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2797849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20158945698 RX 6422362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20074208497 RX 465188 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2820915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19126650105 RX 6844350 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19039426091 RX 465033 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2798581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20161670356 RX 6424282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20076903073 RX 465314 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 674 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2821893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19135832991 RX 6846366 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19048587480 RX 465159 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2799303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20164340672 RX 6426226 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20079543806 RX 465443 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -54 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2822871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19145011458 RX 6848430 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19057744459 RX 465288 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2800023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20167065654 RX 6428122 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20082238848 RX 465572 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 810 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2823850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 282919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19154185558 RX 6850494 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19066896597 RX 465417 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2800754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20169785523 RX 6430042 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20084928998 RX 465698 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2824828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19163374780 RX 6852510 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19076064311 RX 465543 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2801493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20172848052 RX 6431986 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20087962501 RX 465827 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 623 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2825806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19172559967 RX 6854574 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19085227996 RX 465672 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2802221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20175503235 RX 6433882 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20090587889 RX 465956 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2826785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19181721011 RX 6856638 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19094367094 RX 465801 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2802937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20178164906 RX 6435802 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20093220241 RX 466082 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2827764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19190890391 RX 6858654 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19103515008 RX 465927 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2803659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20180858576 RX 6437746 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20095883675 RX 466211 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1898 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2828742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19200083579 RX 6860718 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19112686683 RX 466056 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2804419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20183979103 RX 6439642 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20098974030 RX 466340 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 822 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2829720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19209256272 RX 6862782 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19121837419 RX 466185 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2805151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20186720463 RX 6441562 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20101684898 RX 466466 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 800 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2830699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19218416754 RX 6864798 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19130976444 RX 466311 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2805870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 265998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20189415643 RX 6443506 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20104349739 RX 466595 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2831677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19227596886 RX 6866862 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19140135088 RX 466440 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2806590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20192141794 RX 6445402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20107045762 RX 466724 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2832656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19236779884 RX 6868926 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19149296098 RX 466569 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2807313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20194932654 RX 6447322 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20109805536 RX 466850 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1097 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2833634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19245965263 RX 6870942 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19158459979 RX 466695 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2808042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20197700432 RX 6449266 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20112542584 RX 466979 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2834612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19255138675 RX 6873006 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19167611914 RX 466824 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2808769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20200413688 RX 6451162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20115225770 RX 467108 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 747 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2835590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 283943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19264311368 RX 6875070 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19176762652 RX 466953 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2809509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20203116450 RX 6453082 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20117898131 RX 467234 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 916 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2836569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19273507244 RX 6877086 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19185937002 RX 467079 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2810229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20205805701 RX 6455026 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20120558546 RX 467363 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2837547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19282674128 RX 6879150 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19195082425 RX 467208 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2810954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20208502065 RX 6456922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20123224904 RX 467492 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1662 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2838526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19291849509 RX 6881214 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19204235833 RX 467337 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2811687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20211553245 RX 6458842 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20126245605 RX 467618 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2839504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19301049033 RX 6883230 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19213413833 RX 467463 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2812395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20214165578 RX 6460786 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20128828991 RX 467747 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2840482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19310209581 RX 6885294 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19222552935 RX 467592 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2813116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20216910726 RX 6462682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20131543809 RX 467876 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2841462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19319371840 RX 6887358 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19231693241 RX 467721 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2813822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20219622702 RX 6464602 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20134226985 RX 468002 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2842440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19328558308 RX 6889374 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19240858213 RX 467847 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2814552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 266958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20222341986 RX 6466546 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20136917155 RX 468131 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2843416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19337734537 RX 6891438 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19250012966 RX 467976 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2815271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20225044795 RX 6468442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20139589506 RX 468260 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 767 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2844397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19346912348 RX 6893502 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19259168798 RX 468105 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2816015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20227780244 RX 6470362 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20142294461 RX 468386 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2845375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19356085952 RX 6895518 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19268320921 RX 468231 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2816721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20230451294 RX 6472306 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20144935645 RX 468515 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2846352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19365258149 RX 6897582 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19277471655 RX 468360 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2817456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20233187843 RX 6474202 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20147642107 RX 468644 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2847332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 284967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19374454329 RX 6899646 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19286645818 RX 468489 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2818185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20235894993 RX 6476122 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20150318874 RX 468770 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 845 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1330 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2848310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19383627933 RX 6901662 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19295797943 RX 468615 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2818932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20238778449 RX 6478066 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20153171984 RX 468899 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2849287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19392799938 RX 6903726 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19304948471 RX 468744 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2819663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20241519664 RX 6479962 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20155882857 RX 469028 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2850266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19401985813 RX 6905790 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19314112353 RX 468873 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2820385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20244236456 RX 6481882 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20158570023 RX 469154 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2851244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19411152697 RX 6907806 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19323257774 RX 468999 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2821095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20246915083 RX 6483826 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20161218602 RX 469283 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2852223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19420323550 RX 6909870 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19332407161 RX 469128 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2821809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20249630043 RX 6485722 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20163904211 RX 469412 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2853202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19429523762 RX 6911934 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19341585351 RX 469257 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2822539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20252343826 RX 6487642 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20166588378 RX 469538 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2854179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19438681622 RX 6913950 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19350721774 RX 469383 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2823269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20255024025 RX 6489586 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20169237027 RX 469667 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -49 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2855159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19447852601 RX 6916014 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19359871273 RX 469512 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2823992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 267998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20257698306 RX 6491482 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20171881150 RX 469796 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2856138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19457033037 RX 6918078 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19369029731 RX 469641 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2824703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20260383069 RX 6493402 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20174537139 RX 469922 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 728 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2857115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19466219571 RX 6920094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19378194770 RX 469767 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2825414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20263039311 RX 6495346 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20177163563 RX 470051 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 809 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2858093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19475390613 RX 6922158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19387344342 RX 469896 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2826164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20265813787 RX 6497242 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20179908562 RX 470180 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 943 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1966 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2859071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 285991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19484564025 RX 6924222 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19396496277 RX 470025 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2826929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20268964731 RX 6499162 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20183028517 RX 470306 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1155 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2860050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19493747407 RX 6926238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19405657669 RX 470151 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2827681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20271820561 RX 6501106 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20185853504 RX 470435 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 950 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2861028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19502925874 RX 6928302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19414814647 RX 470280 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2828409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20274510430 RX 6503002 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20188514004 RX 470564 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 806 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 894 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2862006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19512099478 RX 6930366 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19423966782 RX 470409 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2829147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20277265008 RX 6504922 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20191239256 RX 470690 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2862985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19521289196 RX 6932382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19433134503 RX 470535 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2829872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20279997981 RX 6506866 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20193941693 RX 470819 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1159 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2863963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19530474383 RX 6934446 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19442298192 RX 470664 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2830615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20282841941 RX 6508762 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20196754834 RX 470948 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 964 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2864941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19539634931 RX 6936510 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19451437304 RX 470793 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2831344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20285585590 RX 6510682 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20199468661 RX 471074 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2865921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19548804807 RX 6938526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19460585216 RX 470919 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2832080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20288322162 RX 6512626 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20202175048 RX 471203 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2866899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19557997995 RX 6940590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19469756894 RX 471048 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2832819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 268958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20291085683 RX 6514522 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20204907685 RX 471332 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 839 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2867876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19567170192 RX 6942654 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19478907624 RX 471177 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2833542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20293771056 RX 6516442 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20207563759 RX 471458 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 857 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2868856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19576331170 RX 6944670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19488046651 RX 471303 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2834257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20296476381 RX 6518386 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20210239530 RX 471587 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2869834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 286929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19585511302 RX 6946734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19497205304 RX 471432 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2834962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20299198574 RX 6520398 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20212933675 RX 471716 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 584 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2870812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19594693804 RX 6948798 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19506366310 RX 471561 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2835688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20301865126 RX 6522318 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20215570994 RX 471842 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2871791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19603879679 RX 6950814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19515530194 RX 471687 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2836406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20304616967 RX 6524262 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20218292266 RX 471971 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 945 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 647 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2872769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19613053091 RX 6952878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19524682129 RX 471816 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2837105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20307257015 RX 6526158 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20220903830 RX 472100 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2873746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19622225288 RX 6954942 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19533832863 RX 471945 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2837831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20310004086 RX 6528078 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20223620661 RX 472226 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 911 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2874726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19631421660 RX 6956958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19543007221 RX 472071 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2838556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20312752635 RX 6530022 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20226338448 RX 472355 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 938 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -46 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2875704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19640588544 RX 6959022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19552152642 RX 472200 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2839284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20315545999 RX 6531918 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20229101662 RX 472484 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1024 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2876682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19649763429 RX 6961086 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19561306057 RX 472329 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2839998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20318224759 RX 6533838 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20231750261 RX 472610 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 729 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2877661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19658963449 RX 6963102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19570484054 RX 472455 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2840711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20320893954 RX 6535782 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20234389452 RX 472739 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 762 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2878639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19668123997 RX 6965166 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19579623159 RX 472584 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2841428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20323608624 RX 6537678 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20237075592 RX 472868 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 891 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 971 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2879618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19677285760 RX 6967230 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19588763469 RX 472713 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2842142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 269998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20326374701 RX 6539598 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20239811659 RX 472994 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2880597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19686472724 RX 6969246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19597928440 RX 472839 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2842855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20329045664 RX 6541542 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20242452878 RX 473123 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2881573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 287953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19695648953 RX 6971310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19607083199 RX 472968 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2843582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20331746937 RX 6543438 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20245123737 RX 473252 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2882553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19704826268 RX 6973374 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19616239022 RX 473097 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2844303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20334432911 RX 6545358 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20247779711 RX 473378 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 796 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 872 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2883532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19714000368 RX 6975390 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19625391146 RX 473223 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2845028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20337166959 RX 6547302 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20250483184 RX 473507 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2884509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19723172565 RX 6977454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19634541880 RX 473352 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2845754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20339841245 RX 6549198 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20253127357 RX 473636 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2885488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19732368249 RX 6979518 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19643716049 RX 473481 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2846482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20342558340 RX 6551118 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20255814002 RX 473762 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2886467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19741542349 RX 6981534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19652868177 RX 473607 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2847215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20345287129 RX 6553062 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20258512018 RX 473891 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 889 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2887444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19750714354 RX 6983598 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19662018708 RX 473736 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2847943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20347999498 RX 6554958 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20261194708 RX 474020 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2888422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19759899733 RX 6985662 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19671182578 RX 473865 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2848660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20350738022 RX 6556878 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20263904104 RX 474146 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2889401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19769067113 RX 6987678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19680328004 RX 473991 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2849389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20353409189 RX 6558822 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20266545308 RX 474275 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 781 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 722 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2890380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19778237966 RX 6989742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19689477384 RX 474120 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2850108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20356065677 RX 6560718 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20269171702 RX 474404 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2891358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19787437682 RX 6991806 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19698655576 RX 474249 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2850830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 270958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20358763275 RX 6562638 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20271839101 RX 474530 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -51 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2892336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19796596038 RX 6993822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19707792004 RX 474375 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2851547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20361452895 RX 6564582 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20274499536 RX 474659 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2893316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 288977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19805767017 RX 6995886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19716941503 RX 474504 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2852274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20364159219 RX 6566478 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20277175312 RX 474788 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 876 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2894294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19814946957 RX 6997950 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19726099959 RX 474633 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2853002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20366888718 RX 6568398 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20279874319 RX 474914 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1040 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2895272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19824133987 RX 6999966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19735264994 RX 474759 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2853750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20369689018 RX 6570342 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20282644522 RX 475043 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 843 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2896250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19833305029 RX 7002030 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19744414572 RX 474888 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2854473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20372380478 RX 6572238 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20285304957 RX 475172 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 793 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2897228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19842478441 RX 7004094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19753566512 RX 475017 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2855178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20375058286 RX 6574158 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20287953581 RX 475298 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1445 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2898207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19851661823 RX 7006110 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19762727904 RX 475143 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2855925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20378009423 RX 6576102 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20290874377 RX 475427 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2899185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19860840290 RX 7008174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19771884884 RX 475272 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2856632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20380682698 RX 6577998 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20293519016 RX 475556 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 681 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2900163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19870013894 RX 7010238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19781037021 RX 475401 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2857355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20383367924 RX 6579918 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20296175045 RX 475682 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 611 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2901142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19879203612 RX 7012254 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19790204742 RX 475527 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2858069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20386014510 RX 6581862 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20298792542 RX 475811 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 769 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2902120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19888388799 RX 7014318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19799368427 RX 475656 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2858803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20388704805 RX 6583758 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20301452506 RX 475940 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 880 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2903098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19897549347 RX 7016382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19808507531 RX 475785 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2859536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20391391740 RX 6585678 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20304109011 RX 476066 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1033 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2904078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 289916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19906719223 RX 7018398 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19817655443 RX 475911 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2860261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 271999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20394192171 RX 6587622 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20306880631 RX 476195 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 718 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2905056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19915912411 RX 7020462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19826827116 RX 476040 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2860973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20396834805 RX 6589518 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20309494703 RX 476324 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2906033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19925084608 RX 7022526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19835977854 RX 476169 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2861693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20399528048 RX 6591438 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20312158618 RX 476450 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 871 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2907013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19934245586 RX 7024542 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19845116881 RX 476295 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2862418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20402274542 RX 6593382 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20314875424 RX 476579 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 922 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2907991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19943425718 RX 7026606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19854275528 RX 476424 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2863133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20404957046 RX 6595278 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20317528479 RX 476708 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 634 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2908969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19952608220 RX 7028670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19863436533 RX 476553 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2863846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20407580151 RX 6597198 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20320122373 RX 476834 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 864 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2909948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19961794095 RX 7030686 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19872600414 RX 476679 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2864563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20410278294 RX 6599142 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20322791641 RX 476963 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2910926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19970967507 RX 7032750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19881752356 RX 476808 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2865302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20413117463 RX 6601038 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20325600326 RX 477092 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1212 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 2710 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2911903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19980139704 RX 7034814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19890903081 RX 476937 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2866065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20416530961 RX 6602958 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20328982830 RX 477218 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 649 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2912883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19989336076 RX 7036830 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19900077444 RX 477063 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2866773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20419127793 RX 6604902 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20331549899 RX 477347 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 746 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2913861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 19998502960 RX 7038894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19909222870 RX 477192 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2867495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20421861293 RX 6606798 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20334253337 RX 477476 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 923 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2914839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20007677845 RX 7040958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19918376274 RX 477321 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2868223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20424600909 RX 6608718 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20336962748 RX 477602 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 867 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2915818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 290940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20016877865 RX 7042974 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19927554270 RX 477447 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2868956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 272959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20427305597 RX 6610662 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20339638038 RX 477731 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2916796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20026038413 RX 7045038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19936693371 RX 477576 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2869681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20430064496 RX 6612558 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20342366665 RX 477860 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 898 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2917775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20035200176 RX 7047102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19945833675 RX 477705 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2870404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20432842013 RX 6614478 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20345114568 RX 477986 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1001 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 858 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2918754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20044387140 RX 7049118 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19954998650 RX 477831 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2871127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20435601413 RX 6616422 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20347844687 RX 478115 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2919730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20053563369 RX 7051182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19964153403 RX 477960 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2871852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20438323240 RX 6618318 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20350536264 RX 478244 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 824 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2920710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20062740684 RX 7053246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19973309231 RX 478089 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2872565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20441030729 RX 6620238 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20353214508 RX 478370 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2921688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20071914288 RX 7055262 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19982461351 RX 478215 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2873296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20443731791 RX 6622182 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20355886363 RX 478499 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 745 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2922666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20081086981 RX 7057326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 19991612083 RX 478344 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2874014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20446394740 RX 6624078 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20358519196 RX 478628 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2923645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291623/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20090282665 RX 7059390 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20000786249 RX 478473 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2874725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20449080457 RX 6625998 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20361175205 RX 478754 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 688 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2924623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20099456269 RX 7061406 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20009938382 RX 478599 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2875446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20451769776 RX 6627942 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20363835655 RX 478883 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 802 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 882 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2925601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20108628770 RX 7063470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20019088923 RX 478728 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2876164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20454467438 RX 6629838 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20366503104 RX 479012 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1782 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2926579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20117814149 RX 7065534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20028252795 RX 478857 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2876915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20457523057 RX 6631758 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20369528216 RX 479138 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2927557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 291964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20126981033 RX 7067550 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20037398219 RX 478983 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2877667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20460489312 RX 6633702 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20372464854 RX 479267 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1548 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2928537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20136152382 RX 7069614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20046547601 RX 479112 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2878393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 273999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20463202926 RX 6635598 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20375147514 RX 479396 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 777 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2929515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20145352098 RX 7071678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20055725787 RX 479241 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2879109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20465886032 RX 6637518 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20377800128 RX 479522 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2930492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20154509958 RX 7073694 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20064862216 RX 479367 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2879841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20468583013 RX 6639462 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20380468023 RX 479651 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 705 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2931473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20163681433 RX 7075758 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20074011718 RX 479496 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2880562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20471298174 RX 6641358 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20383154148 RX 479780 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 928 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 874 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2932451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20172861373 RX 7077822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20083170169 RX 479625 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2881279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20474048479 RX 6643278 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20385875400 RX 479906 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 908 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2933428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20182047907 RX 7079838 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20092335203 RX 479751 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2882009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20476777572 RX 6645222 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20388574457 RX 480035 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2934407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20191219445 RX 7081902 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20101484780 RX 479880 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2882719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20479469387 RX 6647118 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20391237891 RX 480164 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 791 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2935385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20200392857 RX 7083966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20110636722 RX 480009 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2883447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20482195459 RX 6649038 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20393933969 RX 480290 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 897 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2936363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20209575743 RX 7085982 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20119798114 RX 480135 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2884175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20484900573 RX 6650982 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20396608798 RX 480419 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 760 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2937342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20218754706 RX 7088046 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20128955099 RX 480264 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2884902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20487610916 RX 6652878 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20399287558 RX 480548 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2938320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20227928310 RX 7090110 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20138107225 RX 480393 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2885625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20490286834 RX 6654798 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20401932677 RX 480674 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 738 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2939298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 292988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20237117532 RX 7092126 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20147274944 RX 480519 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2886329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20492971984 RX 6656742 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20404589177 RX 480803 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1498 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2940277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20246303215 RX 7094190 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20156438635 RX 480648 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2887077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 274959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20495911963 RX 6658638 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20407498177 RX 480932 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 768 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2941255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20255463763 RX 7096254 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20165577736 RX 480777 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2887805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20498693705 RX 6660558 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20410251032 RX 481058 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1289 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2942234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20264633143 RX 7098270 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20174725645 RX 480903 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2888533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 14 +UE 96c8: MAC: TX 20501489858 RX 6662502 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20413018266 RX 481187 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2943211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20273805833 RX 7100483 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20183876372 RX 481096 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2889004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 25 +UE 96c8: ulsch_rounds 275197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 96c8: MAC: TX 20503206057 RX 6665282 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20414711623 RX 482178 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -56 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2944117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 8379: MAC: TX 20282286681 RX 7102579 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20192336814 RX 481370 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2889017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: ulsch_rounds 275210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 20503209545 RX 6666760 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20414711623 RX 482178 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2944506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20283615721 RX 7106247 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20193640781 RX 483196 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2889513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 16 +UE 96c8: ulsch_rounds 275285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20504796037 RX 6669300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20416292087 RX 483040 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2945245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20286269284 RX 7108287 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20196264372 RX 483325 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2890468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20511497716 RX 6671220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20422977028 RX 483169 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2945987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20288988227 RX 7110327 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20198952588 RX 483451 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2891426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20520700214 RX 6673140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20432157588 RX 483295 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2946728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20291728753 RX 7112391 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20201662610 RX 483580 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2892378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20529853409 RX 6675084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20441289428 RX 483424 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2947445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20294396259 RX 7114431 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20204299503 RX 483709 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2893334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20539054524 RX 6676980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20450468586 RX 483553 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2948171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 293938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20297106821 RX 7116471 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20206979364 RX 483835 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2894292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20548250137 RX 6678900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20459642248 RX 483679 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2948907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20299870604 RX 7118535 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20209712567 RX 483964 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2895243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20557393027 RX 6680844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20468763794 RX 483808 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1135 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2949654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20302666230 RX 7120575 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20212476842 RX 484093 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2896201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20566621472 RX 6682740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20477970223 RX 483937 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 829 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2950386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20305371933 RX 7122615 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20215152282 RX 484219 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2897157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 275925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20575797564 RX 6684660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20487124417 RX 484063 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2951109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20308153739 RX 7124679 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20217904801 RX 484348 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2898110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20584960167 RX 6686604 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20496265630 RX 484192 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1560 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2951865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20311071165 RX 7126719 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20220790730 RX 484477 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2899068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20594188420 RX 6688500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20505471869 RX 484321 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 701 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2952607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20313765677 RX 7128759 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20223455295 RX 484603 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2900021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20603363360 RX 6690420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20514624914 RX 484447 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 851 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2953350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20316439831 RX 7130823 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20226099618 RX 484732 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2900976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20612544203 RX 6692364 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20523784337 RX 484576 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 951 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2954101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20319221131 RX 7132863 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20228848242 RX 484861 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2901933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20621734539 RX 6694260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20532952760 RX 484705 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 928 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2954839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20321950142 RX 7134903 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20231545958 RX 484987 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2902888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20630931727 RX 6696180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20542128031 RX 484831 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 881 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2955553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20324678372 RX 7136967 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20234245054 RX 485116 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2903843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20640131962 RX 6698124 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20551306810 RX 484960 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 888 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2956282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20327382063 RX 7139007 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20236917485 RX 485245 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2904800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20649317462 RX 6700020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20560470389 RX 485089 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 754 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2957021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 294962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20330056749 RX 7141047 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20239561828 RX 485371 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2905754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20658481650 RX 6701940 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20569612705 RX 485215 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2957755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20332763355 RX 7143111 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20242237288 RX 485500 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2906708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20667671580 RX 6703884 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20578781201 RX 485344 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1855 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2958507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20335861866 RX 7145151 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20245304026 RX 485629 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2907666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20676867577 RX 6705780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20587955248 RX 485473 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2959234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20338519887 RX 7147191 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20247930580 RX 485755 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2908619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20686027796 RX 6707700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20597093602 RX 485599 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 686 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2959956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20341210802 RX 7149255 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20250591205 RX 485884 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2909575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 276966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20695245440 RX 6709644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20606289745 RX 485728 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 863 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2960694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20343949961 RX 7151295 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20253300260 RX 486013 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2910532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20704439838 RX 6711540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20615462192 RX 485857 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 833 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 748 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2961421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20346622579 RX 7153335 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20255942110 RX 486139 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2911485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20713584439 RX 6713460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20624584959 RX 485983 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2962183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20349574501 RX 7155399 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20258863592 RX 486268 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2912442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20722812388 RX 6715404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20633791388 RX 486112 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1511 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2962918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20352309383 RX 7157439 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20261568667 RX 486397 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2913396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20732005415 RX 6717300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20642962515 RX 486241 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 918 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2963656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20355048287 RX 7159479 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20264276696 RX 486523 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2914352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20741193447 RX 6719220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20652128647 RX 486367 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 926 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2964394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20357784181 RX 7161543 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20266981746 RX 486652 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2915308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20750376786 RX 6721164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20661290553 RX 486496 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 763 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2965146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20360552768 RX 7163583 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20269717943 RX 486781 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2916261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20759545006 RX 6723060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20670436895 RX 486625 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1207 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2965900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 295986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20363380490 RX 7165623 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20272513430 RX 486907 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2917218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20768756426 RX 6724980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20679626339 RX 486751 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 932 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2966631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20366123990 RX 7167687 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20275227417 RX 487036 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2918174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20777934518 RX 6726924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20688783009 RX 486880 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 759 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2967352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20368822539 RX 7169727 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20277895397 RX 487165 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2919128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20787105618 RX 6728820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20697932214 RX 487009 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2968078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20371507440 RX 7171767 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20280551586 RX 487291 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2920085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20796316846 RX 6730740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20707121455 RX 487135 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 723 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2968819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20374204770 RX 7173831 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20283219591 RX 487420 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2921040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 277926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20805484825 RX 6732684 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20716268041 RX 487264 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 821 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2969539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20376893933 RX 7175871 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20285878739 RX 487549 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2921994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20814662069 RX 6734580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20725423374 RX 487393 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2970282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20379611340 RX 7177911 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20288566005 RX 487675 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2922950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20823869520 RX 6736500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20734608856 RX 487519 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 834 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2971020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20382306697 RX 7179975 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20291230620 RX 487804 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2923905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20833061118 RX 6738444 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20743779010 RX 487648 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 775 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 697 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2971762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20384971894 RX 7182015 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20293863518 RX 487933 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2924859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20842224744 RX 6740340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20752921256 RX 487777 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 790 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2972482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20387667605 RX 7184055 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20296528554 RX 488059 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2925817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20851430270 RX 6742260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20762104374 RX 487903 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 826 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2973218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20390388208 RX 7186119 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20299218819 RX 488188 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2926771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20860633133 RX 6744204 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20771285775 RX 488032 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 732 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2973944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 296926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20393085545 RX 7188159 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20301886854 RX 488317 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2927725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20869816535 RX 6746100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20780447753 RX 488161 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 895 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1947 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2974692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20396188503 RX 7190199 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20304957542 RX 488443 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2928684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20879019556 RX 6748020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20789628319 RX 488287 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 668 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2975413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20398891019 RX 7192263 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20307630499 RX 488572 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2929636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20888172751 RX 6749964 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20798760149 RX 488416 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2976158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20401538781 RX 7194303 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20310248106 RX 488701 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2930591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20897373370 RX 6751860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20807939302 RX 488545 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 968 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2976895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20404317597 RX 7196343 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20312996104 RX 488827 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2931550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20906569479 RX 6753780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20817112966 RX 488671 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1051 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2977641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20407091758 RX 7198407 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20315739716 RX 488956 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2932501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20915712369 RX 6755724 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20826234518 RX 488800 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 792 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2978375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20409774559 RX 7200447 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20318392876 RX 489085 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2933458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 278966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20924940318 RX 6757620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20835440945 RX 488929 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 784 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2979127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20412722579 RX 7202487 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20321309852 RX 489211 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2934415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20934116906 RX 6759540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20844595129 RX 489055 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1435 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 850 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2979866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20415430934 RX 7204551 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20323985247 RX 489340 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2935368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20943279509 RX 6761484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20853736354 RX 489184 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 805 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2980597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20418148681 RX 7206591 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20326672503 RX 489469 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2936325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20952507266 RX 6763380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20862942589 RX 489313 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2981327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20420897230 RX 7208631 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20329390926 RX 489595 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2937279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20961682648 RX 6765300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20872095634 RX 489439 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 972 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2982065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20423591634 RX 7210695 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20332054465 RX 489724 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2938234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20970863491 RX 6767244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20881255058 RX 489568 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 930 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2982804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 297950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20426358501 RX 7212735 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20334790687 RX 489853 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -48 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2939190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20980053358 RX 6769140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20890423493 RX 489697 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 836 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2983537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20429049698 RX 7214775 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20337451302 RX 489979 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2940146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20989251069 RX 6771060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20899598762 RX 489823 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 776 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2984265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20431778578 RX 7216839 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20340150449 RX 490108 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2941101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 20998451304 RX 6773004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20908777535 RX 489952 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 862 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 804 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2984997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20434481071 RX 7218879 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20342821438 RX 490237 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2942057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21007636308 RX 6774900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20917941107 RX 490081 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 865 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2985736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20437245067 RX 7220919 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20345554656 RX 490363 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2943012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21016800992 RX 6776820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20927083416 RX 490207 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2986467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20439882147 RX 7222983 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20348161919 RX 490492 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2943966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21025990922 RX 6778764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20936251909 RX 490336 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 831 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2987204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20442632089 RX 7225023 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20350881824 RX 490621 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2944923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 279926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21035186423 RX 6780660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20945425943 RX 490465 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 944 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2987948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20445379282 RX 7227063 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20353597258 RX 490747 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2945877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21044347138 RX 6782580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20954564297 RX 490591 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2988671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20448065017 RX 7229127 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20356253392 RX 490876 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2946833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21053564782 RX 6784524 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20963760443 RX 490720 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 907 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2989413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20450782269 RX 7231167 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20358940167 RX 491005 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2947789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21062758684 RX 6786420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20972932883 RX 490849 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 861 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2990155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20453507562 RX 7233207 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20361635334 RX 491131 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2948742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21071903258 RX 6788340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20982055657 RX 490975 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1399 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2990910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20456433469 RX 7235271 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20364530125 RX 491260 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2949700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21081131676 RX 6790284 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 20991262080 RX 491104 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 797 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2991642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 298974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20459131571 RX 7237311 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20367198140 RX 491389 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2950653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21090324234 RX 6792180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21000433192 RX 491233 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 780 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2992369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20461789486 RX 7239351 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20369826061 RX 491515 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2951609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21099512293 RX 6794100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21009599320 RX 491359 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 697 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 844 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2993088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20464498020 RX 7241415 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20372505892 RX 491644 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2952566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21108696128 RX 6796044 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21018761233 RX 491488 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 787 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2993830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20467192196 RX 7243455 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20375169426 RX 491773 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2953518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21117863852 RX 6797940 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21027907569 RX 491617 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2994569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20469884376 RX 7245495 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20377830026 RX 491899 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2954475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21127075272 RX 6799860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21037097002 RX 491743 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2995310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20472614697 RX 7247559 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20380529188 RX 492028 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2955432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21136253860 RX 6801804 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21046253671 RX 491872 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2996049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20475296660 RX 7249599 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20383180926 RX 492157 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2956385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21145424464 RX 6803700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21055402872 RX 492001 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 859 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2996786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20478033044 RX 7251639 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20385885991 RX 492283 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2957342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 280965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21154635692 RX 6805620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21064592133 RX 492127 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2997538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20481082972 RX 7253703 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20388905300 RX 492412 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2958298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21163804167 RX 6807564 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21073738714 RX 492256 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1709 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2998267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20483800263 RX 7255743 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20391591099 RX 492541 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2959251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21172980915 RX 6809460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21082894055 RX 492385 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 758 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2998997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20486460207 RX 7257783 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20394220582 RX 492667 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2960207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21182188339 RX 6811380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21092079540 RX 492511 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 774 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 2999731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20489193069 RX 7259847 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20396923689 RX 492796 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2961163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21191380406 RX 6813324 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21101249699 RX 492640 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 814 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1148 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3000482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 299998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20492041747 RX 7261887 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20399741847 RX 492925 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2962117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21200544032 RX 6815220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21110391944 RX 492769 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1366 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3001213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20494898638 RX 7263927 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20402566989 RX 493051 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2963074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21209749116 RX 6817140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21119575067 RX 492895 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 779 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3001947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20497645916 RX 7265991 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20405283860 RX 493180 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2964029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21218952475 RX 6819084 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21128756473 RX 493024 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 900 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3002678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20500324273 RX 7268031 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20407932589 RX 493309 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2964983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21228135877 RX 6820980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21137918446 RX 493153 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 712 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 832 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3003420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20503039553 RX 7270071 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20410616896 RX 493435 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2965941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21237338402 RX 6822900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21147099011 RX 493279 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 852 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3004144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20505744506 RX 7272135 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20413290789 RX 493564 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2966894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21246492093 RX 6824844 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21156230852 RX 493408 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 731 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3004873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20508389542 RX 7274175 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20415905432 RX 493693 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2967849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21255692712 RX 6826740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21165410002 RX 493537 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 811 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3005604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20511129572 RX 7276215 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20418614923 RX 493819 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2968807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 281925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21264888325 RX 6828660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21174583661 RX 493663 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 803 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 816 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3006348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20513842655 RX 7278279 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20421296296 RX 493948 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2969759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21274031711 RX 6830604 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21183705219 RX 493792 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 887 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3007088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20516593318 RX 7280319 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20424016176 RX 494077 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2970716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21283259660 RX 6832500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21192911644 RX 493921 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 903 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3007816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20519306560 RX 7282359 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20426700012 RX 494203 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2971672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21292435725 RX 6834420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21202065831 RX 494047 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 807 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 998 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3008563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 300936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20522081902 RX 7284423 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20429444110 RX 494332 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2972626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21301598797 RX 6836364 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21211207061 RX 494176 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1841 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3009312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20525138763 RX 7286463 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20432469382 RX 494461 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2973583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21310826554 RX 6838260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21220413303 RX 494305 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 706 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3010045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20527835641 RX 7288503 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20435135945 RX 494587 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2974536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21320001494 RX 6840180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21229566347 RX 494431 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 735 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3010773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20530526487 RX 7290567 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20437797536 RX 494716 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2975492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21329182833 RX 6842124 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21238725767 RX 494560 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 875 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1416 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3011540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20533471841 RX 7292607 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20440710577 RX 494845 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2976448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21338372700 RX 6844020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21247894186 RX 494689 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1043 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3012289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20536266789 RX 7294647 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20443474952 RX 494971 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2977403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21347569915 RX 6845940 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21257069468 RX 494815 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3013020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20539000801 RX 7296711 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20446178545 RX 495100 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2978359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21356770646 RX 6847884 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21266248247 RX 494944 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 870 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 946 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3013753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20541735869 RX 7298751 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20448883695 RX 495229 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2979315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21365955650 RX 6849780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21275411817 RX 495073 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 794 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3014487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20544447103 RX 7300791 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20451563541 RX 495355 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2980269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21375119838 RX 6851700 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21284554128 RX 495199 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 820 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3015234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20547129181 RX 7302855 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20454215239 RX 495484 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2981224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 282966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21384310264 RX 6853644 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21293722619 RX 495328 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 795 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3015953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20549831478 RX 7304895 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20456887700 RX 495613 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2982181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21393505765 RX 6855540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21302896660 RX 495457 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 755 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 798 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3016684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20552518433 RX 7306935 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20459543864 RX 495739 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2983134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21402665957 RX 6857460 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21312035016 RX 495583 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 837 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3017429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 301960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20555308501 RX 7308999 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20462303788 RX 495868 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2984091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21411884070 RX 6859404 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21321231159 RX 495712 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1162 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3018196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20558479028 RX 7311039 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20465443144 RX 495997 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2985047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21421077972 RX 6861300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21330403612 RX 495841 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1765 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3018912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20561110421 RX 7313079 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20468045916 RX 496123 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2986000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21430222573 RX 6863220 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21339526381 RX 495967 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 773 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1909 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3019685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20564206641 RX 7315143 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20471109730 RX 496252 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2986958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21439451018 RX 6865164 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21348732813 RX 496096 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 750 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3020429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20566951307 RX 7317183 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20473823732 RX 496381 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2987911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21448643576 RX 6867060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21357903916 RX 496225 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1020 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3021176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20569684374 RX 7319223 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20476525327 RX 496507 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2988866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21457831139 RX 6868980 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21367070045 RX 496351 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1593 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3021934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20572661362 RX 7321287 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20479470516 RX 496636 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2989824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21467015470 RX 6870924 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21376231958 RX 496480 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 813 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3022667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20575356038 RX 7323327 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20482134566 RX 496765 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2990776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21476183194 RX 6872820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21385378291 RX 496609 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 740 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3023398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20578052308 RX 7325367 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20484801104 RX 496891 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2991732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21485394118 RX 6874740 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21394567734 RX 496735 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 925 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3024129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20580809120 RX 7327431 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20487526867 RX 497020 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2992690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 283926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21494573202 RX 6876684 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21403724401 RX 496864 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 924 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3024859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20583531478 RX 7329471 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20490218614 RX 497149 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2993643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21503743806 RX 6878580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21412873610 RX 496993 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3025588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20586232416 RX 7331511 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20492889598 RX 497275 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2994599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21512954538 RX 6880500 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21422062856 RX 497119 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 761 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3026312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 302984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20588944861 RX 7333575 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20495572388 RX 497404 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2995556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21522123455 RX 6882444 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21431209435 RX 497248 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 853 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1542 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3027078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20591950770 RX 7335615 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20498547202 RX 497533 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2996509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21531300203 RX 6884340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21440364780 RX 497377 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 912 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3027798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20594668005 RX 7337655 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20501234483 RX 497659 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2997464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21540507158 RX 6886260 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21449550261 RX 497503 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 689 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3028530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20597339467 RX 7339719 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20503875316 RX 497788 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2998421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21549699748 RX 6888204 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21458720417 RX 497632 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 819 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3029262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20600108228 RX 7341759 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20506613471 RX 497917 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 2999375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21558863374 RX 6890100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21467862656 RX 497761 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1015 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1388 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3030017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20603224786 RX 7343799 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20509699540 RX 498043 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3000331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21568067962 RX 6892020 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21477045763 RX 497887 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1256 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3030757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20605904341 RX 7345863 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20512348289 RX 498172 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3001287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21577271817 RX 6893964 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21486227167 RX 498016 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 739 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3031481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20608593796 RX 7347903 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20515007362 RX 498301 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3002241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21586455219 RX 6895860 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21495389148 RX 498145 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 817 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3032200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20611238236 RX 7349943 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20517621494 RX 498427 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3003198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21595657248 RX 6897780 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21504569702 RX 498271 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 657 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 715 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3032933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20613918607 RX 7352007 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20520270744 RX 498556 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3004152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21604811435 RX 6899724 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21513701545 RX 498400 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 917 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3033676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20616648720 RX 7354047 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20522969801 RX 498685 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3005107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 284966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21614012054 RX 6901620 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21522880702 RX 498529 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 766 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3034414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 303922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20619322261 RX 7356087 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20525614084 RX 498811 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3006064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21623207171 RX 6903540 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21532054357 RX 498655 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 765 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 927 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3035154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20622093895 RX 7358151 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20528354722 RX 498940 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3007017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21632350999 RX 6905484 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21541175921 RX 498784 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1019 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3035885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20624860902 RX 7360191 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20531092346 RX 499069 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3007974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21641578948 RX 6907380 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21550382351 RX 498913 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 815 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3036620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20627595889 RX 7362231 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20533797421 RX 499195 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3008929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21650754544 RX 6909300 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21559536538 RX 499039 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 930 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3037341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20630294075 RX 7364295 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20536465396 RX 499324 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3009884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21659918139 RX 6911244 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21568677773 RX 499168 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 808 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 708 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3038062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20632971295 RX 7366335 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20539114135 RX 499453 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -45 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3010841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21669145896 RX 6913140 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21577884013 RX 499297 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 786 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3038800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20635670592 RX 7368375 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20541782150 RX 499579 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3011793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21678320340 RX 6915060 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21587037058 RX 499423 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 770 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3039524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20638342121 RX 7370439 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20544422958 RX 499708 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3012749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21687501679 RX 6917004 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21596196475 RX 499552 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 878 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 847 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3040265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20641103555 RX 7372479 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20547153748 RX 499837 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3013706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21696692042 RX 6918900 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21605364905 RX 499681 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1830 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3041000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20644176294 RX 7374519 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20550196804 RX 499963 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3014660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21705888761 RX 6920820 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21614540167 RX 499807 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 662 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3041723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20646809059 RX 7376583 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20552799621 RX 500092 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3015616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21715089492 RX 6922764 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21623718939 RX 499936 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1866 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3042476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20649911562 RX 7378623 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20555870755 RX 500221 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3016573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 285926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21724274992 RX 6924660 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21632882514 RX 500065 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 749 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 801 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3043207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 304946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20652608788 RX 7380663 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20558538780 RX 500347 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3017526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21733438684 RX 6926580 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21642024831 RX 500191 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 783 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3043937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 305032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20655359283 RX 7382727 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20561260137 RX 500476 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3018481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21742629083 RX 6928524 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21651193336 RX 500320 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 1059 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3044657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 305118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20658058752 RX 7384767 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20563931091 RX 500605 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3019439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21751825053 RX 6930420 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21660367378 RX 500449 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 653 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3045391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 305202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20660746586 RX 7386807 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20566587290 RX 500731 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3020391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21760984776 RX 6932340 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21669505730 RX 500575 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 827 SDU rejected, SDU buffer full +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 838 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3046121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 305288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20663462861 RX 7388871 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20569274606 RX 500860 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3021348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21770202916 RX 6934284 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21678701878 RX 500704 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 812 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3046852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 305372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20666229142 RX 7390887 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20572009306 RX 500986 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3022305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21779397314 RX 6936180 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21687874335 RX 500833 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 920 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3047606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 8379: ulsch_rounds 305458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 15 +UE 8379: MAC: TX 20668945303 RX 7392951 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20574695140 RX 501115 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3023272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 12 +UE 96c8: MAC: TX 21788698874 RX 6938100 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21697154191 RX 500959 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 849 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 27 +UE 8379: ulsch_rounds 305539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 17 +UE 8379: MAC: TX 20670690989 RX 7395688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3024239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 21798021792 RX 6940108 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21706454870 RX 501162 bytes + +[RLC] /home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c:1769:nr_rlc_entity_am_recv_sdu: warning: 592 SDU rejected, SDU buffer full +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 14 +UE 8379: ulsch_rounds 305552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670695077 RX 7397196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 28 +UE 96c8: ulsch_rounds 286649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 13 +UE 96c8: MAC: TX 21806639943 RX 6942109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052348 RX 501426 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670696770 RX 7398704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 18 +UE 96c8: ulsch_rounds 286682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806649129 RX 6944585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670698369 RX 7400096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806651186 RX 6946063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670699845 RX 7401604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806652773 RX 6947541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670701444 RX 7403112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806654360 RX 6949019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670703043 RX 7404620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806655812 RX 6950381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670704642 RX 7406128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806657399 RX 6951849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670706241 RX 7407520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806658974 RX 6953327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670707717 RX 7409028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806660573 RX 6954805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670709316 RX 7410536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806662172 RX 6956283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670710915 RX 7412044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806663648 RX 6957645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670712514 RX 7413552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806665247 RX 6959113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670714113 RX 7414944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806666846 RX 6960591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670715589 RX 7416452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806668421 RX 6962069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670717188 RX 7417960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806670008 RX 6963547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670718787 RX 7419468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806671460 RX 6964909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670720386 RX 7420976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806673047 RX 6966377 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670721985 RX 7422368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806674622 RX 6967855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670723461 RX 7423876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806676209 RX 6969333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670725060 RX 7425384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806677796 RX 6970811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670726659 RX 7426892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806679260 RX 6972173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670728258 RX 7428400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806680859 RX 6973641 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670729857 RX 7429792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806682458 RX 6975119 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670731333 RX 7431300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806684057 RX 6976597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670732932 RX 7432808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806685656 RX 6978075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670734531 RX 7434316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 286989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806687120 RX 6979437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670736130 RX 7435824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806688695 RX 6980905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670737729 RX 7437216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806690270 RX 6982383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670739205 RX 7438724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806691857 RX 6983861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670740804 RX 7440232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806693444 RX 6985339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670742403 RX 7441740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806694896 RX 6986701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670744002 RX 7443248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806696483 RX 6988169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670745601 RX 7444640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806698070 RX 6989647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670747077 RX 7446148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806699669 RX 6991125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 305987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670748676 RX 7447656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806701268 RX 6992603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670750275 RX 7449164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806702744 RX 6993965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670751874 RX 7450672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806704343 RX 6995433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670753473 RX 7452064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287143/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806705930 RX 6996911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670754949 RX 7453572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806707505 RX 6998389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670756548 RX 7455080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806709092 RX 6999867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670758147 RX 7456588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806710556 RX 7001229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670759746 RX 7458096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806712131 RX 7002697 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670761345 RX 7459488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806713706 RX 7004175 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670762821 RX 7460996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806715293 RX 7005653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670764420 RX 7462504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806716880 RX 7007131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670766019 RX 7464012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806718356 RX 7008493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670767618 RX 7465520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806719955 RX 7009961 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670769217 RX 7466912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806721554 RX 7011439 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670770693 RX 7468420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806723153 RX 7012917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670772292 RX 7469928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806724740 RX 7014395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670773891 RX 7471436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806726204 RX 7015757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670775490 RX 7472944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806727779 RX 7017225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670777089 RX 7474336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806729366 RX 7018703 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670778565 RX 7475844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806730941 RX 7020181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670780164 RX 7477352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806732528 RX 7021659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670781763 RX 7478860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806733992 RX 7023021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670783362 RX 7480368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806735567 RX 7024489 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670784961 RX 7481760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806737166 RX 7025967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670786437 RX 7483268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806738765 RX 7027445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670788036 RX 7484776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806740364 RX 7028923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670789635 RX 7486284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806741840 RX 7030285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670791234 RX 7487792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806743427 RX 7031753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670792833 RX 7489184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287463/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806745014 RX 7033231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670794309 RX 7490692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806746589 RX 7034709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670795908 RX 7492200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806748176 RX 7036187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670797507 RX 7493708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806749640 RX 7037549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670799106 RX 7495216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3025989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806751215 RX 7039017 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670800705 RX 7496608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806752802 RX 7040495 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670802181 RX 7498116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806754377 RX 7041973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3048998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670803780 RX 7499624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806755976 RX 7043451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670805379 RX 7501132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806757452 RX 7044813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670806978 RX 7502640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806759051 RX 7046281 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670808577 RX 7504032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806760650 RX 7047759 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670810053 RX 7505540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806762249 RX 7049237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670811652 RX 7507048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806763824 RX 7050715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670813251 RX 7508556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806765288 RX 7052077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670814850 RX 7510064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806766863 RX 7053545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670816449 RX 7511456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806768450 RX 7055023 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306550/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670817925 RX 7512964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806770025 RX 7056501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670819524 RX 7514472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806771612 RX 7057979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670821123 RX 7515980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806773076 RX 7059341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670822722 RX 7517488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806774663 RX 7060809 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670824321 RX 7518880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806776262 RX 7062287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670825797 RX 7520388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806777861 RX 7063765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670827396 RX 7521896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806779460 RX 7065243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670828995 RX 7523404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806780936 RX 7066605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670830594 RX 7524912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806782511 RX 7068073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670832193 RX 7526304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806784098 RX 7069551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670833669 RX 7527812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806785673 RX 7071029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670835268 RX 7529320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806787260 RX 7072507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670836867 RX 7530828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806788724 RX 7073869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670838466 RX 7532336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806790299 RX 7075337 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670840065 RX 7533728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806791886 RX 7076815 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670841541 RX 7535236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806793473 RX 7078293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670843140 RX 7536744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806795072 RX 7079771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670844739 RX 7538252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806796548 RX 7081133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670846338 RX 7539760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806798147 RX 7082601 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670847937 RX 7541152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806799746 RX 7084079 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670849413 RX 7542660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806801333 RX 7085557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670851012 RX 7544168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806802908 RX 7087035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670852611 RX 7545676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806804372 RX 7088397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670854210 RX 7547184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806805947 RX 7089865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670855809 RX 7548576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806807534 RX 7091343 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670857285 RX 7550084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 287988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806809109 RX 7092821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670858884 RX 7551592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806810696 RX 7094299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670860483 RX 7553100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806812160 RX 7095661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670862082 RX 7554608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806813759 RX 7097129 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670863681 RX 7556000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806815358 RX 7098607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670865157 RX 7557508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806816957 RX 7100085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670866756 RX 7559016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806818556 RX 7101563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670868355 RX 7560524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806820020 RX 7102925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670869954 RX 7562032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806821595 RX 7104393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670871553 RX 7563424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288103/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806823182 RX 7105871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 306998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670873029 RX 7564932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806824769 RX 7107349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670874628 RX 7566440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806826344 RX 7108827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670876227 RX 7567948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806827808 RX 7110189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670877826 RX 7569456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806829383 RX 7111657 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670879425 RX 7570848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806830970 RX 7113135 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670880901 RX 7572356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806832569 RX 7114613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670882500 RX 7573864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806834168 RX 7116091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670884099 RX 7575372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806835644 RX 7117453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670885698 RX 7576880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806837243 RX 7118921 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670887297 RX 7578272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806838830 RX 7120399 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670888773 RX 7579780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806840417 RX 7121877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670890372 RX 7581288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806841992 RX 7123355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670891971 RX 7582796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806843456 RX 7124717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670893570 RX 7584304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806845031 RX 7126185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670895169 RX 7585696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806846618 RX 7127663 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670896645 RX 7587204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806848205 RX 7129141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670898244 RX 7588712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806849780 RX 7130619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670899843 RX 7590220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806851256 RX 7131981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670901442 RX 7591728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806852855 RX 7133449 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670903041 RX 7593120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806854454 RX 7134927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670904517 RX 7594628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806856053 RX 7136405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670906116 RX 7596136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806857652 RX 7137883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670907715 RX 7597644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806859104 RX 7139245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670909314 RX 7599152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806860679 RX 7140713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670910913 RX 7600544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288423/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806862266 RX 7142191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670912389 RX 7602052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806863853 RX 7143669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670913988 RX 7603560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806865428 RX 7145147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670915587 RX 7605068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806866892 RX 7146509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670917186 RX 7606576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806868467 RX 7147977 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670918785 RX 7607968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806870066 RX 7149455 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670920261 RX 7609476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806871665 RX 7150933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670921860 RX 7610984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3026988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806873264 RX 7152411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670923459 RX 7612492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806874740 RX 7153773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670925058 RX 7614000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806876339 RX 7155241 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3049997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670926657 RX 7615392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806877914 RX 7156719 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670928133 RX 7616900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806879501 RX 7158197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670929732 RX 7618408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806881076 RX 7159675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670931331 RX 7619916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806882540 RX 7161037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670932930 RX 7621424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806884115 RX 7162505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670934529 RX 7622816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806885702 RX 7163983 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670936005 RX 7624324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806887289 RX 7165461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670937604 RX 7625832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806888876 RX 7166939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670939203 RX 7627340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806890352 RX 7168301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670940802 RX 7628848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806891951 RX 7169769 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670942401 RX 7630240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806893550 RX 7171247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670943877 RX 7631748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806895149 RX 7172725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670945476 RX 7633256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806896736 RX 7174203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670947075 RX 7634764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806898188 RX 7175565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670948674 RX 7636272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806899763 RX 7177033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670950273 RX 7637664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288743/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806901350 RX 7178511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670951749 RX 7639172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806902937 RX 7179989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670953348 RX 7640680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806904512 RX 7181467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670954947 RX 7642188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806905976 RX 7182829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670956546 RX 7643696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806907563 RX 7184297 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670958145 RX 7645088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806909162 RX 7185775 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670959621 RX 7646596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806910761 RX 7187253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670961220 RX 7648104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806912360 RX 7188731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670962819 RX 7649612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806913836 RX 7190093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670964418 RX 7651120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806915423 RX 7191561 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670966017 RX 7652512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806916998 RX 7193039 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670967493 RX 7654020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806918585 RX 7194517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670969092 RX 7655528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806920172 RX 7195995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670970691 RX 7657036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806921624 RX 7197357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670972290 RX 7658544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806923199 RX 7198825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670973889 RX 7659936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806924786 RX 7200303 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307830/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670975365 RX 7661444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806926373 RX 7201781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670976964 RX 7662952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806927972 RX 7203259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670978563 RX 7664460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806929448 RX 7204621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670980162 RX 7665968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806931047 RX 7206089 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670981761 RX 7667360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 288999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806932646 RX 7207567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670983237 RX 7668868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289012/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806934233 RX 7209045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670984836 RX 7670376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806935820 RX 7210523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670986435 RX 7671884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806937272 RX 7211885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670988034 RX 7673392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806938859 RX 7213353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670989633 RX 7674784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806940434 RX 7214831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670991109 RX 7676292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806942021 RX 7216309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670992708 RX 7677800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806943608 RX 7217787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670994307 RX 7679308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806945060 RX 7219149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 307997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670995906 RX 7680816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806946659 RX 7220617 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670997505 RX 7682208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806948258 RX 7222095 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20670998981 RX 7683716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806949857 RX 7223573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671000580 RX 7685224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806951456 RX 7225051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671002179 RX 7686732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806952932 RX 7226413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671003778 RX 7688240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806954507 RX 7227881 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671005377 RX 7689632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806956082 RX 7229359 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671006853 RX 7691140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806957669 RX 7230837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671008452 RX 7692648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806959256 RX 7232315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671010051 RX 7694156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806960708 RX 7233677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671011650 RX 7695664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806962295 RX 7235145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671013249 RX 7697056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806963870 RX 7236623 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671014725 RX 7698564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289268/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806965469 RX 7238101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671016324 RX 7700072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806967068 RX 7239579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671017923 RX 7701580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806968544 RX 7240941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671019522 RX 7703088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806970143 RX 7242409 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671021121 RX 7704480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806971742 RX 7243887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671022597 RX 7705988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806973317 RX 7245365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671024196 RX 7707496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806974904 RX 7246843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671025795 RX 7709004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806976356 RX 7248205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671027394 RX 7710512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806977943 RX 7249673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671028993 RX 7711904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806979518 RX 7251151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671030469 RX 7713412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806981105 RX 7252629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671032068 RX 7714920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806982692 RX 7254107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671033667 RX 7716428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806984156 RX 7255469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671035266 RX 7717936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806985755 RX 7256937 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671036865 RX 7719328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806987354 RX 7258415 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671038341 RX 7720836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806988953 RX 7259893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671039940 RX 7722344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806990552 RX 7261371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671041539 RX 7723852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806992016 RX 7262733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671043138 RX 7725360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806993591 RX 7264201 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671044737 RX 7726752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806995166 RX 7265679 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671046213 RX 7728260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3027999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806996753 RX 7267157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671047812 RX 7729768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806998340 RX 7268635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3050995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671049411 RX 7731276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21806999792 RX 7269997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671051010 RX 7732784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807001379 RX 7271465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671052609 RX 7734176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807002966 RX 7272943 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671054085 RX 7735684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807004565 RX 7274421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671055684 RX 7737192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807006164 RX 7275899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671057283 RX 7738700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807007640 RX 7277261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671058882 RX 7740208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807009239 RX 7278729 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671060481 RX 7741600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807010826 RX 7280207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671061957 RX 7743108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289652/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807012401 RX 7281685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671063556 RX 7744616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807013988 RX 7283163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671065155 RX 7746124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807015452 RX 7284525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671066754 RX 7747632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807017027 RX 7285993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671068353 RX 7749024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289703/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807018602 RX 7287471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671069829 RX 7750532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807020189 RX 7288949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671071428 RX 7752040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807021776 RX 7290427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671073027 RX 7753548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807023252 RX 7291789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671074626 RX 7755056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807024851 RX 7293257 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671076225 RX 7756448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807026450 RX 7294735 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671077701 RX 7757956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807028049 RX 7296213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671079300 RX 7759464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807029636 RX 7297691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671080899 RX 7760972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807031100 RX 7299053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671082498 RX 7762480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807032675 RX 7300521 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671084097 RX 7763872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807034262 RX 7301999 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671085573 RX 7765380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807035837 RX 7303477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671087172 RX 7766888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807037424 RX 7304955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671088771 RX 7768396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807038888 RX 7306317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671090370 RX 7769904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807040463 RX 7307785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671091969 RX 7771296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807042062 RX 7309263 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671093445 RX 7772804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807043661 RX 7310741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671095044 RX 7774312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807045260 RX 7312219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671096643 RX 7775820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807046736 RX 7313581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671098242 RX 7777328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807048323 RX 7315049 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671099841 RX 7778720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807049910 RX 7316527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671101317 RX 7780228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807051485 RX 7318005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671102916 RX 7781736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807053072 RX 7319483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671104515 RX 7783244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 289997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807054536 RX 7320845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671106114 RX 7784752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807056111 RX 7322313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671107713 RX 7786144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290023/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807057698 RX 7323791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671109189 RX 7787652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807059273 RX 7325269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671110788 RX 7789160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807060872 RX 7326747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671112387 RX 7790668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807062348 RX 7328109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671113986 RX 7792176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807063947 RX 7329577 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671115585 RX 7793568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807065546 RX 7331055 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671117061 RX 7795076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807067145 RX 7332533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 308995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671118660 RX 7796584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807068720 RX 7334011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671120259 RX 7798092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807070184 RX 7335373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671121858 RX 7799600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807071759 RX 7336841 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671123457 RX 7800992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807073346 RX 7338319 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671124933 RX 7802500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807074921 RX 7339797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671126532 RX 7804008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807076508 RX 7341275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671128131 RX 7805516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807077972 RX 7342637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671129730 RX 7807024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807079559 RX 7344105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671131329 RX 7808416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807081158 RX 7345583 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671132805 RX 7809924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807082757 RX 7347061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671134404 RX 7811432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807084356 RX 7348539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671136003 RX 7812940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807085832 RX 7349901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671137602 RX 7814448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807087407 RX 7351369 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671139201 RX 7815840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807088994 RX 7352847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671140677 RX 7817348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807090569 RX 7354325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671142276 RX 7818856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807092156 RX 7355803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671143875 RX 7820364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807093620 RX 7357165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671145474 RX 7821872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807095195 RX 7358633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671147073 RX 7823264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807096782 RX 7360111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671148549 RX 7824772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807098369 RX 7361589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671150148 RX 7826280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807099968 RX 7363067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671151747 RX 7827788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807101444 RX 7364429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671153346 RX 7829296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807103043 RX 7365897 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671154945 RX 7830688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807104642 RX 7367375 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671156421 RX 7832196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807106229 RX 7368853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671158020 RX 7833704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807107804 RX 7370331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671159619 RX 7835212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807109268 RX 7371693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671161218 RX 7836720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807110843 RX 7373161 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671162817 RX 7838112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807112430 RX 7374639 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671164293 RX 7839620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807114005 RX 7376117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671165892 RX 7841128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807115592 RX 7377595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671167491 RX 7842636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807117056 RX 7378957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671169090 RX 7844144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3028997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807118655 RX 7380425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671170689 RX 7845536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807120254 RX 7381903 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3051993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309430/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671172165 RX 7847044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807121853 RX 7383381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671173764 RX 7848552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807123452 RX 7384859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671175363 RX 7850060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807124916 RX 7386221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671176962 RX 7851568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807126491 RX 7387689 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671178561 RX 7852960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807128078 RX 7389167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671180037 RX 7854468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807129665 RX 7390645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671181636 RX 7855976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807131240 RX 7392123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671183235 RX 7857484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807132704 RX 7393485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671184834 RX 7858992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807134279 RX 7394953 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671186433 RX 7860384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807135866 RX 7396431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671187909 RX 7861892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807137465 RX 7397909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671189508 RX 7863400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807139064 RX 7399387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671191107 RX 7864908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807140540 RX 7400749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671192706 RX 7866416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807142139 RX 7402217 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671194305 RX 7867808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807143726 RX 7403695 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671195781 RX 7869316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807145313 RX 7405173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671197380 RX 7870824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807146888 RX 7406651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671198979 RX 7872332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807148352 RX 7408013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671200578 RX 7873840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807149927 RX 7409481 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671202177 RX 7875232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807151514 RX 7410959 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671203653 RX 7876740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807153101 RX 7412437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671205252 RX 7878248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807154676 RX 7413915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671206851 RX 7879756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807156152 RX 7415277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671208450 RX 7881264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807157751 RX 7416745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671210049 RX 7882656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807159350 RX 7418223 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671211525 RX 7884164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807160949 RX 7419701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671213124 RX 7885672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807162548 RX 7421179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671214723 RX 7887180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807164000 RX 7422541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671216322 RX 7888688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807165575 RX 7424009 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671217921 RX 7890080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807167162 RX 7425487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671219397 RX 7891588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807168749 RX 7426965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671220996 RX 7893096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807170324 RX 7428443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671222595 RX 7894604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807171788 RX 7429805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671224194 RX 7896112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807173363 RX 7431273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671225793 RX 7897504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290983/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807174962 RX 7432751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671227269 RX 7899012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 290996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807176561 RX 7434229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671228868 RX 7900520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807178160 RX 7435707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671230467 RX 7902028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807179636 RX 7437069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671232066 RX 7903536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807181235 RX 7438537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671233665 RX 7904928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807182810 RX 7440015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671235141 RX 7906436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807184397 RX 7441493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671236740 RX 7907944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807185972 RX 7442971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671238339 RX 7909452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807187436 RX 7444333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671239938 RX 7910960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807189011 RX 7445801 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 309993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671241537 RX 7912352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807190598 RX 7447279 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671243013 RX 7913860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807192185 RX 7448757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671244612 RX 7915368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807193772 RX 7450235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671246211 RX 7916876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807195248 RX 7451597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671247810 RX 7918384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807196847 RX 7453065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671249409 RX 7919776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807198446 RX 7454543 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671250885 RX 7921284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291188/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807200045 RX 7456021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671252484 RX 7922792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807201632 RX 7457499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671254083 RX 7924300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807203084 RX 7458861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671255682 RX 7925808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807204659 RX 7460329 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671257281 RX 7927200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807206246 RX 7461807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671258757 RX 7928708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807207833 RX 7463285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671260356 RX 7930216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807209408 RX 7464763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671261955 RX 7931724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807210872 RX 7466125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671263554 RX 7933232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807212459 RX 7467593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671265153 RX 7934624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291303/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807214058 RX 7469071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671266629 RX 7936132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807215657 RX 7470549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671268228 RX 7937640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807217256 RX 7472027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671269827 RX 7939148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807218732 RX 7473389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671271426 RX 7940656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807220319 RX 7474857 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671273025 RX 7942048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807221894 RX 7476335 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671274501 RX 7943556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807223481 RX 7477813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671276100 RX 7945064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807225068 RX 7479291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671277699 RX 7946572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807226520 RX 7480653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671279298 RX 7948080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807228095 RX 7482121 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671280897 RX 7949472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807229682 RX 7483599 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671282373 RX 7950980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807231269 RX 7485077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671283972 RX 7952488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807232868 RX 7486555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671285571 RX 7953996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807234344 RX 7487917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671287170 RX 7955504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807235943 RX 7489385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671288769 RX 7956896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807237542 RX 7490863 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671290245 RX 7958404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807239129 RX 7492341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671291844 RX 7959912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3029996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807240716 RX 7493819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671293443 RX 7961420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807242168 RX 7495181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3052992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671295042 RX 7962928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807243755 RX 7496649 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671296641 RX 7964320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807245330 RX 7498127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671298117 RX 7965828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807246917 RX 7499605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671299716 RX 7967336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807248504 RX 7501083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671301315 RX 7968844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807249956 RX 7502445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671302914 RX 7970352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807251555 RX 7503913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671304513 RX 7971744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291623/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807253154 RX 7505391 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671305989 RX 7973252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807254753 RX 7506869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671307588 RX 7974760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807256352 RX 7508347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671309187 RX 7976268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807257828 RX 7509709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671310786 RX 7977776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807259403 RX 7511177 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671312385 RX 7979168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807260978 RX 7512655 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671313861 RX 7980676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807262565 RX 7514133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671315460 RX 7982184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807264152 RX 7515611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671317059 RX 7983692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807265604 RX 7516973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671318658 RX 7985200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807267191 RX 7518441 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671320257 RX 7986592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807268766 RX 7519919 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671321733 RX 7988100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807270365 RX 7521397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671323332 RX 7989608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807271964 RX 7522875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671324931 RX 7991116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807273440 RX 7524237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671326530 RX 7992624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807275039 RX 7525705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671328129 RX 7994016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807276638 RX 7527183 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310710/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671329605 RX 7995524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807278213 RX 7528661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671331204 RX 7997032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807279800 RX 7530139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671332803 RX 7998540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807281252 RX 7531501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671334402 RX 8000048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807282839 RX 7532969 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671336001 RX 8001440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807284414 RX 7534447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671337477 RX 8002948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807286001 RX 7535925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671339076 RX 8004456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807287588 RX 7537403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671340675 RX 8005964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807289052 RX 7538765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671342274 RX 8007472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807290651 RX 7540233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671343873 RX 8008864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807292250 RX 7541711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671345349 RX 8010372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807293849 RX 7543189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671346948 RX 8011880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807295448 RX 7544667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671348547 RX 8013388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807296912 RX 7546029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671350146 RX 8014896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 291994/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807298487 RX 7547497 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671351745 RX 8016288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807300062 RX 7548975 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671353221 RX 8017796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807301649 RX 7550453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671354820 RX 8019304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807303236 RX 7551931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671356419 RX 8020812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807304688 RX 7553293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671358018 RX 8022320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807306275 RX 7554761 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671359617 RX 8023712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807307862 RX 7556239 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671361093 RX 8025220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807309461 RX 7557717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671362692 RX 8026728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807311060 RX 7559195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 310992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671364291 RX 8028236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807312536 RX 7560557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671365890 RX 8029744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807314135 RX 7562025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671367489 RX 8031136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807315722 RX 7563503 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671368965 RX 8032644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807317297 RX 7564981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671370564 RX 8034152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807318884 RX 7566459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671372163 RX 8035660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807320348 RX 7567821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671373762 RX 8037168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807321923 RX 7569289 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671375361 RX 8038560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807323498 RX 7570767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671376837 RX 8040068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807325085 RX 7572245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671378436 RX 8041576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807326672 RX 7573723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671380035 RX 8043084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807328148 RX 7575085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671381634 RX 8044592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807329747 RX 7576553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671383233 RX 8045984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292263/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807331346 RX 7578031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671384709 RX 8047492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807332945 RX 7579509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671386308 RX 8049000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807334532 RX 7580987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671387907 RX 8050508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807335996 RX 7582349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671389506 RX 8052016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807337571 RX 7583817 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671391105 RX 8053408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807339158 RX 7585295 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671392581 RX 8054916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807340733 RX 7586773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671394180 RX 8056424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807342320 RX 7588251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671395779 RX 8057932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807343784 RX 7589613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671397378 RX 8059440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807345359 RX 7591081 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671398977 RX 8060832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807346958 RX 7592559 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671400453 RX 8062340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807348557 RX 7594037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671402052 RX 8063848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807350156 RX 7595515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671403651 RX 8065356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807351632 RX 7596877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671405250 RX 8066864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807353219 RX 7598345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671406849 RX 8068256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807354806 RX 7599823 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671408325 RX 8069764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807356381 RX 7601301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671409924 RX 8071272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807357968 RX 7602779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671411523 RX 8072780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807359432 RX 7604141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671413122 RX 8074288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807361007 RX 7605609 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671414721 RX 8075680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3030994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807362594 RX 7607087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671416197 RX 8077188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807364169 RX 7608565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3053990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671417796 RX 8078696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807365768 RX 7610043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671419395 RX 8080204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807367244 RX 7611405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671420994 RX 8081712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807368843 RX 7612873 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671422593 RX 8083104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807370442 RX 7614351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671424069 RX 8084612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807372041 RX 7615829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671425668 RX 8086120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807373616 RX 7617307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671427267 RX 8087628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807375080 RX 7618669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671428866 RX 8089136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807376655 RX 7620137 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671430465 RX 8090528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807378242 RX 7621615 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671431941 RX 8092036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807379817 RX 7623093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671433540 RX 8093544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807381404 RX 7624571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671435139 RX 8095052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807382868 RX 7625933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671436738 RX 8096560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807384455 RX 7627401 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671438337 RX 8097952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807386054 RX 7628879 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671439813 RX 8099460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807387653 RX 7630357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671441412 RX 8100968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807389252 RX 7631835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671443011 RX 8102476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807390728 RX 7633197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671444610 RX 8103984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807392303 RX 7634665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671446209 RX 8105376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807393890 RX 7636143 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671447685 RX 8106884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807395465 RX 7637621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671449284 RX 8108392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807397052 RX 7639099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671450883 RX 8109900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807398516 RX 7640461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671452482 RX 8111408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807400091 RX 7641929 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671454081 RX 8112800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807401678 RX 7643407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671455557 RX 8114308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807403265 RX 7644885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671457156 RX 8115816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807404864 RX 7646363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671458755 RX 8117324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807406340 RX 7647725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671460354 RX 8118832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807407939 RX 7649193 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671461953 RX 8120224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807409538 RX 7650671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671463429 RX 8121732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807411125 RX 7652149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671465028 RX 8123240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807412700 RX 7653627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671466627 RX 8124748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807414164 RX 7654989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671468226 RX 8126256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807415739 RX 7656457 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671469825 RX 8127648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807417326 RX 7657935 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671471301 RX 8129156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807418901 RX 7659413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671472900 RX 8130664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 292993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807420488 RX 7660891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671474499 RX 8132172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807421952 RX 7662253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671476098 RX 8133680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807423551 RX 7663721 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671477697 RX 8135072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807425150 RX 7665199 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671479173 RX 8136580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807426749 RX 7666677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671480772 RX 8138088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807428348 RX 7668155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671482371 RX 8139596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807429812 RX 7669517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671483970 RX 8141104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807431387 RX 7670985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671485569 RX 8142496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807432974 RX 7672463 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 311990/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671487045 RX 8144004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807434561 RX 7673941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671488644 RX 8145512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807436136 RX 7675419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671490243 RX 8147020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807437600 RX 7676781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671491842 RX 8148528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807439175 RX 7678249 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671493441 RX 8149920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807440762 RX 7679727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671494917 RX 8151428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807442361 RX 7681205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671496516 RX 8152936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807443960 RX 7682683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671498115 RX 8154444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807445436 RX 7684045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671499714 RX 8155952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807447035 RX 7685513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671501313 RX 8157344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807448622 RX 7686991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671502789 RX 8158852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807450209 RX 7688469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671504388 RX 8160360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807451784 RX 7689947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671505987 RX 8161868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807453248 RX 7691309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671507586 RX 8163376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807454823 RX 7692777 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671509185 RX 8164768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807456410 RX 7694255 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671510661 RX 8166276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807457997 RX 7695733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671512260 RX 8167784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807459572 RX 7697211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671513859 RX 8169292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807461048 RX 7698573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671515458 RX 8170800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807462647 RX 7700041 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671517057 RX 8172192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807464246 RX 7701519 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671518533 RX 8173700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807465845 RX 7702997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671520132 RX 8175208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807467444 RX 7704475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671521731 RX 8176716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807468896 RX 7705837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671523330 RX 8178224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807470471 RX 7707305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671524929 RX 8179616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807472058 RX 7708783 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671526405 RX 8181124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807473645 RX 7710261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671528004 RX 8182632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807475220 RX 7711739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671529603 RX 8184140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807476684 RX 7713101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671531202 RX 8185648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807478259 RX 7714569 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671532801 RX 8187040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807479858 RX 7716047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671534277 RX 8188548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807481457 RX 7717525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671535876 RX 8190056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807483056 RX 7719003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671537475 RX 8191564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3031992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807484532 RX 7720365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671539074 RX 8193072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807486131 RX 7721833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3054989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671540673 RX 8194464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293543/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807487706 RX 7723311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671542149 RX 8195972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807489293 RX 7724789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671543748 RX 8197480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807490868 RX 7726267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671545347 RX 8198988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807492332 RX 7727629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671546946 RX 8200496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807493907 RX 7729097 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671548545 RX 8201888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807495494 RX 7730575 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671550021 RX 8203396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807497081 RX 7732053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671551620 RX 8204904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807498668 RX 7733531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671553219 RX 8206412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807500144 RX 7734893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671554818 RX 8207920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807501743 RX 7736361 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671556417 RX 8209312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807503342 RX 7737839 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671557893 RX 8210820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807504941 RX 7739317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671559492 RX 8212328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807506528 RX 7740795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671561091 RX 8213836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807507980 RX 7742157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671562690 RX 8215344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807509555 RX 7743625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671564289 RX 8216736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807511142 RX 7745103 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671565765 RX 8218244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807512729 RX 7746581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671567364 RX 8219752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807514304 RX 7748059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671568963 RX 8221260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807515768 RX 7749421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671570562 RX 8222768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807517355 RX 7750889 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671572161 RX 8224160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807518954 RX 7752367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671573637 RX 8225668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807520553 RX 7753845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671575236 RX 8227176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807522152 RX 7755323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671576835 RX 8228684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807523628 RX 7756685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671578434 RX 8230192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807525215 RX 7758153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671580033 RX 8231584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807526790 RX 7759631 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671581509 RX 8233092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807528377 RX 7761109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671583108 RX 8234600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807529964 RX 7762587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671584707 RX 8236108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807531416 RX 7763949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671586306 RX 8237616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807532991 RX 7765417 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671587905 RX 8239008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807534578 RX 7766895 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671589381 RX 8240516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807536165 RX 7768373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671590980 RX 8242024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807537764 RX 7769851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671592579 RX 8243532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807539240 RX 7771213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671594178 RX 8245040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807540839 RX 7772681 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671595777 RX 8246432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 293991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807542438 RX 7774159 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671597253 RX 8247940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807544025 RX 7775637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671598852 RX 8249448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807545612 RX 7777115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671600451 RX 8250956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807547064 RX 7778477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671602050 RX 8252464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807548651 RX 7779945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671603649 RX 8253856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807550226 RX 7781423 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671605125 RX 8255364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807551813 RX 7782901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671606724 RX 8256872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807553400 RX 7784379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671608323 RX 8258380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807554852 RX 7785741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 312989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671609922 RX 8259888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807556451 RX 7787209 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671611521 RX 8261280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807558050 RX 7788687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671612997 RX 8262788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807559649 RX 7790165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671614596 RX 8264296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807561248 RX 7791643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671616195 RX 8265804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807562724 RX 7793005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671617794 RX 8267312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807564299 RX 7794473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671619393 RX 8268704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294183/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807565874 RX 7795951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671620869 RX 8270212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807567461 RX 7797429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671622468 RX 8271720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807569048 RX 7798907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671624067 RX 8273228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807570500 RX 7800269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671625666 RX 8274736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807572087 RX 7801737 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671627265 RX 8276128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807573662 RX 7803215 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671628741 RX 8277636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807575261 RX 7804693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671630340 RX 8279144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807576860 RX 7806171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671631939 RX 8280652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807578336 RX 7807533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671633538 RX 8282160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807579935 RX 7809001 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671635137 RX 8283552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807581534 RX 7810479 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671636613 RX 8285060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807583109 RX 7811957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671638212 RX 8286568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807584696 RX 7813435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671639811 RX 8288076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807586148 RX 7814797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671641410 RX 8289584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807587735 RX 7816265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671643009 RX 8290976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807589310 RX 7817743 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313270/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671644485 RX 8292484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807590897 RX 7819221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671646084 RX 8293992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807592484 RX 7820699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671647683 RX 8295500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807593948 RX 7822061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671649282 RX 8297008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807595547 RX 7823529 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671650881 RX 8298400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807597146 RX 7825007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671652357 RX 8299908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807598745 RX 7826485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671653956 RX 8301416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807600344 RX 7827963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671655555 RX 8302924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807601808 RX 7829325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671657154 RX 8304432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807603383 RX 7830793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671658753 RX 8305824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807604958 RX 7832271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671660229 RX 8307332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3032991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807606545 RX 7833749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671661828 RX 8308840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807608132 RX 7835227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3055987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671663427 RX 8310348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807609584 RX 7836589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671665026 RX 8311856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807611171 RX 7838057 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671666625 RX 8313248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807612758 RX 7839535 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671668101 RX 8314756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807614357 RX 7841013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671669700 RX 8316264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807615956 RX 7842491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671671299 RX 8317772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807617432 RX 7843853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671672898 RX 8319280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807619031 RX 7845321 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671674497 RX 8320672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807620618 RX 7846799 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671675973 RX 8322180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807622193 RX 7848277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671677572 RX 8323688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807623780 RX 7849755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671679171 RX 8325196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807625244 RX 7851117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671680770 RX 8326704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807626819 RX 7852585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671682369 RX 8328096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807628394 RX 7854063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671683845 RX 8329604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807629981 RX 7855541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671685444 RX 8331112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807631568 RX 7857019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671687043 RX 8332620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807633044 RX 7858381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671688642 RX 8334128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807634643 RX 7859849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671690241 RX 8335520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807636242 RX 7861327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671691717 RX 8337028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807637841 RX 7862805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671693316 RX 8338536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807639428 RX 7864283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671694915 RX 8340044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807640892 RX 7865645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671696514 RX 8341552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807642467 RX 7867113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671698113 RX 8342944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807644054 RX 7868591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671699589 RX 8344452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807645629 RX 7870069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671701188 RX 8345960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807647216 RX 7871547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671702787 RX 8347468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807648680 RX 7872909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671704386 RX 8348976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807650255 RX 7874377 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671705985 RX 8350368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807651854 RX 7875855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671707461 RX 8351876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807653453 RX 7877333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671709060 RX 8353384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807655052 RX 7878811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671710659 RX 8354892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807656528 RX 7880173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671712258 RX 8356400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807658115 RX 7881641 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671713857 RX 8357792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807659702 RX 7883119 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671715333 RX 8359300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807661277 RX 7884597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671716932 RX 8360808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807662864 RX 7886075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671718531 RX 8362316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 294989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807664328 RX 7887437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671720130 RX 8363824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807665903 RX 7888905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671721729 RX 8365216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807667490 RX 7890383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671723205 RX 8366724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807669065 RX 7891861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671724804 RX 8368232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807670664 RX 7893339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671726403 RX 8369740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807672140 RX 7894701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671728002 RX 8371248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807673739 RX 7896169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671729601 RX 8372640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807675338 RX 7897647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671731077 RX 8374148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807676937 RX 7899125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 313987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671732676 RX 8375656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807678512 RX 7900603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671734275 RX 8377164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807679976 RX 7901965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671735874 RX 8378672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807681551 RX 7903433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671737473 RX 8380064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295143/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807683138 RX 7904911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671738949 RX 8381572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807684713 RX 7906389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671740548 RX 8383080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807686300 RX 7907867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671742147 RX 8384588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807687764 RX 7909229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671743746 RX 8386096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807689351 RX 7910697 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671745345 RX 8387488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807690950 RX 7912175 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671746821 RX 8388996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807692549 RX 7913653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671748420 RX 8390504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807694148 RX 7915131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671750019 RX 8392012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807695624 RX 7916493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671751618 RX 8393520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807697199 RX 7917961 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671753217 RX 8394912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807698786 RX 7919439 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671754693 RX 8396420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807700361 RX 7920917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671756292 RX 8397928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807701948 RX 7922395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671757891 RX 8399436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807703412 RX 7923757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671759490 RX 8400944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807704987 RX 7925225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671761089 RX 8402336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807706574 RX 7926703 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671762565 RX 8403844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807708161 RX 7928181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671764164 RX 8405352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807709760 RX 7929659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671765763 RX 8406860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807711236 RX 7931021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671767362 RX 8408368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807712835 RX 7932489 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671768961 RX 8409760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807714434 RX 7933967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671770437 RX 8411268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807716021 RX 7935445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671772036 RX 8412776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807717596 RX 7936923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671773635 RX 8414284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807719060 RX 7938285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671775234 RX 8415792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807720635 RX 7939753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671776833 RX 8417184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295463/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807722222 RX 7941231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671778309 RX 8418692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807723797 RX 7942709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671779908 RX 8420200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807725384 RX 7944187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671781507 RX 8421708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807726848 RX 7945549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671783106 RX 8423216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3033989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807728447 RX 7947017 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671784705 RX 8424608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807730046 RX 7948495 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671786181 RX 8426116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807731645 RX 7949973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3056998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671787780 RX 8427624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807733244 RX 7951451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671789379 RX 8429132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807734708 RX 7952813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671790978 RX 8430640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807736283 RX 7954281 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671792577 RX 8432032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807737870 RX 7955759 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671794053 RX 8433540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807739457 RX 7957237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671795652 RX 8435048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807741032 RX 7958715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671797251 RX 8436556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807742496 RX 7960077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671798850 RX 8438064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807744071 RX 7961545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671800449 RX 8439456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807745658 RX 7963023 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314550/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671801925 RX 8440964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807747257 RX 7964501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671803524 RX 8442472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807748856 RX 7965979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671805123 RX 8443980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807750332 RX 7967341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671806722 RX 8445488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807751931 RX 7968809 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671808321 RX 8446880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807753518 RX 7970287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671809797 RX 8448388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807755105 RX 7971765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671811396 RX 8449896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807756680 RX 7973243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671812995 RX 8451404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807758144 RX 7974605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671814594 RX 8452912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807759719 RX 7976073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671816193 RX 8454304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807761306 RX 7977551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671817669 RX 8455812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807762893 RX 7979029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671819268 RX 8457320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807764468 RX 7980507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671820867 RX 8458828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807765944 RX 7981869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671822466 RX 8460336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807767543 RX 7983337 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671824065 RX 8461728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807769142 RX 7984815 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671825541 RX 8463236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807770741 RX 7986293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671827140 RX 8464744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807772340 RX 7987771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671828739 RX 8466252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807773792 RX 7989133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671830338 RX 8467760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807775367 RX 7990601 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671831937 RX 8469152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807776954 RX 7992079 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671833413 RX 8470660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807778541 RX 7993557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671835012 RX 8472168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807780116 RX 7995035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671836611 RX 8473676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807781580 RX 7996397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671838210 RX 8475184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807783155 RX 7997865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671839809 RX 8476576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807784754 RX 7999343 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671841285 RX 8478084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 295988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807786353 RX 8000821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671842884 RX 8479592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807787952 RX 8002299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671844483 RX 8481100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807789428 RX 8003661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671846082 RX 8482608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807791027 RX 8005129 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671847681 RX 8484000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807792602 RX 8006607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671849157 RX 8485508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807794189 RX 8008085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671850756 RX 8487016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807795764 RX 8009563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671852355 RX 8488524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807797228 RX 8010925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671853954 RX 8490032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807798803 RX 8012393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671855553 RX 8491424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296103/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807800390 RX 8013871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 314998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671857029 RX 8492932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807801977 RX 8015349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671858628 RX 8494440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807803564 RX 8016827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671860227 RX 8495948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807805040 RX 8018189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671861826 RX 8497456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807806639 RX 8019657 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671863425 RX 8498848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807808238 RX 8021135 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671864901 RX 8500356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807809837 RX 8022613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671866500 RX 8501864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807811424 RX 8024091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671868099 RX 8503372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807812876 RX 8025453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671869698 RX 8504880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807814451 RX 8026921 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671871297 RX 8506272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807816038 RX 8028399 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671872773 RX 8507780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807817625 RX 8029877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671874372 RX 8509288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807819200 RX 8031355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671875971 RX 8510796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807820664 RX 8032717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671877570 RX 8512304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807822251 RX 8034185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671879169 RX 8513696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807823850 RX 8035663 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671880645 RX 8515204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807825449 RX 8037141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671882244 RX 8516712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807827048 RX 8038619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671883843 RX 8518220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807828524 RX 8039981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671885442 RX 8519728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807830111 RX 8041449 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671887041 RX 8521120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807831686 RX 8042927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671888517 RX 8522628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807833273 RX 8044405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671890116 RX 8524136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807834860 RX 8045883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671891715 RX 8525644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807836312 RX 8047245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671893314 RX 8527152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807837887 RX 8048713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671894913 RX 8528544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296423/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807839474 RX 8050191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671896389 RX 8530052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807841061 RX 8051669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671897988 RX 8531560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807842660 RX 8053147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671899587 RX 8533068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807844136 RX 8054509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671901186 RX 8534576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807845735 RX 8055977 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671902785 RX 8535968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807847334 RX 8057455 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671904261 RX 8537476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807848921 RX 8058933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671905860 RX 8538984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3034988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807850508 RX 8060411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671907459 RX 8540492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807851960 RX 8061773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671909058 RX 8542000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807853547 RX 8063241 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3057997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671910657 RX 8543392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807855122 RX 8064719 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671912133 RX 8544900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807856709 RX 8066197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671913732 RX 8546408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807858296 RX 8067675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671915331 RX 8547916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807859748 RX 8069037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671916930 RX 8549424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807861347 RX 8070505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671918529 RX 8550816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807862946 RX 8071983 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671920005 RX 8552324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807864545 RX 8073461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671921604 RX 8553832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807866144 RX 8074939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671923203 RX 8555340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807867620 RX 8076301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671924802 RX 8556848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807869195 RX 8077769 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671926401 RX 8558240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807870770 RX 8079247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671927877 RX 8559748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807872357 RX 8080725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671929476 RX 8561256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807873944 RX 8082203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671931075 RX 8562764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807875396 RX 8083565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671932674 RX 8564272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807876983 RX 8085033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671934273 RX 8565664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296743/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807878558 RX 8086511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671935749 RX 8567172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807880157 RX 8087989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671937348 RX 8568680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807881756 RX 8089467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671938947 RX 8570188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807883232 RX 8090829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671940546 RX 8571696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807884831 RX 8092297 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671942145 RX 8573088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807886430 RX 8093775 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671943621 RX 8574596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807888005 RX 8095253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671945220 RX 8576104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807889592 RX 8096731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671946819 RX 8577612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807891044 RX 8098093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671948418 RX 8579120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807892631 RX 8099561 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671950017 RX 8580512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807894206 RX 8101039 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671951493 RX 8582020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807895793 RX 8102517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671953092 RX 8583528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807897380 RX 8103995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671954691 RX 8585036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807898844 RX 8105357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671956290 RX 8586544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807900443 RX 8106825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671957889 RX 8587936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807902042 RX 8108303 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315830/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671959365 RX 8589444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807903641 RX 8109781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671960964 RX 8590952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807905240 RX 8111259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671962563 RX 8592460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807906704 RX 8112621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671964162 RX 8593968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807908279 RX 8114089 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671965761 RX 8595360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 296999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807909854 RX 8115567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671967237 RX 8596868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297012/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807911441 RX 8117045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671968836 RX 8598376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807913028 RX 8118523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671970435 RX 8599884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807914480 RX 8119885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671972034 RX 8601392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807916067 RX 8121353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671973633 RX 8602784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807917654 RX 8122831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671975109 RX 8604292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807919253 RX 8124309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671976708 RX 8605800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807920852 RX 8125787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671978307 RX 8607308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807922328 RX 8127149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 315997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671979906 RX 8608816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807923927 RX 8128617 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671981505 RX 8610208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807925514 RX 8130095 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671982981 RX 8611716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807927089 RX 8131573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671984580 RX 8613224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807928676 RX 8133051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671986179 RX 8614732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807930140 RX 8134413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671987778 RX 8616240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807931715 RX 8135881 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671989377 RX 8617632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807933290 RX 8137359 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671990853 RX 8619140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807934877 RX 8138837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671992452 RX 8620648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807936464 RX 8140315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671994051 RX 8622156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807937940 RX 8141677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671995650 RX 8623664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807939539 RX 8143145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671997249 RX 8625056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807941138 RX 8144623 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20671998725 RX 8626564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297268/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807942737 RX 8146101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672000324 RX 8628072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807944324 RX 8147579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672001923 RX 8629580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807945788 RX 8148941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672003522 RX 8631088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807947363 RX 8150409 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672005121 RX 8632480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807948950 RX 8151887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672006597 RX 8633988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807950525 RX 8153365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672008196 RX 8635496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807952112 RX 8154843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672009795 RX 8637004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807953576 RX 8156205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672011394 RX 8638512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807955151 RX 8157673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672012993 RX 8639904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807956750 RX 8159151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672014469 RX 8641412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807958349 RX 8160629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672016068 RX 8642920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807959948 RX 8162107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672017667 RX 8644428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807961424 RX 8163469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672019266 RX 8645936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807963011 RX 8164937 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672020865 RX 8647328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807964598 RX 8166415 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672022341 RX 8648836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807966173 RX 8167893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672023940 RX 8650344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807967760 RX 8169371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672025539 RX 8651852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807969224 RX 8170733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672027138 RX 8653360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807970799 RX 8172201 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672028737 RX 8654752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807972386 RX 8173679 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672030213 RX 8656260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3035999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807973961 RX 8175157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672031812 RX 8657768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807975560 RX 8176635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3058995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672033411 RX 8659276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807977036 RX 8177997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672035010 RX 8660784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807978635 RX 8179465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672036609 RX 8662176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807980234 RX 8180943 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672038085 RX 8663684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807981833 RX 8182421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672039684 RX 8665192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807983408 RX 8183899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672041283 RX 8666700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807984872 RX 8185261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672042882 RX 8668208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807986447 RX 8186729 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672044481 RX 8669600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807988034 RX 8188207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672045957 RX 8671108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297652/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807989609 RX 8189685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672047556 RX 8672616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807991196 RX 8191163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672049155 RX 8674124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807992660 RX 8192525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672050754 RX 8675632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807994247 RX 8193993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672052353 RX 8677024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297703/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807995846 RX 8195471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672053829 RX 8678532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807997445 RX 8196949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672055428 RX 8680040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21807999044 RX 8198427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672057027 RX 8681548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808000520 RX 8199789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672058626 RX 8683056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808002095 RX 8201257 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672060225 RX 8684448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808003682 RX 8202735 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672061701 RX 8685956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808005257 RX 8204213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672063300 RX 8687464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808006844 RX 8205691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672064899 RX 8688972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808008308 RX 8207053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672066498 RX 8690480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808009883 RX 8208521 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672068097 RX 8691872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808011470 RX 8209999 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672069573 RX 8693380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808013057 RX 8211477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672071172 RX 8694888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808014656 RX 8212955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672072771 RX 8696396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808016132 RX 8214317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672074370 RX 8697904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808017731 RX 8215785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672075969 RX 8699296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808019330 RX 8217263 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672077445 RX 8700804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808020917 RX 8218741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672079044 RX 8702312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808022492 RX 8220219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672080643 RX 8703820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808023956 RX 8221581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672082242 RX 8705328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808025531 RX 8223049 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672083841 RX 8706720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808027118 RX 8224527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672085317 RX 8708228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808028693 RX 8226005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672086916 RX 8709736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808030280 RX 8227483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672088515 RX 8711244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 297997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808031744 RX 8228845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672090114 RX 8712752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808033343 RX 8230313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672091713 RX 8714144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298023/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808034942 RX 8231791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672093189 RX 8715652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808036541 RX 8233269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672094788 RX 8717160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808038140 RX 8234747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672096387 RX 8718668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808039604 RX 8236109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672097986 RX 8720176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808041179 RX 8237577 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672099585 RX 8721568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808042766 RX 8239055 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672101061 RX 8723076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808044353 RX 8240533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 316995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672102660 RX 8724584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808045928 RX 8242011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672104259 RX 8726092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808047392 RX 8243373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672105858 RX 8727600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808048967 RX 8244841 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672107457 RX 8728992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808050554 RX 8246319 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672108933 RX 8730500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808052153 RX 8247797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672110532 RX 8732008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808053752 RX 8249275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672112131 RX 8733516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808055228 RX 8250637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672113730 RX 8735024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808056827 RX 8252105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672115329 RX 8736416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808058414 RX 8253583 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672116805 RX 8737924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808060001 RX 8255061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672118404 RX 8739432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808061576 RX 8256539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672120003 RX 8740940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808063040 RX 8257901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672121602 RX 8742448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808064615 RX 8259369 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672123201 RX 8743840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808066202 RX 8260847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672124677 RX 8745348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808067789 RX 8262325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672126276 RX 8746856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808069364 RX 8263803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672127875 RX 8748364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808070840 RX 8265165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672129474 RX 8749872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808072439 RX 8266633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672131073 RX 8751264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808074038 RX 8268111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672132549 RX 8752772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808075637 RX 8269589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672134148 RX 8754280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808077236 RX 8271067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672135747 RX 8755788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808078688 RX 8272429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672137346 RX 8757296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808080263 RX 8273897 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672138945 RX 8758688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808081850 RX 8275375 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672140421 RX 8760196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808083437 RX 8276853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672142020 RX 8761704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808085012 RX 8278331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672143619 RX 8763212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808086476 RX 8279693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672145218 RX 8764720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808088051 RX 8281161 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672146817 RX 8766112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808089650 RX 8282639 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672148293 RX 8767620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808091249 RX 8284117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672149892 RX 8769128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808092848 RX 8285595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672151491 RX 8770636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808094324 RX 8286957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672153090 RX 8772144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3036997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808095923 RX 8288425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672154689 RX 8773536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808097498 RX 8289903 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3059993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317430/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672156165 RX 8775044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808099085 RX 8291381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672157764 RX 8776552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808100660 RX 8292859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672159363 RX 8778060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808102124 RX 8294221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672160962 RX 8779568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808103699 RX 8295689 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672162561 RX 8780960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808105286 RX 8297167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672164037 RX 8782468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808106873 RX 8298645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672165636 RX 8783976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808108460 RX 8300123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672167235 RX 8785484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808109936 RX 8301485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672168834 RX 8786992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808111535 RX 8302953 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672170433 RX 8788384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808113134 RX 8304431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672171909 RX 8789892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808114733 RX 8305909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672173508 RX 8791400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808116320 RX 8307387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672175107 RX 8792908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808117772 RX 8308749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672176706 RX 8794416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808119347 RX 8310217 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672178305 RX 8795808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808120934 RX 8311695 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672179781 RX 8797316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808122521 RX 8313173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672181380 RX 8798824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808124096 RX 8314651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672182979 RX 8800332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808125560 RX 8316013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672184578 RX 8801840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808127147 RX 8317481 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672186177 RX 8803232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808128746 RX 8318959 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672187653 RX 8804740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808130345 RX 8320437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672189252 RX 8806248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808131944 RX 8321915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672190851 RX 8807756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808133420 RX 8323277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672192450 RX 8809264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808135007 RX 8324745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672194049 RX 8810656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808136582 RX 8326223 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672195525 RX 8812164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808138169 RX 8327701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672197124 RX 8813672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808139756 RX 8329179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672198723 RX 8815180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808141208 RX 8330541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672200322 RX 8816688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808142783 RX 8332009 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672201921 RX 8818080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808144370 RX 8333487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672203397 RX 8819588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808145957 RX 8334965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672204996 RX 8821096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808147556 RX 8336443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672206595 RX 8822604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808149032 RX 8337805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672208194 RX 8824112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808150631 RX 8339273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672209793 RX 8825504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298983/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808152230 RX 8340751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672211269 RX 8827012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 298996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808153817 RX 8342229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672212868 RX 8828520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808155404 RX 8343707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672214467 RX 8830028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808156856 RX 8345069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672216066 RX 8831536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808158443 RX 8346537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672217665 RX 8832928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808160018 RX 8348015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672219141 RX 8834436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808161605 RX 8349493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672220740 RX 8835944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808163192 RX 8350971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672222339 RX 8837452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808164644 RX 8352333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672223938 RX 8838960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808166243 RX 8353801 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 317993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672225537 RX 8840352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808167842 RX 8355279 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672227013 RX 8841860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808169441 RX 8356757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672228612 RX 8843368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808171040 RX 8358235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672230211 RX 8844876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808172516 RX 8359597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672231810 RX 8846384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808174091 RX 8361065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672233409 RX 8847776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808175666 RX 8362543 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672234885 RX 8849284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299188/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808177253 RX 8364021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672236484 RX 8850792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808178840 RX 8365499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672238083 RX 8852300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808180292 RX 8366861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672239682 RX 8853808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808181879 RX 8368329 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672241281 RX 8855200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808183454 RX 8369807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672242757 RX 8856708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808185053 RX 8371285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672244356 RX 8858216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808186652 RX 8372763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672245955 RX 8859724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808188128 RX 8374125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672247554 RX 8861232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808189727 RX 8375593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672249153 RX 8862624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299303/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808191326 RX 8377071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672250629 RX 8864132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808192901 RX 8378549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672252228 RX 8865640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808194488 RX 8380027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672253827 RX 8867148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808195940 RX 8381389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672255426 RX 8868656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808197527 RX 8382857 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672257025 RX 8870048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808199102 RX 8384335 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672258501 RX 8871556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808200689 RX 8385813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672260100 RX 8873064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808202276 RX 8387291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672261699 RX 8874572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808203740 RX 8388653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672263298 RX 8876080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808205339 RX 8390121 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672264897 RX 8877472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808206938 RX 8391599 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672266373 RX 8878980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808208537 RX 8393077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672267972 RX 8880488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808210136 RX 8394555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672269571 RX 8881996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808211600 RX 8395917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672271170 RX 8883504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808213175 RX 8397385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672272769 RX 8884896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808214750 RX 8398863 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672274245 RX 8886404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808216337 RX 8400341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672275844 RX 8887912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3037996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808217924 RX 8401819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672277443 RX 8889420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808219376 RX 8403181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3060992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672279042 RX 8890928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808220963 RX 8404649 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672280641 RX 8892320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808222550 RX 8406127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672282117 RX 8893828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808224149 RX 8407605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672283716 RX 8895336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808225748 RX 8409083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672285315 RX 8896844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808227224 RX 8410445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672286914 RX 8898352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808228823 RX 8411913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672288513 RX 8899744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299623/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808230410 RX 8413391 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672289989 RX 8901252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808231985 RX 8414869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672291588 RX 8902760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808233572 RX 8416347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672293187 RX 8904268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808235036 RX 8417709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672294786 RX 8905776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808236611 RX 8419177 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672296385 RX 8907168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808238186 RX 8420655 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672297861 RX 8908676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808239773 RX 8422133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672299460 RX 8910184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808241360 RX 8423611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672301059 RX 8911692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808242836 RX 8424973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672302658 RX 8913200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808244435 RX 8426441 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672304257 RX 8914592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808246034 RX 8427919 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672305733 RX 8916100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808247633 RX 8429397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672307332 RX 8917608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808249220 RX 8430875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672308931 RX 8919116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808250684 RX 8432237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672310530 RX 8920624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808252259 RX 8433705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672312129 RX 8922016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808253846 RX 8435183 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318710/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672313605 RX 8923524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808255421 RX 8436661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672315204 RX 8925032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808257008 RX 8438139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672316803 RX 8926540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808258472 RX 8439501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672318402 RX 8928048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808260047 RX 8440969 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672320001 RX 8929440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808261646 RX 8442447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672321477 RX 8930948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808263245 RX 8443925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672323076 RX 8932456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808264844 RX 8445403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672324675 RX 8933964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808266320 RX 8446765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672326274 RX 8935472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808267907 RX 8448233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672327873 RX 8936864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808269494 RX 8449711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672329349 RX 8938372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808271069 RX 8451189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672330948 RX 8939880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808272656 RX 8452667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672332547 RX 8941388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808274120 RX 8454029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672334146 RX 8942896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 299994/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808275695 RX 8455497 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672335745 RX 8944288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808277282 RX 8456975 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672337221 RX 8945796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808278857 RX 8458453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672338820 RX 8947304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808280456 RX 8459931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672340419 RX 8948812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808281932 RX 8461293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672342018 RX 8950320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808283531 RX 8462761 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672343617 RX 8951712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808285130 RX 8464239 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672345093 RX 8953220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808286729 RX 8465717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672346692 RX 8954728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808288304 RX 8467195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 318992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672348291 RX 8956236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808289768 RX 8468557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672349890 RX 8957744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808291343 RX 8470025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672351489 RX 8959136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808292930 RX 8471503 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672352965 RX 8960644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808294505 RX 8472981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672354564 RX 8962152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808296092 RX 8474459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672356163 RX 8963660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808297556 RX 8475821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672357762 RX 8965168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808299143 RX 8477289 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672359361 RX 8966560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808300742 RX 8478767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672360837 RX 8968068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808302341 RX 8480245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672362436 RX 8969576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808303940 RX 8481723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672364035 RX 8971084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808305416 RX 8483085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672365634 RX 8972592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808306991 RX 8484553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672367233 RX 8973984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300263/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808308578 RX 8486031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672368709 RX 8975492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808310153 RX 8487509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672370308 RX 8977000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808311740 RX 8488987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672371907 RX 8978508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808313204 RX 8490349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672373506 RX 8980016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808314779 RX 8491817 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672375105 RX 8981408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808316366 RX 8493295 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672376581 RX 8982916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808317953 RX 8494773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672378180 RX 8984424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808319552 RX 8496251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672379779 RX 8985932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808321028 RX 8497613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672381378 RX 8987440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808322627 RX 8499081 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672382977 RX 8988832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808324226 RX 8500559 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672384453 RX 8990340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808325813 RX 8502037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672386052 RX 8991848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808327388 RX 8503515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672387651 RX 8993356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808328852 RX 8504877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672389250 RX 8994864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808330427 RX 8506345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672390849 RX 8996256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808332014 RX 8507823 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672392325 RX 8997764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808333589 RX 8509301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672393924 RX 8999272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808335176 RX 8510779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672395523 RX 9000780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808336640 RX 8512141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672397122 RX 9002288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808338239 RX 8513609 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672398721 RX 9003680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3038994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808339838 RX 8515087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672400197 RX 9005188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808341437 RX 8516565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3061990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672401796 RX 9006696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808343036 RX 8518043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672403395 RX 9008204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808344500 RX 8519405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672404994 RX 9009712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808346075 RX 8520873 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672406593 RX 9011104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808347662 RX 8522351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672408069 RX 9012612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808349249 RX 8523829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672409668 RX 9014120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808350824 RX 8525307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672411267 RX 9015628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808352288 RX 8526669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672412866 RX 9017136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808353863 RX 8528137 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672414465 RX 9018528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808355450 RX 8529615 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672415941 RX 9020036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808357049 RX 8531093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672417540 RX 9021544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808358648 RX 8532571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672419139 RX 9023052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808360124 RX 8533933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672420738 RX 9024560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808361723 RX 8535401 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672422337 RX 9025952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808363310 RX 8536879 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672423813 RX 9027460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808364897 RX 8538357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672425412 RX 9028968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808366472 RX 8539835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672427011 RX 9030476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808367936 RX 8541197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672428610 RX 9031984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808369511 RX 8542665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672430209 RX 9033376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808371098 RX 8544143 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672431685 RX 9034884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808372685 RX 8545621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672433284 RX 9036392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808374260 RX 8547099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672434883 RX 9037900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808375736 RX 8548461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672436482 RX 9039408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808377335 RX 8549929 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672438081 RX 9040800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808378934 RX 8551407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672439557 RX 9042308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808380533 RX 8552885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672441156 RX 9043816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808382132 RX 8554363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672442755 RX 9045324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808383584 RX 8555725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672444354 RX 9046832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808385159 RX 8557193 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672445953 RX 9048224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808386746 RX 8558671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672447429 RX 9049732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808388333 RX 8560149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672449028 RX 9051240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808389908 RX 8561627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672450627 RX 9052748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808391372 RX 8562989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672452226 RX 9054256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808392947 RX 8564457 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672453825 RX 9055648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808394546 RX 8565935 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672455301 RX 9057156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808396145 RX 8567413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672456900 RX 9058664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 300993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808397744 RX 8568891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672458499 RX 9060172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808399220 RX 8570253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672460098 RX 9061680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808400819 RX 8571721 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672461697 RX 9063072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808402394 RX 8573199 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672463173 RX 9064580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808403981 RX 8574677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672464772 RX 9066088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808405556 RX 8576155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672466371 RX 9067596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808407020 RX 8577517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672467970 RX 9069104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808408595 RX 8578985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672469569 RX 9070496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808410182 RX 8580463 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 319990/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672471045 RX 9072004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808411769 RX 8581941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672472644 RX 9073512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808413356 RX 8583419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672474243 RX 9075020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808414832 RX 8584781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672475842 RX 9076528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808416431 RX 8586249 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672477441 RX 9077920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808418030 RX 8587727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672478917 RX 9079428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808419629 RX 8589205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672480516 RX 9080936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808421216 RX 8590683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672482115 RX 9082444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808422668 RX 8592045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672483714 RX 9083952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808424243 RX 8593513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672485313 RX 9085344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808425830 RX 8594991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672486789 RX 9086852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808427417 RX 8596469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672488388 RX 9088360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808428992 RX 8597947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672489987 RX 9089868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808430456 RX 8599309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672491586 RX 9091376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808432043 RX 8600777 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672493185 RX 9092768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808433642 RX 8602255 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672494661 RX 9094276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808435241 RX 8603733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672496260 RX 9095784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808436840 RX 8605211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672497859 RX 9097292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808438316 RX 8606573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672499458 RX 9098800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808439903 RX 8608041 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672501057 RX 9100192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808441478 RX 8609519 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672502533 RX 9101700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808443065 RX 8610997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672504132 RX 9103208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808444652 RX 8612475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672505731 RX 9104716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808446104 RX 8613837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672507330 RX 9106224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808447679 RX 8615305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672508929 RX 9107616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808449266 RX 8616783 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672510405 RX 9109124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808450853 RX 8618261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672512004 RX 9110632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808452452 RX 8619739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672513603 RX 9112140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808453928 RX 8621101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672515202 RX 9113648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808455527 RX 8622569 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672516801 RX 9115040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808457126 RX 8624047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672518277 RX 9116548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808458713 RX 8625525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672519876 RX 9118056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808460300 RX 8627003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672521475 RX 9119564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3039992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808461752 RX 8628365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672523074 RX 9121072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808463339 RX 8629833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3062989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672524673 RX 9122464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301543/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808464914 RX 8631311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672526149 RX 9123972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808466501 RX 8632789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672527748 RX 9125480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808468088 RX 8634267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672529347 RX 9126988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808469540 RX 8635629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672530946 RX 9128496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808471139 RX 8637097 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672532545 RX 9129888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808472738 RX 8638575 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672534021 RX 9131396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808474337 RX 8640053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672535620 RX 9132904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808475936 RX 8641531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672537219 RX 9134412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808477412 RX 8642893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672538818 RX 9135920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808478987 RX 8644361 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672540417 RX 9137312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808480562 RX 8645839 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672541893 RX 9138820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808482149 RX 8647317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672543492 RX 9140328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808483736 RX 8648795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672545091 RX 9141836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808485188 RX 8650157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672546690 RX 9143344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808486775 RX 8651625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672548289 RX 9144736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808488350 RX 8653103 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672549765 RX 9146244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808489949 RX 8654581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672551364 RX 9147752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808491548 RX 8656059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672552963 RX 9149260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808493024 RX 8657421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672554562 RX 9150768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808494623 RX 8658889 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672556161 RX 9152160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808496222 RX 8660367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672557637 RX 9153668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808497797 RX 8661845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672559236 RX 9155176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808499384 RX 8663323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672560835 RX 9156684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808500836 RX 8664685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672562434 RX 9158192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808502423 RX 8666153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672564033 RX 9159584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808503998 RX 8667631 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672565509 RX 9161092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808505585 RX 8669109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672567108 RX 9162600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808507172 RX 8670587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672568707 RX 9164108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808508636 RX 8671949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672570306 RX 9165616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808510235 RX 8673417 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672571905 RX 9167008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808511834 RX 8674895 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672573381 RX 9168516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808513433 RX 8676373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672574980 RX 9170024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808515032 RX 8677851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672576579 RX 9171532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808516496 RX 8679213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672578178 RX 9173040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808518071 RX 8680681 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672579777 RX 9174432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 301991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808519646 RX 8682159 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672581253 RX 9175940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808521233 RX 8683637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672582852 RX 9177448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808522820 RX 8685115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672584451 RX 9178956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808524272 RX 8686477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672586050 RX 9180464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808525859 RX 8687945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672587649 RX 9181856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808527446 RX 8689423 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672589125 RX 9183364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808529045 RX 8690901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672590724 RX 9184872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808530644 RX 8692379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672592323 RX 9186380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808532120 RX 8693741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 320989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672593922 RX 9187888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808533719 RX 8695209 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672595521 RX 9189280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808535306 RX 8696687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672596997 RX 9190788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808536881 RX 8698165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672598596 RX 9192296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808538468 RX 8699643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672600195 RX 9193804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808539932 RX 8701005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672601794 RX 9195312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808541507 RX 8702473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672603393 RX 9196704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302183/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808543082 RX 8703951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672604869 RX 9198212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808544669 RX 8705429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672606468 RX 9199720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808546256 RX 8706907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672608067 RX 9201228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808547732 RX 8708269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672609666 RX 9202736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808549331 RX 8709737 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672611265 RX 9204128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808550930 RX 8711215 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672612741 RX 9205636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808552529 RX 8712693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672614340 RX 9207144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808554116 RX 8714171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672615939 RX 9208652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808555580 RX 8715533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672617538 RX 9210160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808557155 RX 8717001 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672619137 RX 9211552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808558742 RX 8718479 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672620613 RX 9213060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808560317 RX 8719957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672622212 RX 9214568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808561904 RX 8721435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672623811 RX 9216076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808563368 RX 8722797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672625410 RX 9217584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808564943 RX 8724265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672627009 RX 9218976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808566542 RX 8725743 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321270/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672628485 RX 9220484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808568141 RX 8727221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672630084 RX 9221992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808569740 RX 8728699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672631683 RX 9223500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808571216 RX 8730061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672633282 RX 9225008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808572803 RX 8731529 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672634881 RX 9226400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808574390 RX 8733007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672636357 RX 9227908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808575965 RX 8734485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672637956 RX 9229416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808577552 RX 8735963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672639555 RX 9230924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808579016 RX 8737325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672641154 RX 9232432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808580591 RX 8738793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672642753 RX 9233824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808582178 RX 8740271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672644229 RX 9235332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3040991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808583753 RX 8741749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672645828 RX 9236840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808585352 RX 8743227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3063987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672647427 RX 9238348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808586828 RX 8744589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672649026 RX 9239856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808588427 RX 8746057 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672650625 RX 9241248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808590026 RX 8747535 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672652101 RX 9242756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808591625 RX 8749013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672653700 RX 9244264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808593200 RX 8750491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672655299 RX 9245772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808594664 RX 8751853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672656898 RX 9247280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808596239 RX 8753321 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672658497 RX 9248672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808597826 RX 8754799 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672659973 RX 9250180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808599401 RX 8756277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672661572 RX 9251688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808600988 RX 8757755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672663171 RX 9253196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808602452 RX 8759117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672664770 RX 9254704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808604039 RX 8760585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672666369 RX 9256096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808605638 RX 8762063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672667845 RX 9257604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808607237 RX 8763541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672669444 RX 9259112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808608836 RX 8765019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672671043 RX 9260620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808610312 RX 8766381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672672642 RX 9262128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808611887 RX 8767849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672674241 RX 9263520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808613474 RX 8769327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672675717 RX 9265028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808615049 RX 8770805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672677316 RX 9266536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808616636 RX 8772283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672678915 RX 9268044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808618100 RX 8773645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672680514 RX 9269552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808619675 RX 8775113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672682113 RX 9270944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808621262 RX 8776591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672683589 RX 9272452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808622849 RX 8778069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672685188 RX 9273960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808624448 RX 8779547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672686787 RX 9275468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808625924 RX 8780909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672688386 RX 9276976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808627523 RX 8782377 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672689985 RX 9278368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808629122 RX 8783855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672691461 RX 9279876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808630709 RX 8785333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672693060 RX 9281384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808632284 RX 8786811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672694659 RX 9282892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808633748 RX 8788173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672696258 RX 9284400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808635323 RX 8789641 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672697857 RX 9285792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808636910 RX 8791119 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672699333 RX 9287300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808638485 RX 8792597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672700932 RX 9288808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808640072 RX 8794075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672702531 RX 9290316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 302989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808641536 RX 8795437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672704130 RX 9291824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808643135 RX 8796905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672705729 RX 9293216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808644734 RX 8798383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672707205 RX 9294724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808646333 RX 8799861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672708804 RX 9296232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808647932 RX 8801339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672710403 RX 9297740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808649396 RX 8802701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672712002 RX 9299248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808650971 RX 8804169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672713601 RX 9300640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808652558 RX 8805647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672715077 RX 9302148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808654145 RX 8807125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 321987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672716676 RX 9303656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808655720 RX 8808603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672718275 RX 9305164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808657184 RX 8809965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672719874 RX 9306672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808658759 RX 8811433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672721473 RX 9308064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303143/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808660346 RX 8812911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672722949 RX 9309572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808661945 RX 8814389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672724548 RX 9311080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808663544 RX 8815867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672726147 RX 9312588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808665020 RX 8817229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672727746 RX 9314096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808666619 RX 8818697 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672729345 RX 9315488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808668206 RX 8820175 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672730821 RX 9316996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808669793 RX 8821653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672732420 RX 9318504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808671368 RX 8823131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672734019 RX 9320012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808672832 RX 8824493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672735618 RX 9321520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808674407 RX 8825961 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672737217 RX 9322912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808675994 RX 8827439 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672738693 RX 9324420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808677581 RX 8828917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672740292 RX 9325928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808679156 RX 8830395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672741891 RX 9327436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808680632 RX 8831757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672743490 RX 9328944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808682231 RX 8833225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672745089 RX 9330336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808683830 RX 8834703 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672746565 RX 9331844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808685429 RX 8836181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672748164 RX 9333352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808687028 RX 8837659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672749763 RX 9334860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808688480 RX 8839021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672751362 RX 9336368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808690055 RX 8840489 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672752961 RX 9337760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808691642 RX 8841967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672754437 RX 9339268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808693229 RX 8843445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672756036 RX 9340776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808694804 RX 8844923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672757635 RX 9342284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808696268 RX 8846285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672759234 RX 9343792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808697843 RX 8847753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672760833 RX 9345184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303463/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808699442 RX 8849231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672762309 RX 9346692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808701041 RX 8850709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672763908 RX 9348200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808702640 RX 8852187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672765507 RX 9349708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808704116 RX 8853549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672767106 RX 9351216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3041989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808705715 RX 8855017 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672768705 RX 9352608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808707290 RX 8856495 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672770181 RX 9354116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808708877 RX 8857973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3064998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672771780 RX 9355624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808710452 RX 8859451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672773379 RX 9357132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808711916 RX 8860813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672774978 RX 9358640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808713491 RX 8862281 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672776577 RX 9360032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808715078 RX 8863759 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672778053 RX 9361540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808716665 RX 8865237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672779652 RX 9363048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808718252 RX 8866715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672781251 RX 9364556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808719728 RX 8868077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672782850 RX 9366064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808721327 RX 8869545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672784449 RX 9367456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808722926 RX 8871023 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322550/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672785925 RX 9368964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808724525 RX 8872501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672787524 RX 9370472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808726112 RX 8873979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672789123 RX 9371980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808727564 RX 8875341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672790722 RX 9373488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808729139 RX 8876809 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672792321 RX 9374880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808730726 RX 8878287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672793797 RX 9376388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808732313 RX 8879765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672795396 RX 9377896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808733888 RX 8881243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672796995 RX 9379404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808735352 RX 8882605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672798594 RX 9380912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808736939 RX 8884073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672800193 RX 9382304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808738538 RX 8885551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672801669 RX 9383812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808740137 RX 8887029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672803268 RX 9385320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808741736 RX 8888507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672804867 RX 9386828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808743212 RX 8889869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672806466 RX 9388336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808744799 RX 8891337 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672808065 RX 9389728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808746374 RX 8892815 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672809541 RX 9391236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808747961 RX 8894293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672811140 RX 9392744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808749548 RX 8895771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672812739 RX 9394252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808751000 RX 8897133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672814338 RX 9395760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808752575 RX 8898601 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672815937 RX 9397152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808754162 RX 8900079 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672817413 RX 9398660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808755749 RX 8901557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672819012 RX 9400168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808757348 RX 8903035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672820611 RX 9401676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808758824 RX 8904397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672822210 RX 9403184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808760423 RX 8905865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672823809 RX 9404576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808762022 RX 8907343 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672825285 RX 9406084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 303988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808763609 RX 8908821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672826884 RX 9407592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808765196 RX 8910299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672828483 RX 9409100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808766648 RX 8911661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672830082 RX 9410608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808768235 RX 8913129 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672831681 RX 9412000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808769810 RX 8914607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672833157 RX 9413508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808771397 RX 8916085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672834756 RX 9415016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808772984 RX 8917563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672836355 RX 9416524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808774436 RX 8918925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672837954 RX 9418032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808776035 RX 8920393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672839553 RX 9419424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304103/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808777634 RX 8921871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 322998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672841029 RX 9420932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808779233 RX 8923349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672842628 RX 9422440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808780832 RX 8924827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672844227 RX 9423948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808782308 RX 8926189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672845826 RX 9425456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808783883 RX 8927657 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672847425 RX 9426848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808785458 RX 8929135 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672848901 RX 9428356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808787045 RX 8930613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672850500 RX 9429864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808788632 RX 8932091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672852099 RX 9431372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808790084 RX 8933453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672853698 RX 9432880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808791671 RX 8934921 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672855297 RX 9434272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808793246 RX 8936399 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672856773 RX 9435780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808794845 RX 8937877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672858372 RX 9437288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808796444 RX 8939355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672859971 RX 9438796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808797920 RX 8940717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672861570 RX 9440304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808799519 RX 8942185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672863169 RX 9441696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808801118 RX 8943663 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672864645 RX 9443204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808802693 RX 8945141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672866244 RX 9444712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808804280 RX 8946619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672867843 RX 9446220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808805732 RX 8947981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672869442 RX 9447728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808807319 RX 8949449 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672871041 RX 9449120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808808894 RX 8950927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672872517 RX 9450628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808810481 RX 8952405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672874116 RX 9452136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808812068 RX 8953883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672875715 RX 9453644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808813532 RX 8955245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672877314 RX 9455152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808815131 RX 8956713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672878913 RX 9456544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304423/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808816730 RX 8958191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672880389 RX 9458052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808818329 RX 8959669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672881988 RX 9459560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808819928 RX 8961147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672883587 RX 9461068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808821392 RX 8962509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672885186 RX 9462576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808822967 RX 8963977 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672886785 RX 9463968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808824542 RX 8965455 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672888261 RX 9465476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808826129 RX 8966933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672889860 RX 9466984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3042988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808827716 RX 8968411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672891459 RX 9468492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808829168 RX 8969773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672893058 RX 9470000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808830755 RX 8971241 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3065997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672894657 RX 9471392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808832342 RX 8972719 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672896133 RX 9472900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808833941 RX 8974197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672897732 RX 9474408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808835540 RX 8975675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672899331 RX 9475916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808837016 RX 8977037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672900930 RX 9477424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808838615 RX 8978505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672902529 RX 9478816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808840202 RX 8979983 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672904005 RX 9480324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808841777 RX 8981461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672905604 RX 9481832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808843364 RX 8982939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672907203 RX 9483340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808844828 RX 8984301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672908802 RX 9484848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808846403 RX 8985769 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672910401 RX 9486240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808847978 RX 8987247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672911877 RX 9487748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808849565 RX 8988725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672913476 RX 9489256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808851152 RX 8990203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672915075 RX 9490764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808852628 RX 8991565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672916674 RX 9492272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808854227 RX 8993033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672918273 RX 9493664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304743/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808855826 RX 8994511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672919749 RX 9495172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808857425 RX 8995989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672921348 RX 9496680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808859012 RX 8997467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672922947 RX 9498188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808860476 RX 8998829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672924546 RX 9499696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808862051 RX 9000297 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672926145 RX 9501088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808863638 RX 9001775 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672927621 RX 9502596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808865213 RX 9003253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672929220 RX 9504104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808866800 RX 9004731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672930819 RX 9505612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808868264 RX 9006093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672932418 RX 9507120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808869839 RX 9007561 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672934017 RX 9508512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808871438 RX 9009039 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672935493 RX 9510020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808873037 RX 9010517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672937092 RX 9511528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808874636 RX 9011995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672938691 RX 9513036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808876112 RX 9013357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672940290 RX 9514544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808877699 RX 9014825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672941889 RX 9515936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808879286 RX 9016303 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323830/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672943365 RX 9517444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808880861 RX 9017781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672944964 RX 9518952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808882448 RX 9019259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672946563 RX 9520460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808883912 RX 9020621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672948162 RX 9521968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808885487 RX 9022089 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672949761 RX 9523360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 304999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808887074 RX 9023567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672951237 RX 9524868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305012/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808888649 RX 9025045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672952836 RX 9526376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808890248 RX 9026523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672954435 RX 9527884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808891724 RX 9027885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672956034 RX 9529392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808893323 RX 9029353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672957633 RX 9530784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808894922 RX 9030831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672959109 RX 9532292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808896521 RX 9032309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672960708 RX 9533800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808898096 RX 9033787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672962307 RX 9535308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808899560 RX 9035149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 323997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672963906 RX 9536816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808901135 RX 9036617 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672965505 RX 9538208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808902722 RX 9038095 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672966981 RX 9539716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808904297 RX 9039573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672968580 RX 9541224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808905884 RX 9041051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672970179 RX 9542732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808907348 RX 9042413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672971778 RX 9544240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808908935 RX 9043881 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672973377 RX 9545632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808910534 RX 9045359 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672974853 RX 9547140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808912133 RX 9046837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672976452 RX 9548648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808913732 RX 9048315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672978051 RX 9550156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808915208 RX 9049677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672979650 RX 9551664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808916783 RX 9051145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672981249 RX 9553056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808918370 RX 9052623 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672982725 RX 9554564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305268/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808919945 RX 9054101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672984324 RX 9556072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808921532 RX 9055579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672985923 RX 9557580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808922996 RX 9056941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672987522 RX 9559088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808924571 RX 9058409 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672989121 RX 9560480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808926158 RX 9059887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672990597 RX 9561988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808927745 RX 9061365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672992196 RX 9563496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808929344 RX 9062843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672993795 RX 9565004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808930820 RX 9064205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672995394 RX 9566512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808932419 RX 9065673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672996993 RX 9567904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808934018 RX 9067151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20672998469 RX 9569412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808935605 RX 9068629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673000068 RX 9570920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808937180 RX 9070107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673001667 RX 9572428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808938644 RX 9071469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673003266 RX 9573936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808940219 RX 9072937 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673004865 RX 9575328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808941806 RX 9074415 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673006341 RX 9576836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808943381 RX 9075893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673007940 RX 9578344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808944968 RX 9077371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673009539 RX 9579852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808946432 RX 9078733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673011138 RX 9581360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808948031 RX 9080201 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673012737 RX 9582752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808949630 RX 9081679 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673014213 RX 9584260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3043999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808951229 RX 9083157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673015812 RX 9585768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808952828 RX 9084635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3066995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673017411 RX 9587276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808954292 RX 9085997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673019010 RX 9588784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808955867 RX 9087465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673020609 RX 9590176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808957454 RX 9088943 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673022085 RX 9591684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808959041 RX 9090421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673023684 RX 9593192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808960616 RX 9091899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673025283 RX 9594700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808962080 RX 9093261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673026882 RX 9596208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808963655 RX 9094729 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673028481 RX 9597600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808965242 RX 9096207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673029957 RX 9599108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305652/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808966841 RX 9097685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673031556 RX 9600616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808968440 RX 9099163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673033155 RX 9602124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808969916 RX 9100525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673034754 RX 9603632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808971515 RX 9101993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673036353 RX 9605024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305703/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808973102 RX 9103471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673037829 RX 9606532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808974689 RX 9104949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673039428 RX 9608040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808976264 RX 9106427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673041027 RX 9609548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808977728 RX 9107789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673042626 RX 9611056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808979303 RX 9109257 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673044225 RX 9612448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808980890 RX 9110735 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673045701 RX 9613956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808982477 RX 9112213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673047300 RX 9615464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808984052 RX 9113691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673048899 RX 9616972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808985528 RX 9115053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673050498 RX 9618480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808987127 RX 9116521 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673052097 RX 9619872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808988726 RX 9117999 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673053573 RX 9621380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808990325 RX 9119477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673055172 RX 9622888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808991924 RX 9120955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673056771 RX 9624396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808993376 RX 9122317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673058370 RX 9625904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808994951 RX 9123785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673059969 RX 9627296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808996538 RX 9125263 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673061445 RX 9628804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808998125 RX 9126741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673063044 RX 9630312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21808999700 RX 9128219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673064643 RX 9631820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809001164 RX 9129581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673066242 RX 9633328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809002739 RX 9131049 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673067841 RX 9634720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809004338 RX 9132527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673069317 RX 9636228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809005937 RX 9134005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673070916 RX 9637736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809007536 RX 9135483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673072515 RX 9639244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 305997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809009012 RX 9136845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673074114 RX 9640752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809010611 RX 9138313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673075713 RX 9642144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306023/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809012186 RX 9139791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673077189 RX 9643652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809013773 RX 9141269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673078788 RX 9645160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809015348 RX 9142747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673080387 RX 9646668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809016812 RX 9144109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673081986 RX 9648176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809018387 RX 9145577 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673083585 RX 9649568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809019974 RX 9147055 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673085061 RX 9651076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809021561 RX 9148533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 324995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673086660 RX 9652584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809023148 RX 9150011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673088259 RX 9654092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809024624 RX 9151373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673089858 RX 9655600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809026223 RX 9152841 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673091457 RX 9656992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809027822 RX 9154319 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673092933 RX 9658500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809029421 RX 9155797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673094532 RX 9660008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809031008 RX 9157275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673096131 RX 9661516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809032460 RX 9158637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673097730 RX 9663024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809034035 RX 9160105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673099329 RX 9664416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809035622 RX 9161583 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673100805 RX 9665924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809037209 RX 9163061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673102404 RX 9667432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809038784 RX 9164539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673104003 RX 9668940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809040248 RX 9165901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673105602 RX 9670448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809041835 RX 9167369 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673107201 RX 9671840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809043434 RX 9168847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673108677 RX 9673348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809045033 RX 9170325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673110276 RX 9674856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809046632 RX 9171803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673111875 RX 9676364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809048108 RX 9173165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673113474 RX 9677872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809049695 RX 9174633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673115073 RX 9679264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809051270 RX 9176111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673116549 RX 9680772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809052857 RX 9177589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673118148 RX 9682280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809054444 RX 9179067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673119747 RX 9683788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809055896 RX 9180429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673121346 RX 9685296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809057471 RX 9181897 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673122945 RX 9686688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809059058 RX 9183375 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673124421 RX 9688196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809060645 RX 9184853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673126020 RX 9689704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809062244 RX 9186331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673127619 RX 9691212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809063720 RX 9187693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673129218 RX 9692720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809065319 RX 9189161 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673130817 RX 9694112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809066918 RX 9190639 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673132293 RX 9695620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809068505 RX 9192117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673133892 RX 9697128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809070092 RX 9193595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673135491 RX 9698636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809071544 RX 9194957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673137090 RX 9700144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3044997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809073131 RX 9196425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673138689 RX 9701536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809074706 RX 9197903 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3067993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325430/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673140165 RX 9703044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809076293 RX 9199381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673141764 RX 9704552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809077880 RX 9200859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673143363 RX 9706060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809079332 RX 9202221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673144962 RX 9707568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809080931 RX 9203689 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673146561 RX 9708960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809082530 RX 9205167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673148037 RX 9710468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809084129 RX 9206645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673149636 RX 9711976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809085728 RX 9208123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673151235 RX 9713484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809087204 RX 9209485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673152834 RX 9714992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809088779 RX 9210953 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673154433 RX 9716384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809090354 RX 9212431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673155909 RX 9717892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809091941 RX 9213909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673157508 RX 9719400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809093528 RX 9215387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673159107 RX 9720908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809094980 RX 9216749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673160706 RX 9722416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809096567 RX 9218217 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673162305 RX 9723808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809098142 RX 9219695 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673163781 RX 9725316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809099741 RX 9221173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673165380 RX 9726824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809101340 RX 9222651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673166979 RX 9728332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809102816 RX 9224013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673168578 RX 9729840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809104415 RX 9225481 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673170177 RX 9731232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809106014 RX 9226959 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673171653 RX 9732740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809107589 RX 9228437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673173252 RX 9734248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809109176 RX 9229915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673174851 RX 9735756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809110628 RX 9231277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673176450 RX 9737264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809112215 RX 9232745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673178049 RX 9738656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809113790 RX 9234223 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673179525 RX 9740164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809115377 RX 9235701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673181124 RX 9741672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809116964 RX 9237179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673182723 RX 9743180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809118428 RX 9238541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673184322 RX 9744688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809120027 RX 9240009 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673185921 RX 9746080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809121626 RX 9241487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673187397 RX 9747588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809123225 RX 9242965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673188996 RX 9749096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809124824 RX 9244443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673190595 RX 9750604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809126288 RX 9245805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673192194 RX 9752112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809127863 RX 9247273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673193793 RX 9753504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306983/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809129438 RX 9248751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673195269 RX 9755012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 306996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809131025 RX 9250229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673196868 RX 9756520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809132612 RX 9251707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673198467 RX 9758028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809134064 RX 9253069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673200066 RX 9759536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809135651 RX 9254537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673201665 RX 9760928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809137238 RX 9256015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673203141 RX 9762436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809138837 RX 9257493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673204740 RX 9763944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809140436 RX 9258971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673206339 RX 9765452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809141912 RX 9260333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673207938 RX 9766960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809143511 RX 9261801 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 325993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673209537 RX 9768352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809145098 RX 9263279 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673211013 RX 9769860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809146673 RX 9264757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673212612 RX 9771368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809148260 RX 9266235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673214211 RX 9772876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809149724 RX 9267597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673215810 RX 9774384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809151299 RX 9269065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673217409 RX 9775776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809152874 RX 9270543 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673218885 RX 9777284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307188/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809154461 RX 9272021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673220484 RX 9778792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809156048 RX 9273499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673222083 RX 9780300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809157524 RX 9274861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673223682 RX 9781808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809159123 RX 9276329 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673225281 RX 9783200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809160722 RX 9277807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673226757 RX 9784708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809162321 RX 9279285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673228356 RX 9786216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809163908 RX 9280763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673229955 RX 9787724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809165372 RX 9282125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673231554 RX 9789232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809166947 RX 9283593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673233153 RX 9790624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307303/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809168534 RX 9285071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673234629 RX 9792132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809170109 RX 9286549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673236228 RX 9793640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809171696 RX 9288027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673237827 RX 9795148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809173160 RX 9289389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673239426 RX 9796656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809174735 RX 9290857 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673241025 RX 9798048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809176334 RX 9292335 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673242501 RX 9799556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809177933 RX 9293813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673244100 RX 9801064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809179532 RX 9295291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673245699 RX 9802572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809181008 RX 9296653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673247298 RX 9804080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809182595 RX 9298121 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673248897 RX 9805472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809184182 RX 9299599 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673250373 RX 9806980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809185757 RX 9301077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673251972 RX 9808488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809187344 RX 9302555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673253571 RX 9809996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809188808 RX 9303917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673255170 RX 9811504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809190383 RX 9305385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673256769 RX 9812896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809191970 RX 9306863 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673258245 RX 9814404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809193545 RX 9308341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673259844 RX 9815912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3045996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809195144 RX 9309819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673261443 RX 9817420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809196620 RX 9311181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3068992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673263042 RX 9818928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809198219 RX 9312649 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673264641 RX 9820320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809199818 RX 9314127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673266117 RX 9821828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809201417 RX 9315605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673267716 RX 9823336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809202992 RX 9317083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673269315 RX 9824844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809204456 RX 9318445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673270914 RX 9826352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809206031 RX 9319913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673272513 RX 9827744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307623/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809207618 RX 9321391 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673273989 RX 9829252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809209193 RX 9322869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673275588 RX 9830760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809210780 RX 9324347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673277187 RX 9832268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809212244 RX 9325709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673278786 RX 9833776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809213831 RX 9327177 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673280385 RX 9835168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809215430 RX 9328655 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673281861 RX 9836676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809217029 RX 9330133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673283460 RX 9838184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809218628 RX 9331611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673285059 RX 9839692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809220104 RX 9332973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673286658 RX 9841200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809221679 RX 9334441 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673288257 RX 9842592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809223266 RX 9335919 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673289733 RX 9844100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809224841 RX 9337397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673291332 RX 9845608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809226428 RX 9338875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673292931 RX 9847116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809227892 RX 9340237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673294530 RX 9848624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809229467 RX 9341705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673296129 RX 9850016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809231054 RX 9343183 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326710/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673297605 RX 9851524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809232641 RX 9344661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673299204 RX 9853032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809234240 RX 9346139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673300803 RX 9854540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809235716 RX 9347501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673302402 RX 9856048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809237315 RX 9348969 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673304001 RX 9857440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809238914 RX 9350447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673305477 RX 9858948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809240501 RX 9351925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673307076 RX 9860456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809242076 RX 9353403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673308675 RX 9861964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809243540 RX 9354765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673310274 RX 9863472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809245115 RX 9356233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673311873 RX 9864864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809246702 RX 9357711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673313349 RX 9866372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809248277 RX 9359189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673314948 RX 9867880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809249864 RX 9360667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673316547 RX 9869388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809251328 RX 9362029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673318146 RX 9870896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 307994/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809252927 RX 9363497 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673319745 RX 9872288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809254526 RX 9364975 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673321221 RX 9873796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809256125 RX 9366453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673322820 RX 9875304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809257724 RX 9367931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673324419 RX 9876812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809259188 RX 9369293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673326018 RX 9878320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809260763 RX 9370761 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673327617 RX 9879712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809262350 RX 9372239 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673329093 RX 9881220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809263937 RX 9373717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673330692 RX 9882728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809265512 RX 9375195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 326992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673332291 RX 9884236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809266976 RX 9376557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673333890 RX 9885744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809268551 RX 9378025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673335489 RX 9887136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809270138 RX 9379503 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673336965 RX 9888644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809271737 RX 9380981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673338564 RX 9890152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809273336 RX 9382459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673340163 RX 9891660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809274812 RX 9383821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673341762 RX 9893168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809276411 RX 9385289 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673343361 RX 9894560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809277998 RX 9386767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673344837 RX 9896068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809279585 RX 9388245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673346436 RX 9897576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809281160 RX 9389723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673348035 RX 9899084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809282624 RX 9391085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673349634 RX 9900592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809284199 RX 9392553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673351233 RX 9901984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308263/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809285786 RX 9394031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673352709 RX 9903492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809287373 RX 9395509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673354308 RX 9905000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809288948 RX 9396987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673355907 RX 9906508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809290424 RX 9398349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673357506 RX 9908016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809292023 RX 9399817 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673359105 RX 9909408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809293622 RX 9401295 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673360581 RX 9910916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809295221 RX 9402773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673362180 RX 9912424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809296820 RX 9404251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673363779 RX 9913932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809298272 RX 9405613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673365378 RX 9915440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809299847 RX 9407081 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673366977 RX 9916832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809301434 RX 9408559 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673368453 RX 9918340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809303021 RX 9410037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673370052 RX 9919848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809304596 RX 9411515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673371651 RX 9921356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809306060 RX 9412877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673373250 RX 9922864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809307635 RX 9414345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673374849 RX 9924256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809309234 RX 9415823 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673376325 RX 9925764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809310833 RX 9417301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673377924 RX 9927272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809312432 RX 9418779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673379523 RX 9928780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809313908 RX 9420141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673381122 RX 9930288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809315507 RX 9421609 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673382721 RX 9931680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3046994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809317082 RX 9423087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673384197 RX 9933188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809318669 RX 9424565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3069990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673385796 RX 9934696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809320244 RX 9426043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673387395 RX 9936204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809321708 RX 9427405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673388994 RX 9937712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809323283 RX 9428873 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673390593 RX 9939104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809324870 RX 9430351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673392069 RX 9940612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809326457 RX 9431829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673393668 RX 9942120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809328044 RX 9433307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673395267 RX 9943628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809329520 RX 9434669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673396866 RX 9945136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809331119 RX 9436137 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673398465 RX 9946528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809332718 RX 9437615 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673399941 RX 9948036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809334317 RX 9439093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673401540 RX 9949544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809335904 RX 9440571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673403139 RX 9951052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809337356 RX 9441933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673404738 RX 9952560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809338931 RX 9443401 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673406337 RX 9953952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809340518 RX 9444879 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673407813 RX 9955460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809342105 RX 9446357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673409412 RX 9956968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809343680 RX 9447835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673411011 RX 9958476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809345144 RX 9449197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673412610 RX 9959984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809346731 RX 9450665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673414209 RX 9961376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809348330 RX 9452143 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673415685 RX 9962884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809349929 RX 9453621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673417284 RX 9964392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809351528 RX 9455099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673418883 RX 9965900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809353004 RX 9456461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673420482 RX 9967408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809354591 RX 9457929 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673422081 RX 9968800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809356166 RX 9459407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673423557 RX 9970308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809357753 RX 9460885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673425156 RX 9971816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809359340 RX 9462363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673426755 RX 9973324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809360792 RX 9463725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673428354 RX 9974832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809362367 RX 9465193 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673429953 RX 9976224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809363954 RX 9466671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673431429 RX 9977732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809365541 RX 9468149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673433028 RX 9979240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809367140 RX 9469627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673434627 RX 9980748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809368616 RX 9470989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673436226 RX 9982256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809370215 RX 9472457 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673437825 RX 9983648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809371814 RX 9473935 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673439301 RX 9985156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809373401 RX 9475413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673440900 RX 9986664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 308993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809374988 RX 9476891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673442499 RX 9988172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809376440 RX 9478253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673444098 RX 9989680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809378027 RX 9479721 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673445697 RX 9991072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809379602 RX 9481199 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673447173 RX 9992580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809381189 RX 9482677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673448772 RX 9994088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809382776 RX 9484155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673450371 RX 9995596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809384228 RX 9485517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673451970 RX 9997104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809385827 RX 9486985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673453569 RX 9998496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809387426 RX 9488463 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 327990/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673455045 RX 10000004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809389025 RX 9489941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673456644 RX 10001512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809390624 RX 9491419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673458243 RX 10003020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809392100 RX 9492781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673459842 RX 10004528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809393675 RX 9494249 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673461441 RX 10005920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809395250 RX 9495727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673462917 RX 10007428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809396837 RX 9497205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673464516 RX 10008936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809398424 RX 9498683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673466115 RX 10010444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809399876 RX 9500045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673467714 RX 10011952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809401463 RX 9501513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673469313 RX 10013344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809403038 RX 9502991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673470789 RX 10014852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809404637 RX 9504469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673472388 RX 10016360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809406236 RX 9505947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673473987 RX 10017868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809407712 RX 9507309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673475586 RX 10019376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809409311 RX 9508777 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673477185 RX 10020768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809410910 RX 9510255 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673478661 RX 10022276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809412485 RX 9511733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673480260 RX 10023784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809414072 RX 9513211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673481859 RX 10025292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809415524 RX 9514573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673483458 RX 10026800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809417111 RX 9516041 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673485057 RX 10028192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809418686 RX 9517519 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673486533 RX 10029700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809420273 RX 9518997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673488132 RX 10031208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809421860 RX 9520475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673489731 RX 10032716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809423324 RX 9521837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673491330 RX 10034224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809424923 RX 9523305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673492929 RX 10035616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809426522 RX 9524783 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673494405 RX 10037124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809428121 RX 9526261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673496004 RX 10038632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809429720 RX 9527739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673497603 RX 10040140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809431184 RX 9529101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673499202 RX 10041648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809432759 RX 9530569 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673500801 RX 10043040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809434334 RX 9532047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673502277 RX 10044548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809435921 RX 9533525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673503876 RX 10046056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809437508 RX 9535003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673505475 RX 10047564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3047992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809438960 RX 9536365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673507074 RX 10049072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809440547 RX 9537833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3070989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673508673 RX 10050464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309543/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809442134 RX 9539311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673510149 RX 10051972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809443733 RX 9540789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673511748 RX 10053480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809445332 RX 9542267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673513347 RX 10054988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809446808 RX 9543629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673514946 RX 10056496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809448407 RX 9545097 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673516545 RX 10057888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809449994 RX 9546575 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673518021 RX 10059396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809451569 RX 9548053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673519620 RX 10060904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809453156 RX 9549531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673521219 RX 10062412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809454620 RX 9550893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673522818 RX 10063920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809456195 RX 9552361 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673524417 RX 10065312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809457770 RX 9553839 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673525893 RX 10066820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809459357 RX 9555317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673527492 RX 10068328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809460944 RX 9556795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673529091 RX 10069836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809462420 RX 9558157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673530690 RX 10071344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809464019 RX 9559625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673532289 RX 10072736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809465618 RX 9561103 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673533765 RX 10074244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809467217 RX 9562581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673535364 RX 10075752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809468804 RX 9564059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673536963 RX 10077260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809470268 RX 9565421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673538562 RX 10078768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809471843 RX 9566889 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673540161 RX 10080160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809473430 RX 9568367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673541637 RX 10081668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809475005 RX 9569845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673543236 RX 10083176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809476592 RX 9571323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673544835 RX 10084684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809478056 RX 9572685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673546434 RX 10086192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809479631 RX 9574153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673548033 RX 10087584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809481230 RX 9575631 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673549509 RX 10089092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809482829 RX 9577109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673551108 RX 10090600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809484428 RX 9578587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673552707 RX 10092108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809485904 RX 9579949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673554306 RX 10093616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809487491 RX 9581417 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673555905 RX 10095008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809489078 RX 9582895 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673557381 RX 10096516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809490653 RX 9584373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673558980 RX 10098024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809492240 RX 9585851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673560579 RX 10099532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809493704 RX 9587213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673562178 RX 10101040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809495279 RX 9588681 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673563777 RX 10102432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 309991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809496866 RX 9590159 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673565253 RX 10103940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809498441 RX 9591637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673566852 RX 10105448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809500040 RX 9593115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673568451 RX 10106956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809501516 RX 9594477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673570050 RX 10108464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809503115 RX 9595945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673571649 RX 10109856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809504714 RX 9597423 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673573125 RX 10111364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809506313 RX 9598901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673574724 RX 10112872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809507888 RX 9600379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673576323 RX 10114380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809509352 RX 9601741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 328989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673577922 RX 10115888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809510927 RX 9603209 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673579521 RX 10117280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809512514 RX 9604687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673580997 RX 10118788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809514089 RX 9606165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673582596 RX 10120296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809515676 RX 9607643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673584195 RX 10121804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809517140 RX 9609005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673585794 RX 10123312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809518727 RX 9610473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673587393 RX 10124704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310183/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809520326 RX 9611951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673588869 RX 10126212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809521925 RX 9613429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673590468 RX 10127720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809523524 RX 9614907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673592067 RX 10129228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809525000 RX 9616269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673593666 RX 10130736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809526575 RX 9617737 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673595265 RX 10132128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809528162 RX 9619215 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673596741 RX 10133636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809529737 RX 9620693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673598340 RX 10135144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809531324 RX 9622171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673599939 RX 10136652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809532788 RX 9623533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673601538 RX 10138160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809534363 RX 9625001 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673603137 RX 10139552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809535950 RX 9626479 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673604613 RX 10141060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809537537 RX 9627957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673606212 RX 10142568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809539136 RX 9629435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673607811 RX 10144076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809540612 RX 9630797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673609410 RX 10145584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809542211 RX 9632265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673611009 RX 10146976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809543810 RX 9633743 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329270/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673612485 RX 10148484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809545397 RX 9635221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673614084 RX 10149992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809546972 RX 9636699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673615683 RX 10151500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809548436 RX 9638061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673617282 RX 10153008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809550011 RX 9639529 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673618881 RX 10154400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809551598 RX 9641007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673620357 RX 10155908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809553173 RX 9642485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673621956 RX 10157416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809554760 RX 9643963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673623555 RX 10158924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809556224 RX 9645325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673625154 RX 10160432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809557823 RX 9646793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673626753 RX 10161824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809559422 RX 9648271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673628229 RX 10163332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3048991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809561021 RX 9649749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673629828 RX 10164840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809562620 RX 9651227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3071987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673631427 RX 10166348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809564084 RX 9652589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673633026 RX 10167856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809565659 RX 9654057 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673634625 RX 10169248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809567246 RX 9655535 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673636101 RX 10170756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809568833 RX 9657013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673637700 RX 10172264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809570408 RX 9658491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673639299 RX 10173772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809571872 RX 9659853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673640898 RX 10175280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809573447 RX 9661321 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673642497 RX 10176672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809575034 RX 9662799 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673643973 RX 10178180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809576633 RX 9664277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673645572 RX 10179688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809578232 RX 9665755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673647171 RX 10181196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809579708 RX 9667117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673648770 RX 10182704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809581307 RX 9668585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673650369 RX 10184096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809582894 RX 9670063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673651845 RX 10185604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809584481 RX 9671541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673653444 RX 10187112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809586056 RX 9673019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673655043 RX 10188620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809587520 RX 9674381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673656642 RX 10190128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809589095 RX 9675849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673658241 RX 10191520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809590682 RX 9677327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673659717 RX 10193028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809592269 RX 9678805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673661316 RX 10194536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809593844 RX 9680283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673662915 RX 10196044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809595320 RX 9681645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673664514 RX 10197552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809596919 RX 9683113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673666113 RX 10198944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809598518 RX 9684591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673667589 RX 10200452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809600117 RX 9686069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673669188 RX 10201960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809601716 RX 9687547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673670787 RX 10203468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809603168 RX 9688909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673672386 RX 10204976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809604743 RX 9690377 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673673985 RX 10206368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809606330 RX 9691855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673675461 RX 10207876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809607917 RX 9693333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673677060 RX 10209384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809609492 RX 9694811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673678659 RX 10210892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809610956 RX 9696173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673680258 RX 10212400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809612531 RX 9697641 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673681857 RX 10213792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809614130 RX 9699119 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673683333 RX 10215300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809615729 RX 9700597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673684932 RX 10216808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809617328 RX 9702075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673686531 RX 10218316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 310989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809618804 RX 9703437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673688130 RX 10219824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809620403 RX 9704905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673689729 RX 10221216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809621978 RX 9706383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673691205 RX 10222724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809623565 RX 9707861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673692804 RX 10224232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809625140 RX 9709339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673694403 RX 10225740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809626604 RX 9710701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673696002 RX 10227248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809628179 RX 9712169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673697601 RX 10228640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809629766 RX 9713647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673699077 RX 10230148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809631353 RX 9715125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 329987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673700676 RX 10231656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809632940 RX 9716603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673702275 RX 10233164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809634416 RX 9717965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673703874 RX 10234672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809636015 RX 9719433 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673705473 RX 10236064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311143/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809637614 RX 9720911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673706949 RX 10237572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311156/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809639213 RX 9722389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673708548 RX 10239080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311169/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809640800 RX 9723867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673710147 RX 10240588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809642252 RX 9725229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673711746 RX 10242096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809643827 RX 9726697 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673713345 RX 10243488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809645414 RX 9728175 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673714821 RX 10244996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311220/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809647001 RX 9729653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673716420 RX 10246504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311233/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809648576 RX 9731131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673718019 RX 10248012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809650040 RX 9732493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673719618 RX 10249520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809651627 RX 9733961 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673721217 RX 10250912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809653226 RX 9735439 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673722693 RX 10252420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311284/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809654825 RX 9736917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673724292 RX 10253928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311297/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809656424 RX 9738395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673725891 RX 10255436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809657900 RX 9739757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673727490 RX 10256944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809659487 RX 9741225 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673729089 RX 10258336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809661062 RX 9742703 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673730565 RX 10259844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311348/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809662649 RX 9744181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673732164 RX 10261352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311361/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809664236 RX 9745659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673733763 RX 10262860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809665688 RX 9747021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673735362 RX 10264368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809667263 RX 9748489 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673736961 RX 10265760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809668850 RX 9749967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673738437 RX 10267268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311412/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809670437 RX 9751445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673740036 RX 10268776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311425/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809672036 RX 9752923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673741635 RX 10270284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809673512 RX 9754285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673743234 RX 10271792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809675111 RX 9755753 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673744833 RX 10273184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311463/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809676710 RX 9757231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673746309 RX 10274692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311476/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809678297 RX 9758709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673747908 RX 10276200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311489/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809679884 RX 9760187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673749507 RX 10277708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809681336 RX 9761549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673751106 RX 10279216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3049989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809682923 RX 9763017 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673752705 RX 10280608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809684498 RX 9764495 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673754181 RX 10282116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311540/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809686085 RX 9765973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3072998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673755780 RX 10283624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311553/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809687672 RX 9767451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673757379 RX 10285132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809689124 RX 9768813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673758978 RX 10286640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809690723 RX 9770281 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673760577 RX 10288032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809692322 RX 9771759 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673762053 RX 10289540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311604/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809693921 RX 9773237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673763652 RX 10291048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311617/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809695520 RX 9774715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673765251 RX 10292556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809696996 RX 9776077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673766850 RX 10294064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809698571 RX 9777545 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673768449 RX 10295456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809700146 RX 9779023 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330550/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673769925 RX 10296964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311668/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809701733 RX 9780501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673771524 RX 10298472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311681/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809703320 RX 9781979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673773123 RX 10299980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809704772 RX 9783341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673774722 RX 10301488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809706359 RX 9784809 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673776321 RX 10302880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809707934 RX 9786287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673777797 RX 10304388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311732/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809709533 RX 9787765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673779396 RX 10305896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311745/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809711132 RX 9789243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673780995 RX 10307404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809712608 RX 9790605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673782594 RX 10308912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809714207 RX 9792073 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673784193 RX 10310304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809715806 RX 9793551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673785669 RX 10311812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311796/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809717381 RX 9795029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673787268 RX 10313320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311809/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809718968 RX 9796507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673788867 RX 10314828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809720420 RX 9797869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673790466 RX 10316336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809722007 RX 9799337 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673792065 RX 10317728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809723582 RX 9800815 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673793541 RX 10319236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311860/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809725169 RX 9802293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673795140 RX 10320744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311873/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809726756 RX 9803771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673796739 RX 10322252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809728220 RX 9805133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673798338 RX 10323760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809729819 RX 9806601 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673799937 RX 10325152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809731418 RX 9808079 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673801413 RX 10326660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311924/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809733017 RX 9809557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673803012 RX 10328168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311937/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809734616 RX 9811035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673804611 RX 10329676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809736080 RX 9812397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673806210 RX 10331184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809737655 RX 9813865 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673807809 RX 10332576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809739230 RX 9815343 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673809285 RX 10334084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 311988/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809740817 RX 9816821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673810884 RX 10335592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312001/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809742404 RX 9818299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673812483 RX 10337100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809743856 RX 9819661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673814082 RX 10338608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809745443 RX 9821129 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673815681 RX 10340000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809747030 RX 9822607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673817157 RX 10341508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312052/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809748629 RX 9824085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673818756 RX 10343016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312065/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809750228 RX 9825563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673820355 RX 10344524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809751704 RX 9826925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673821954 RX 10346032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809753303 RX 9828393 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673823553 RX 10347424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312103/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809754890 RX 9829871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 330998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673825029 RX 10348932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312116/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809756465 RX 9831349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673826628 RX 10350440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312129/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809758052 RX 9832827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673828227 RX 10351948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809759516 RX 9834189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673829826 RX 10353456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809761091 RX 9835657 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673831425 RX 10354848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809762666 RX 9837135 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673832901 RX 10356356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312180/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809764253 RX 9838613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673834500 RX 10357864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312193/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809765840 RX 9840091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673836099 RX 10359372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809767316 RX 9841453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673837698 RX 10360880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809768915 RX 9842921 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673839297 RX 10362272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809770514 RX 9844399 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673840773 RX 10363780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312244/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809772113 RX 9845877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673842372 RX 10365288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312257/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809773700 RX 9847355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673843971 RX 10366796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809775164 RX 9848717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673845570 RX 10368304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809776739 RX 9850185 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673847169 RX 10369696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809778326 RX 9851663 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673848645 RX 10371204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312308/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809779901 RX 9853141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673850244 RX 10372712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312321/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809781488 RX 9854619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673851843 RX 10374220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809782952 RX 9855981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673853442 RX 10375728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809784527 RX 9857449 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673855041 RX 10377120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809786126 RX 9858927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673856517 RX 10378628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312372/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809787725 RX 9860405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673858116 RX 10380136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312385/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809789324 RX 9861883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673859715 RX 10381644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809790800 RX 9863245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673861314 RX 10383152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809792387 RX 9864713 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673862913 RX 10384544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312423/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809793974 RX 9866191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673864389 RX 10386052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312436/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809795549 RX 9867669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673865988 RX 10387560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312449/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809797136 RX 9869147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673867587 RX 10389068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809798600 RX 9870509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673869186 RX 10390576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809800175 RX 9871977 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673870785 RX 10391968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809801762 RX 9873455 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673872261 RX 10393476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312500/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809803337 RX 9874933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673873860 RX 10394984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3050988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312513/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809804936 RX 9876411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673875459 RX 10396492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809806412 RX 9877773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673877058 RX 10398000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809808011 RX 9879241 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3073997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673878657 RX 10399392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809809610 RX 9880719 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673880133 RX 10400900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312564/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809811209 RX 9882197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673881732 RX 10402408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312577/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809812784 RX 9883675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673883331 RX 10403916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809814248 RX 9885037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673884930 RX 10405424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809815823 RX 9886505 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673886529 RX 10406816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809817410 RX 9887983 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673888005 RX 10408324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312628/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809818985 RX 9889461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673889604 RX 10409832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312641/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809820572 RX 9890939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673891203 RX 10411340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809822036 RX 9892301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673892802 RX 10412848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809823623 RX 9893769 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673894401 RX 10414240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809825222 RX 9895247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673895877 RX 10415748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312692/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809826821 RX 9896725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673897476 RX 10417256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312705/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809828420 RX 9898203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673899075 RX 10418764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809829896 RX 9899565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673900674 RX 10420272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809831471 RX 9901033 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673902273 RX 10421664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312743/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809833058 RX 9902511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673903749 RX 10423172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312756/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809834633 RX 9903989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673905348 RX 10424680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312769/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809836220 RX 9905467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673906947 RX 10426188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809837684 RX 9906829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673908546 RX 10427696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809839259 RX 9908297 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673910145 RX 10429088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809840846 RX 9909775 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673911621 RX 10430596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312820/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809842433 RX 9911253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673913220 RX 10432104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312833/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809844032 RX 9912731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673914819 RX 10433612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809845508 RX 9914093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673916418 RX 10435120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809847107 RX 9915561 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673918017 RX 10436512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809848706 RX 9917039 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673919493 RX 10438020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312884/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809850293 RX 9918517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673921092 RX 10439528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312897/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809851868 RX 9919995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673922691 RX 10441036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809853332 RX 9921357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673924290 RX 10442544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809854907 RX 9922825 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673925889 RX 10443936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809856494 RX 9924303 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331830/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673927365 RX 10445444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312948/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809858069 RX 9925781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673928964 RX 10446952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312961/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809859656 RX 9927259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673930563 RX 10448460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809861120 RX 9928621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673932162 RX 10449968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809862719 RX 9930089 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673933761 RX 10451360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 312999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809864318 RX 9931567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673935237 RX 10452868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313012/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809865917 RX 9933045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673936836 RX 10454376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313025/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809867516 RX 9934523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673938435 RX 10455884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809868980 RX 9935885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673940034 RX 10457392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809870555 RX 9937353 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673941633 RX 10458784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809872142 RX 9938831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673943109 RX 10460292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313076/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809873729 RX 9940309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673944708 RX 10461800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313089/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809875304 RX 9941787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673946307 RX 10463308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809876768 RX 9943149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 331997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673947906 RX 10464816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809878343 RX 9944617 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673949505 RX 10466208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809879930 RX 9946095 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673950981 RX 10467716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313140/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809881529 RX 9947573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673952580 RX 10469224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313153/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809883128 RX 9949051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673954179 RX 10470732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809884604 RX 9950413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673955778 RX 10472240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809886203 RX 9951881 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673957377 RX 10473632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809887790 RX 9953359 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673958853 RX 10475140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313204/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809889377 RX 9954837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673960452 RX 10476648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313217/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809890952 RX 9956315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673962051 RX 10478156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809892416 RX 9957677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673963650 RX 10479664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809893991 RX 9959145 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673965249 RX 10481056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809895578 RX 9960623 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673966725 RX 10482564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313268/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809897165 RX 9962101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673968324 RX 10484072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313281/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809898740 RX 9963579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673969923 RX 10485580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809900216 RX 9964941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673971522 RX 10487088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809901815 RX 9966409 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673973121 RX 10488480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809903414 RX 9967887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673974597 RX 10489988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313332/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809905013 RX 9969365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673976196 RX 10491496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313345/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809906612 RX 9970843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673977795 RX 10493004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809908064 RX 9972205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673979394 RX 10494512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809909639 RX 9973673 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673980993 RX 10495904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809911226 RX 9975151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673982469 RX 10497412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313396/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809912813 RX 9976629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673984068 RX 10498920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313409/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809914388 RX 9978107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673985667 RX 10500428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809915852 RX 9979469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673987266 RX 10501936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809917427 RX 9980937 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673988865 RX 10503328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809919026 RX 9982415 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673990341 RX 10504836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313460/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809920625 RX 9983893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673991940 RX 10506344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313473/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809922224 RX 9985371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673993539 RX 10507852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809923700 RX 9986733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673995138 RX 10509360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809925299 RX 9988201 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673996737 RX 10510752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809926874 RX 9989679 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673998213 RX 10512260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3051999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313524/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809928461 RX 9991157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20673999812 RX 10513768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313537/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809930036 RX 9992635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3074995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674001411 RX 10515276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809931500 RX 9993997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674003010 RX 10516784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809933075 RX 9995465 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674004609 RX 10518176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809934662 RX 9996943 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674006085 RX 10519684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313588/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809936249 RX 9998421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674007684 RX 10521192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313601/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809937836 RX 9999899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674009283 RX 10522700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809939312 RX 10001261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674010882 RX 10524208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809940911 RX 10002729 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674012481 RX 10525600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809942510 RX 10004207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674013957 RX 10527108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313652/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809944109 RX 10005685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674015556 RX 10528616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313665/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809945696 RX 10007163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674017155 RX 10530124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809947148 RX 10008525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674018754 RX 10531632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809948723 RX 10009993 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674020353 RX 10533024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313703/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809950310 RX 10011471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674021829 RX 10534532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313716/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809951897 RX 10012949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674023428 RX 10536040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313729/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809953472 RX 10014427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674025027 RX 10537548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809954936 RX 10015789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674026626 RX 10539056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809956523 RX 10017257 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674028225 RX 10540448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809958122 RX 10018735 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674029701 RX 10541956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313780/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809959721 RX 10020213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674031300 RX 10543464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313793/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809961320 RX 10021691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674032899 RX 10544972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809962796 RX 10023053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674034498 RX 10546480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809964383 RX 10024521 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674036097 RX 10547872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809965958 RX 10025999 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674037573 RX 10549380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313844/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809967545 RX 10027477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674039172 RX 10550888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313857/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809969132 RX 10028955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674040771 RX 10552396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809970584 RX 10030317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674042370 RX 10553904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809972159 RX 10031785 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674043969 RX 10555296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809973746 RX 10033263 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674045445 RX 10556804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313908/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809975333 RX 10034741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674047044 RX 10558312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313921/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809976932 RX 10036219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674048643 RX 10559820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809978408 RX 10037581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674050242 RX 10561328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809980007 RX 10039049 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674051841 RX 10562720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809981606 RX 10040527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674053317 RX 10564228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313972/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809983193 RX 10042005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674054916 RX 10565736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313985/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809984780 RX 10043483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674056515 RX 10567244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 313997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809986232 RX 10044845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674058114 RX 10568752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809987819 RX 10046313 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674059713 RX 10570144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314023/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809989394 RX 10047791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674061189 RX 10571652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314036/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809990981 RX 10049269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674062788 RX 10573160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314049/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809992568 RX 10050747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674064387 RX 10574668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809994020 RX 10052109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674065986 RX 10576176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809995619 RX 10053577 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674067585 RX 10577568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809997218 RX 10055055 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674069061 RX 10579076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314100/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21809998817 RX 10056533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 332995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674070660 RX 10580584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314113/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810000416 RX 10058011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674072259 RX 10582092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810001892 RX 10059373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674073858 RX 10583600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810003467 RX 10060841 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674075457 RX 10584992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810005042 RX 10062319 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674076933 RX 10586500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314164/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810006629 RX 10063797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674078532 RX 10588008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314177/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810008216 RX 10065275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674080131 RX 10589516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810009668 RX 10066637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674081730 RX 10591024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810011255 RX 10068105 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674083329 RX 10592416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810012830 RX 10069583 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674084805 RX 10593924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314228/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810014429 RX 10071061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674086404 RX 10595432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314241/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810016028 RX 10072539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674088003 RX 10596940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810017504 RX 10073901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674089602 RX 10598448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810019103 RX 10075369 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674091201 RX 10599840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810020702 RX 10076847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674092677 RX 10601348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314292/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810022277 RX 10078325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674094276 RX 10602856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314305/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810023864 RX 10079803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674095875 RX 10604364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810025316 RX 10081165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674097474 RX 10605872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810026903 RX 10082633 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674099073 RX 10607264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810028478 RX 10084111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674100549 RX 10608772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314356/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810030065 RX 10085589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674102148 RX 10610280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314369/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810031652 RX 10087067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674103747 RX 10611788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810033116 RX 10088429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674105346 RX 10613296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810034715 RX 10089897 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674106945 RX 10614688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810036314 RX 10091375 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674108421 RX 10616196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314420/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810037913 RX 10092853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674110020 RX 10617704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314433/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810039512 RX 10094331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674111619 RX 10619212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810040976 RX 10095693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674113218 RX 10620720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810042551 RX 10097161 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674114817 RX 10622112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810044126 RX 10098639 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674116293 RX 10623620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314484/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810045713 RX 10100117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674117892 RX 10625128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314497/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810047300 RX 10101595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674119491 RX 10626636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810048752 RX 10102957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674121090 RX 10628144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3052997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810050339 RX 10104425 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674122689 RX 10629536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810051926 RX 10105903 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3075993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333430/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674124165 RX 10631044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314548/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810053525 RX 10107381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674125764 RX 10632552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314561/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810055124 RX 10108859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674127363 RX 10634060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810056600 RX 10110221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674128962 RX 10635568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810058199 RX 10111689 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674130561 RX 10636960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810059786 RX 10113167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674132037 RX 10638468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314612/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810061361 RX 10114645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674133636 RX 10639976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314625/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810062948 RX 10116123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674135235 RX 10641484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810064412 RX 10117485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674136834 RX 10642992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810065987 RX 10118953 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674138433 RX 10644384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810067562 RX 10120431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674139909 RX 10645892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314676/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810069149 RX 10121909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674141508 RX 10647400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314689/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810070736 RX 10123387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674143107 RX 10648908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810072212 RX 10124749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674144706 RX 10650416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810073811 RX 10126217 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674146305 RX 10651808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810075410 RX 10127695 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674147781 RX 10653316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314740/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810077009 RX 10129173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674149380 RX 10654824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314753/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810078596 RX 10130651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674150979 RX 10656332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810080060 RX 10132013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674152578 RX 10657840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810081635 RX 10133481 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674154177 RX 10659232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810083222 RX 10134959 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674155653 RX 10660740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314804/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810084797 RX 10136437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674157252 RX 10662248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314817/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810086384 RX 10137915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674158851 RX 10663756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810087848 RX 10139277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674160450 RX 10665264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810089423 RX 10140745 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674162049 RX 10666656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810091022 RX 10142223 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674163525 RX 10668164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314868/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810092621 RX 10143701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674165124 RX 10669672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314881/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810094220 RX 10145179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674166723 RX 10671180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810095696 RX 10146541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674168322 RX 10672688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810097283 RX 10148009 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674169921 RX 10674080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810098870 RX 10149487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674171397 RX 10675588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314932/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810100445 RX 10150965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674172996 RX 10677096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314945/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810102032 RX 10152443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674174595 RX 10678604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810103496 RX 10153805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674176194 RX 10680112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810105071 RX 10155273 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674177793 RX 10681504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314983/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810106658 RX 10156751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674179269 RX 10683012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 314996/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810108233 RX 10158229 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674180868 RX 10684520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315009/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810109832 RX 10159707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674182467 RX 10686028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810111308 RX 10161069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674184066 RX 10687536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810112907 RX 10162537 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674185665 RX 10688928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810114506 RX 10164015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674187141 RX 10690436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315060/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810116105 RX 10165493 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674188740 RX 10691944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315073/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810117680 RX 10166971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674190339 RX 10693452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810119144 RX 10168333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674191938 RX 10694960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810120719 RX 10169801 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 333993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674193537 RX 10696352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810122306 RX 10171279 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674195013 RX 10697860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315124/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810123881 RX 10172757 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674196612 RX 10699368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315137/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810125468 RX 10174235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674198211 RX 10700876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810126932 RX 10175597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674199810 RX 10702384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810128519 RX 10177065 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674201409 RX 10703776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810130118 RX 10178543 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674202885 RX 10705284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315188/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810131717 RX 10180021 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674204484 RX 10706792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315201/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810133316 RX 10181499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674206083 RX 10708300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810134792 RX 10182861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674207682 RX 10709808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810136367 RX 10184329 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674209281 RX 10711200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810137954 RX 10185807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674210757 RX 10712708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315252/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810139529 RX 10187285 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674212356 RX 10714216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315265/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810141116 RX 10188763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674213955 RX 10715724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810142580 RX 10190125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674215554 RX 10717232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810144155 RX 10191593 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674217153 RX 10718624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315303/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810145742 RX 10193071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674218629 RX 10720132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315316/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810147329 RX 10194549 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674220228 RX 10721640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315329/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810148928 RX 10196027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674221827 RX 10723148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810150404 RX 10197389 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674223426 RX 10724656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810152003 RX 10198857 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674225025 RX 10726048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810153602 RX 10200335 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674226501 RX 10727556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315380/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810155189 RX 10201813 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674228100 RX 10729064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315393/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810156764 RX 10203291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674229699 RX 10730572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810158228 RX 10204653 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674231298 RX 10732080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810159803 RX 10206121 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674232897 RX 10733472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810161390 RX 10207599 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674234373 RX 10734980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315444/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810162965 RX 10209077 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674235972 RX 10736488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315457/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810164552 RX 10210555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674237571 RX 10737996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810166016 RX 10211917 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674239170 RX 10739504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810167615 RX 10213385 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674240769 RX 10740896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810169214 RX 10214863 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674242245 RX 10742404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315508/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810170813 RX 10216341 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674243844 RX 10743912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3053996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315521/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810172412 RX 10217819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674245443 RX 10745420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810173876 RX 10219181 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3076992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674247042 RX 10746928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810175451 RX 10220649 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674248641 RX 10748320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810177038 RX 10222127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674250117 RX 10749828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315572/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810178625 RX 10223605 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674251716 RX 10751336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315585/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810180200 RX 10225083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674253315 RX 10752844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810181664 RX 10226445 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674254914 RX 10754352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810183239 RX 10227913 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674256513 RX 10755744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315623/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810184826 RX 10229391 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674257989 RX 10757252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315636/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810186425 RX 10230869 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674259588 RX 10758760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315649/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810188024 RX 10232347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674261187 RX 10760268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810189500 RX 10233709 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674262786 RX 10761776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810191099 RX 10235177 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674264385 RX 10763168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810192686 RX 10236655 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674265861 RX 10764676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315700/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810194273 RX 10238133 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674267460 RX 10766184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315713/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810195848 RX 10239611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674269059 RX 10767692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810197312 RX 10240973 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674270658 RX 10769200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810198887 RX 10242441 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674272257 RX 10770592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810200474 RX 10243919 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674273733 RX 10772100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315764/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810202061 RX 10245397 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674275332 RX 10773608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315777/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810203636 RX 10246875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674276931 RX 10775116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810205112 RX 10248237 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674278530 RX 10776624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810206711 RX 10249705 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674280129 RX 10778016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810208310 RX 10251183 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334710/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674281605 RX 10779524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315828/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810209909 RX 10252661 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674283204 RX 10781032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315841/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810211508 RX 10254139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674284803 RX 10782540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810212960 RX 10255501 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674286402 RX 10784048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810214535 RX 10256969 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674288001 RX 10785440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810216122 RX 10258447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674289477 RX 10786948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315892/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810217709 RX 10259925 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674291076 RX 10788456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315905/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810219284 RX 10261403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674292675 RX 10789964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810220748 RX 10262765 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674294274 RX 10791472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810222323 RX 10264233 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674295873 RX 10792864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810223922 RX 10265711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674297349 RX 10794372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315956/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810225521 RX 10267189 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674298948 RX 10795880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315969/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810227120 RX 10268667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674300547 RX 10797388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810228596 RX 10270029 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674302146 RX 10798896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 315994/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810230195 RX 10271497 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674303745 RX 10800288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810231770 RX 10272975 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674305221 RX 10801796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316020/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810233357 RX 10274453 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674306820 RX 10803304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316033/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810234932 RX 10275931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674308419 RX 10804812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810236396 RX 10277293 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674310018 RX 10806320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810237971 RX 10278761 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674311617 RX 10807712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810239558 RX 10280239 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674313093 RX 10809220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316084/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810241145 RX 10281717 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674314692 RX 10810728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316097/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810242732 RX 10283195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 334992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674316291 RX 10812236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415183 RX 502098 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810244208 RX 10284557 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674318013 RX 10813656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810245807 RX 10286025 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674319612 RX 10815124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810247406 RX 10287503 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674321088 RX 10816602 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316148/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810249005 RX 10288981 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674322687 RX 10818080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316161/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810250592 RX 10290459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674324286 RX 10819558 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810252044 RX 10291821 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674325885 RX 10820920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810253619 RX 10293289 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674327484 RX 10822388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810255206 RX 10294767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674328960 RX 10823866 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316212/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810256793 RX 10296245 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674330559 RX 10825344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316225/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810258368 RX 10297723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674332158 RX 10826822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810259832 RX 10299085 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674333757 RX 10828184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810261419 RX 10300553 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674335356 RX 10829652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316263/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810263018 RX 10302031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674336832 RX 10831130 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316276/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810264617 RX 10303509 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674338431 RX 10832608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316289/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810266216 RX 10304987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674340030 RX 10834086 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810267692 RX 10306349 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674341629 RX 10835448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810269279 RX 10307817 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674343228 RX 10836916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810270854 RX 10309295 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674344704 RX 10838394 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316340/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810272441 RX 10310773 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674346303 RX 10839872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316353/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810274028 RX 10312251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674347902 RX 10841350 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810275480 RX 10313613 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674349501 RX 10842712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810277055 RX 10315081 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674351100 RX 10844180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810278642 RX 10316559 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674352576 RX 10845658 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316404/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810280229 RX 10318037 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674354175 RX 10847136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316417/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810281828 RX 10319515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674355774 RX 10848614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810283304 RX 10320877 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674357373 RX 10849976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810284903 RX 10322345 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674358972 RX 10851444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810286502 RX 10323823 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674360448 RX 10852922 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316468/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810288089 RX 10325301 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674362047 RX 10854400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316481/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810289676 RX 10326779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674363646 RX 10855878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810291128 RX 10328141 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674365245 RX 10857240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810292715 RX 10329609 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674366844 RX 10858708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3054994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810294290 RX 10331087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674368320 RX 10860186 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316532/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810295877 RX 10332565 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3077991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674369919 RX 10861664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316545/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810297464 RX 10334043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674371518 RX 10863142 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810298916 RX 10335405 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674373117 RX 10864504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810300515 RX 10336873 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674374716 RX 10865972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810302114 RX 10338351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674376192 RX 10867450 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316596/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810303713 RX 10339829 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674377791 RX 10868928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316609/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810305312 RX 10341307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674379390 RX 10870406 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810306788 RX 10342669 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674380989 RX 10871768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810308363 RX 10344137 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674382588 RX 10873236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810309938 RX 10345615 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674384064 RX 10874714 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316660/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810311525 RX 10347093 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674385663 RX 10876192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316673/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810313112 RX 10348571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674387262 RX 10877670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810314564 RX 10349933 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674388861 RX 10879032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810316151 RX 10351401 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674390460 RX 10880500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810317726 RX 10352879 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674391936 RX 10881978 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316724/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810319325 RX 10354357 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674393535 RX 10883456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316737/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810320924 RX 10355835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674395134 RX 10884934 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810322400 RX 10357197 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674396733 RX 10886296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810323999 RX 10358665 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674398332 RX 10887764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810325598 RX 10360143 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674399808 RX 10889242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316788/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810327173 RX 10361621 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674401407 RX 10890720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316801/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810328760 RX 10363099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674403006 RX 10892198 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810330212 RX 10364461 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335710/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674404605 RX 10893560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810331799 RX 10365929 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674406204 RX 10895028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810333374 RX 10367407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674407680 RX 10896506 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316852/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810334961 RX 10368885 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674409279 RX 10897984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316865/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810336548 RX 10370363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674410878 RX 10899462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810338012 RX 10371725 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674412477 RX 10900824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810339611 RX 10373193 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674414076 RX 10902292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810341210 RX 10374671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674415552 RX 10903770 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316916/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810342809 RX 10376149 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674417151 RX 10905248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316929/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810344408 RX 10377627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674418750 RX 10906726 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810345872 RX 10378989 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674420349 RX 10908088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810347447 RX 10380457 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674421948 RX 10909556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810349022 RX 10381935 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674423424 RX 10911034 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316980/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810350609 RX 10383413 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674425023 RX 10912512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 316993/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810352196 RX 10384891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674426622 RX 10913990 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810353648 RX 10386253 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674428221 RX 10915352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810355235 RX 10387721 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674429820 RX 10916820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810356822 RX 10389199 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674431296 RX 10918298 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317044/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810358421 RX 10390677 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674432895 RX 10919776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317057/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810360020 RX 10392155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674434494 RX 10921254 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810361496 RX 10393517 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674436093 RX 10922616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810363095 RX 10394985 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674437692 RX 10924084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810364682 RX 10396463 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 335992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674439168 RX 10925562 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317108/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810366257 RX 10397941 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674440767 RX 10927040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317121/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810367844 RX 10399419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674442366 RX 10928518 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810369308 RX 10400781 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674443965 RX 10929880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810370883 RX 10402249 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674445564 RX 10931348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810372458 RX 10403727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674447040 RX 10932826 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317172/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810374045 RX 10405205 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674448639 RX 10934304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317185/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810375632 RX 10406683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674450238 RX 10935782 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810377108 RX 10408045 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674451837 RX 10937144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810378707 RX 10409513 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674453436 RX 10938612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810380306 RX 10410991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674454912 RX 10940090 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317236/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810381905 RX 10412469 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674456511 RX 10941568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317249/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810383492 RX 10413947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674458110 RX 10943046 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810384956 RX 10415309 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674459709 RX 10944408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810386531 RX 10416777 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674461308 RX 10945876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810388118 RX 10418255 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674462784 RX 10947354 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317300/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810389693 RX 10419733 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674464383 RX 10948832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317313/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810391280 RX 10421211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674465982 RX 10950310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810392744 RX 10422573 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674467581 RX 10951672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810394319 RX 10424041 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674469180 RX 10953140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810395918 RX 10425519 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674470656 RX 10954618 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317364/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810397517 RX 10426997 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674472255 RX 10956096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317377/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810399116 RX 10428475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674473854 RX 10957574 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810400592 RX 10429837 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674475453 RX 10958936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810402179 RX 10431305 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674477052 RX 10960404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810403766 RX 10432783 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674478528 RX 10961882 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317428/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810405341 RX 10434261 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674480127 RX 10963360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317441/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810406928 RX 10435739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674481726 RX 10964838 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810408392 RX 10437101 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674483325 RX 10966200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810409967 RX 10438569 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674484924 RX 10967668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810411554 RX 10440047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674486400 RX 10969146 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317492/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810413129 RX 10441525 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674487999 RX 10970624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317505/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810414728 RX 10443003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674489598 RX 10972102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3055992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810416204 RX 10444365 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674491197 RX 10973464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810417803 RX 10445833 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3078990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674492796 RX 10974932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317543/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810419402 RX 10447311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674494272 RX 10976410 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317556/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810421001 RX 10448789 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674495871 RX 10977888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317569/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810422576 RX 10450267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674497470 RX 10979366 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810424040 RX 10451629 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674499069 RX 10980728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810425615 RX 10453097 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674500668 RX 10982196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810427202 RX 10454575 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674502144 RX 10983674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317620/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810428777 RX 10456053 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674503743 RX 10985152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317633/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810430364 RX 10457531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674505342 RX 10986630 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810431828 RX 10458893 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674506941 RX 10987992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810433415 RX 10460361 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674508540 RX 10989460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810435014 RX 10461839 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674510016 RX 10990938 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317684/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810436613 RX 10463317 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674511615 RX 10992416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317697/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810438212 RX 10464795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674513214 RX 10993894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810439688 RX 10466157 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674514813 RX 10995256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810441263 RX 10467625 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674516412 RX 10996724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810442850 RX 10469103 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674517888 RX 10998202 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317748/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810444425 RX 10470581 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674519487 RX 10999680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317761/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810446012 RX 10472059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674521086 RX 11001158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810447476 RX 10473421 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674522685 RX 11002520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810449051 RX 10474889 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674524284 RX 11003988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810450638 RX 10476367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674525760 RX 11005466 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317812/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810452225 RX 10477845 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674527359 RX 11006944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317825/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810453824 RX 10479323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674528958 RX 11008422 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810455300 RX 10480685 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674530557 RX 11009784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810456899 RX 10482153 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674532156 RX 11011252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810458498 RX 10483631 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674533632 RX 11012730 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317876/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810460085 RX 10485109 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674535231 RX 11014208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317889/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810461660 RX 10486587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674536830 RX 11015686 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810463124 RX 10487949 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674538429 RX 11017048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810464699 RX 10489417 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674540028 RX 11018516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810466286 RX 10490895 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674541504 RX 11019994 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317940/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810467861 RX 10492373 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674543103 RX 11021472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317953/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810469448 RX 10493851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674544702 RX 11022950 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810470912 RX 10495213 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674546301 RX 11024312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810472511 RX 10496681 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674547900 RX 11025780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 317991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810474110 RX 10498159 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674549376 RX 11027258 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318004/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810475709 RX 10499637 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674550975 RX 11028736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318017/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810477308 RX 10501115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674552574 RX 11030214 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810478772 RX 10502477 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674554173 RX 11031576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810480347 RX 10503945 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674555772 RX 11033044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810481934 RX 10505423 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674557248 RX 11034522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318068/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810483521 RX 10506901 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674558847 RX 11036000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318081/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810485096 RX 10508379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674560446 RX 11037478 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810486560 RX 10509741 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 336990/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674562045 RX 11038840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810488135 RX 10511209 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674563644 RX 11040308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810489722 RX 10512687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674565120 RX 11041786 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318132/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810491321 RX 10514165 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674566719 RX 11043264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318145/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810492920 RX 10515643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674568318 RX 11044742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810494396 RX 10517005 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674569917 RX 11046104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810495995 RX 10518473 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674571516 RX 11047572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318183/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810497582 RX 10519951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674572992 RX 11049050 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318196/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810499169 RX 10521429 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674574591 RX 11050528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318209/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810500744 RX 10522907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674576190 RX 11052006 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810502208 RX 10524269 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674577789 RX 11053368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810503783 RX 10525737 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674579388 RX 11054836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810505370 RX 10527215 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674580864 RX 11056314 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318260/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810506957 RX 10528693 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674582463 RX 11057792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318273/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810508532 RX 10530171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674584062 RX 11059270 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810510008 RX 10531533 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674585661 RX 11060632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810511607 RX 10533001 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674587260 RX 11062100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810513206 RX 10534479 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674588736 RX 11063578 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318324/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810514805 RX 10535957 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674590335 RX 11065056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318337/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810516404 RX 10537435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674591934 RX 11066534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810517856 RX 10538797 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674593533 RX 11067896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810519431 RX 10540265 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674595132 RX 11069364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810521018 RX 10541743 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674596608 RX 11070842 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318388/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810522605 RX 10543221 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674598207 RX 11072320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318401/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810524180 RX 10544699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674599806 RX 11073798 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810525644 RX 10546061 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674601405 RX 11075160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810527219 RX 10547529 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674603004 RX 11076628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810528818 RX 10549007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674604480 RX 11078106 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318452/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810530417 RX 10550485 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674606079 RX 11079584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318465/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810532016 RX 10551963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674607678 RX 11081062 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810533492 RX 10553325 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674609277 RX 11082424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810535091 RX 10554793 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674610876 RX 11083892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810536666 RX 10556271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674612352 RX 11085370 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3056991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318516/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810538253 RX 10557749 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674613951 RX 11086848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318529/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810539828 RX 10559227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3079988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674615550 RX 11088326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810541292 RX 10560589 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674617149 RX 11089688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810542867 RX 10562057 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674618748 RX 11091156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810544454 RX 10563535 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674620224 RX 11092634 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318580/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810546041 RX 10565013 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674621823 RX 11094112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318593/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810547628 RX 10566491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674623422 RX 11095590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810549104 RX 10567853 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674625021 RX 11096952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810550703 RX 10569321 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674626620 RX 11098420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810552302 RX 10570799 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674628096 RX 11099898 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318644/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810553901 RX 10572277 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674629695 RX 11101376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318657/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810555488 RX 10573755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674631294 RX 11102854 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810556940 RX 10575117 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674632893 RX 11104216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810558515 RX 10576585 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674634492 RX 11105684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810560102 RX 10578063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674635968 RX 11107162 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318708/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810561689 RX 10579541 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674637567 RX 11108640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318721/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810563264 RX 10581019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674639166 RX 11110118 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810564728 RX 10582381 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674640765 RX 11111480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810566315 RX 10583849 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674642364 RX 11112948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810567914 RX 10585327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674643840 RX 11114426 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318772/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810569513 RX 10586805 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674645439 RX 11115904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318785/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810571112 RX 10588283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674647038 RX 11117382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810572588 RX 10589645 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674648637 RX 11118744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810574175 RX 10591113 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674650236 RX 11120212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810575750 RX 10592591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674651712 RX 11121690 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318836/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810577337 RX 10594069 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674653311 RX 11123168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318849/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810578924 RX 10595547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674654910 RX 11124646 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810580376 RX 10596909 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674656509 RX 11126008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810581951 RX 10598377 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674658108 RX 11127476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810583538 RX 10599855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674659584 RX 11128954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318900/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810585125 RX 10601333 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674661183 RX 11130432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318913/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810586724 RX 10602811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674662782 RX 11131910 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810588200 RX 10604173 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674664381 RX 11133272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810589799 RX 10605641 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674665980 RX 11134740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810591398 RX 10607119 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674667456 RX 11136218 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318964/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810592985 RX 10608597 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674669055 RX 11137696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318977/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810594572 RX 10610075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674670654 RX 11139174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 318989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810596024 RX 10611437 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674672253 RX 11140536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810597611 RX 10612905 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674673852 RX 11142004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810599186 RX 10614383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674675328 RX 11143482 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319028/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810600773 RX 10615861 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674676927 RX 11144960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319041/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810602360 RX 10617339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674678526 RX 11146438 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810603812 RX 10618701 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674680125 RX 11147800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810605411 RX 10620169 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674681724 RX 11149268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810607010 RX 10621647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674683200 RX 11150746 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319092/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810608609 RX 10623125 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 337989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674684799 RX 11152224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319105/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810610208 RX 10624603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674686398 RX 11153702 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810611684 RX 10625965 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052952 RX 502400 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674687997 RX 11155064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810613382 RX 10627563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674689596 RX 11156532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810614957 RX 10628955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674691072 RX 11158010 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810616544 RX 10630463 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674692671 RX 11159488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810618131 RX 10631971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674694270 RX 11160966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810619583 RX 10633479 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674695869 RX 11162328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810621170 RX 10634987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674697468 RX 11163796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810622745 RX 10636379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674698944 RX 11165274 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810624344 RX 10637887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674700543 RX 11166752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810625943 RX 10639395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674702142 RX 11168230 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810627419 RX 10640903 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674703741 RX 11169592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319263/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810629018 RX 10642411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674705340 RX 11171060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810630617 RX 10643803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674706816 RX 11172538 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810632192 RX 10645311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674708415 RX 11174016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810633779 RX 10646819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674710014 RX 11175494 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810635231 RX 10648327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674711613 RX 11176856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810636818 RX 10649835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674713212 RX 11178324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810638393 RX 10651227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674714688 RX 11179802 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810639980 RX 10652735 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674716287 RX 11181280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810641567 RX 10654243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674717886 RX 11182758 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810643031 RX 10655751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338270/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674719485 RX 11184120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810644630 RX 10657259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674721084 RX 11185588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810646229 RX 10658651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674722560 RX 11187066 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810647828 RX 10660159 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674724159 RX 11188544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810649427 RX 10661667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674725758 RX 11190022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810650891 RX 10663175 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674727357 RX 11191384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810652466 RX 10664683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674728956 RX 11192852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810654041 RX 10666075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674730432 RX 11194330 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810655628 RX 10667583 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674732031 RX 11195808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810657215 RX 10669091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674733630 RX 11197286 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810658667 RX 10670599 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674735229 RX 11198648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3057990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810660254 RX 10672107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674736828 RX 11200116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810661841 RX 10673499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674738304 RX 11201594 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810663440 RX 10675007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3080999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674739903 RX 11203072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810665039 RX 10676515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674741502 RX 11204550 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810666515 RX 10678023 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674743101 RX 11205912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810668114 RX 10679531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674744700 RX 11207380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810669701 RX 10680923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674746176 RX 11208858 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810671276 RX 10682431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674747775 RX 11210336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810672863 RX 10683939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674749374 RX 11211814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810674327 RX 10685447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674750973 RX 11213176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810675902 RX 10686955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674752572 RX 11214644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810677477 RX 10688347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674754048 RX 11216122 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810679064 RX 10689855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674755647 RX 11217600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810680651 RX 10691363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674757246 RX 11219078 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810682127 RX 10692871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674758845 RX 11220440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810683726 RX 10694379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674760444 RX 11221908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810685325 RX 10695771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674761920 RX 11223386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810686924 RX 10697279 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674763519 RX 11224864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810688511 RX 10698787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674765118 RX 11226342 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810689975 RX 10700295 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674766717 RX 11227704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810691550 RX 10701803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674768316 RX 11229172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810693137 RX 10703195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674769792 RX 11230650 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810694712 RX 10704703 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674771391 RX 11232128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810696299 RX 10706211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674772990 RX 11233606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810697763 RX 10707719 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674774589 RX 11234968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810699338 RX 10709227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674776188 RX 11236436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810700937 RX 10710619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674777664 RX 11237914 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810702536 RX 10712127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674779263 RX 11239392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810704135 RX 10713635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674780862 RX 11240870 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810705611 RX 10715143 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674782461 RX 11242232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810707198 RX 10716651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674784060 RX 11243700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810708785 RX 10718043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674785536 RX 11245178 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810710360 RX 10719551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674787135 RX 11246656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810711947 RX 10721059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674788734 RX 11248134 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810713411 RX 10722567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674790333 RX 11249496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810714986 RX 10724075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674791932 RX 11250964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810716573 RX 10725467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674793408 RX 11252442 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 319992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810718148 RX 10726975 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674795007 RX 11253920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810719747 RX 10728483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674796606 RX 11255398 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810721223 RX 10729991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674798205 RX 11256760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810722822 RX 10731499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674799804 RX 11258228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810724421 RX 10732891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674801280 RX 11259706 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810726020 RX 10734399 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674802879 RX 11261184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810727595 RX 10735907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674804478 RX 11262662 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810729059 RX 10737415 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674806077 RX 11264024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810730634 RX 10738923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 338987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674807676 RX 11265492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810732221 RX 10740315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674809152 RX 11266970 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810733796 RX 10741823 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674810751 RX 11268448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810735383 RX 10743331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674812350 RX 11269926 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810736847 RX 10744839 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674813949 RX 11271288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810738434 RX 10746347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674815548 RX 11272756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810740033 RX 10747739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674817024 RX 11274234 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810741632 RX 10749247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674818623 RX 11275712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810743231 RX 10750755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674820222 RX 11277190 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810744707 RX 10752263 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674821821 RX 11278552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810746282 RX 10753771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674823420 RX 11280020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810747869 RX 10755163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674824896 RX 11281498 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810749444 RX 10756671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674826495 RX 11282976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810751031 RX 10758179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674828094 RX 11284454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810752495 RX 10759687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674829693 RX 11285816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810754070 RX 10761195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674831292 RX 11287284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810755657 RX 10762587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674832768 RX 11288762 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810757244 RX 10764095 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674834367 RX 11290240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810758843 RX 10765603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674835966 RX 11291718 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810760319 RX 10767111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674837565 RX 11293080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810761918 RX 10768619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674839164 RX 11294548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810763517 RX 10770011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674840640 RX 11296026 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810765104 RX 10771519 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674842239 RX 11297504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810766679 RX 10773027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674843838 RX 11298982 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810768143 RX 10774535 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674845437 RX 11300344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810769718 RX 10776043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674847036 RX 11301812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810771305 RX 10777435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674848512 RX 11303290 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810772880 RX 10778943 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674850111 RX 11304768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810774467 RX 10780451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674851710 RX 11306246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810775931 RX 10781959 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674853309 RX 11307608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810777530 RX 10783467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674854908 RX 11309076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810779129 RX 10784859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674856384 RX 11310554 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810780728 RX 10786367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674857983 RX 11312032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3058989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810782327 RX 10787875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674859582 RX 11313510 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810783791 RX 10789383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674861181 RX 11314872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320543/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810785366 RX 10790891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3081998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674862780 RX 11316340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810786953 RX 10792283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674864256 RX 11317818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810788540 RX 10793791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674865855 RX 11319296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810790115 RX 10795299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674867454 RX 11320774 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810791579 RX 10796807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674869053 RX 11322136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810793154 RX 10798315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674870652 RX 11323604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810794741 RX 10799707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674872128 RX 11325082 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810796340 RX 10801215 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674873727 RX 11326560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810797939 RX 10802723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674875326 RX 11328038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810799415 RX 10804231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339550/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674876925 RX 11329400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810801014 RX 10805739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674878524 RX 11330868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810802601 RX 10807131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674880000 RX 11332346 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810804188 RX 10808639 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674881599 RX 11333824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810805763 RX 10810147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674883198 RX 11335302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810807227 RX 10811655 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674884797 RX 11336664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810808802 RX 10813163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674886396 RX 11338132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810810389 RX 10814555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674887872 RX 11339610 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810811976 RX 10816063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674889471 RX 11341088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810813551 RX 10817571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674891070 RX 11342566 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810815027 RX 10819079 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674892669 RX 11343928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810816626 RX 10820587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674894268 RX 11345396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810818225 RX 10821979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674895744 RX 11346874 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810819824 RX 10823487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674897343 RX 11348352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810821423 RX 10824995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674898942 RX 11349830 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810822875 RX 10826503 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674900541 RX 11351192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810824450 RX 10828011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674902140 RX 11352660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810826037 RX 10829403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674903616 RX 11354138 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810827624 RX 10830911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674905215 RX 11355616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810829199 RX 10832419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674906814 RX 11357094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810830663 RX 10833927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674908413 RX 11358456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810832238 RX 10835435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674910012 RX 11359924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810833837 RX 10836827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674911488 RX 11361402 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810835436 RX 10838335 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674913087 RX 11362880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810837035 RX 10839843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674914686 RX 11364358 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810838511 RX 10841351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674916285 RX 11365720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 320991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810840110 RX 10842859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674917884 RX 11367188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810841685 RX 10844251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674919360 RX 11368666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810843272 RX 10845759 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674920959 RX 11370144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810844847 RX 10847267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674922558 RX 11371622 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810846311 RX 10848775 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674924157 RX 11372984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810847886 RX 10850283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674925756 RX 11374452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810849473 RX 10851675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674927232 RX 11375930 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810851060 RX 10853183 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674928831 RX 11377408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810852647 RX 10854691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674930430 RX 11378886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810854123 RX 10856199 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 339998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674932029 RX 11380248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810855722 RX 10857707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674933628 RX 11381716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810857321 RX 10859099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674935104 RX 11383194 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810858920 RX 10860607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674936703 RX 11384672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810860507 RX 10862115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674938302 RX 11386150 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -53 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810861959 RX 10863623 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674939901 RX 11387512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321183/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810863534 RX 10865131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674941500 RX 11388980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810865121 RX 10866523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674942976 RX 11390458 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810866708 RX 10868031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674944575 RX 11391936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810868283 RX 10869539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674946174 RX 11393414 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810869747 RX 10871047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674947773 RX 11394776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810871334 RX 10872555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674949372 RX 11396244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810872933 RX 10873947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674950848 RX 11397722 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810874532 RX 10875455 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674952447 RX 11399200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810876131 RX 10876963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674954046 RX 11400678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810877607 RX 10878471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674955645 RX 11402040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810879194 RX 10879979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674957244 RX 11403508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810880769 RX 10881371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674958720 RX 11404986 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810882356 RX 10882879 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674960319 RX 11406464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810883943 RX 10884387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674961918 RX 11407942 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810885395 RX 10885895 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674963517 RX 11409304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810886970 RX 10887403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674965116 RX 11410772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810888557 RX 10888795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674966592 RX 11412250 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810890144 RX 10890303 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674968191 RX 11413728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810891743 RX 10891811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674969790 RX 11415206 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810893219 RX 10893319 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674971389 RX 11416568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810894818 RX 10894827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674972988 RX 11418036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810896417 RX 10896219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674974464 RX 11419514 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810898004 RX 10897727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674976063 RX 11420992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810899591 RX 10899235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674977662 RX 11422470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810901043 RX 10900743 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674979261 RX 11423832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810902630 RX 10902251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674980860 RX 11425300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3059987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810904205 RX 10903643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674982336 RX 11426778 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810905792 RX 10905151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674983935 RX 11428256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810907379 RX 10906659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3082996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674985534 RX 11429734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810908831 RX 10908167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674987133 RX 11431096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810910430 RX 10909675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674988732 RX 11432564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810912029 RX 10911067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674990208 RX 11434042 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810913628 RX 10912575 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674991807 RX 11435520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810915227 RX 10914083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674993406 RX 11436998 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810916703 RX 10915591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674995005 RX 11438360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810918278 RX 10917099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674996604 RX 11439828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810919853 RX 10918491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674998080 RX 11441306 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810921440 RX 10919999 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20674999679 RX 11442784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810923027 RX 10921507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675001278 RX 11444262 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810924479 RX 10923015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675002877 RX 11445624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810926066 RX 10924523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675004476 RX 11447092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810927641 RX 10925915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675005952 RX 11448570 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810929240 RX 10927423 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675007551 RX 11450048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810930839 RX 10928931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675009150 RX 11451526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810932315 RX 10930439 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675010749 RX 11452888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810933914 RX 10931947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675012348 RX 11454356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810935513 RX 10933339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675013824 RX 11455834 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810937088 RX 10934847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675015423 RX 11457312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810938675 RX 10936355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675017022 RX 11458790 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810940127 RX 10937863 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675018621 RX 11460152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810941714 RX 10939371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675020220 RX 11461620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810943289 RX 10940763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675021696 RX 11463098 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810944876 RX 10942271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083303/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675023295 RX 11464576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060333/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810946463 RX 10943779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083316/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675024894 RX 11466054 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810947927 RX 10945287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340766/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675026493 RX 11467416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321887/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810949526 RX 10946795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675028092 RX 11468884 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060371/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810951125 RX 10948187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083354/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675029568 RX 11470362 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060384/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810952724 RX 10949695 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083367/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675031167 RX 11471840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060397/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810954323 RX 10951203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083380/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675032766 RX 11473318 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810955787 RX 10952711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340830/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675034365 RX 11474680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321951/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810957362 RX 10954219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675035964 RX 11476148 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060435/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810958937 RX 10955611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083418/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675037440 RX 11477626 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060448/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810960524 RX 10957119 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083431/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675039039 RX 11479104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060461/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 321989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810962111 RX 10958627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083444/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675040638 RX 11480582 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810963563 RX 10960135 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340894/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675042237 RX 11481944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322015/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810965150 RX 10961643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675043836 RX 11483412 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060499/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810966737 RX 10963035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083482/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675045312 RX 11484890 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060512/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810968336 RX 10964543 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083495/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675046911 RX 11486368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060525/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810969935 RX 10966051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083508/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675048510 RX 11487846 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810971411 RX 10967559 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340958/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675050109 RX 11489208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322079/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810973010 RX 10969067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675051708 RX 11490676 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060563/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810974597 RX 10970459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083546/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675053184 RX 11492154 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060576/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810976172 RX 10971967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083559/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 340997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675054783 RX 11493632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060589/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810977759 RX 10973475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083572/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675056382 RX 11495110 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810979223 RX 10974983 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341022/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675057981 RX 11496472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322143/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810980798 RX 10976491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675059580 RX 11497940 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060627/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810982373 RX 10977883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083610/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675061056 RX 11499418 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060640/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810983960 RX 10979391 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083623/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675062655 RX 11500896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060653/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810985547 RX 10980899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083636/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675064254 RX 11502374 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810987023 RX 10982407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341086/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675065853 RX 11503736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322207/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810988622 RX 10983915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675067452 RX 11505204 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060691/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810990221 RX 10985307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083674/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675068928 RX 11506682 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060704/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810991820 RX 10986815 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083687/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675070527 RX 11508160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060717/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810993407 RX 10988323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083700/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675072126 RX 11509638 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810994871 RX 10989831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341150/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675073725 RX 11511000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322271/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810996446 RX 10991339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675075324 RX 11512468 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060755/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810998033 RX 10992731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083738/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675076800 RX 11513946 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060768/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21810999608 RX 10994239 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083751/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675078399 RX 11515424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060781/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811001195 RX 10995747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083764/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675079998 RX 11516902 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811002659 RX 10997255 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341214/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675081597 RX 11518264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322335/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811004234 RX 10998763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675083196 RX 11519732 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060819/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811005833 RX 11000155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083802/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675084672 RX 11521210 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060832/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811007432 RX 11001663 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083815/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675086271 RX 11522688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060845/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811009031 RX 11003171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083828/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675087870 RX 11524166 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811010507 RX 11004679 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341278/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675089469 RX 11525528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322399/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811012094 RX 11006187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675091068 RX 11526996 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060883/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811013681 RX 11007579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083866/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675092544 RX 11528474 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060896/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811015256 RX 11009087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083879/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675094143 RX 11529952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060909/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811016843 RX 11010595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083892/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675095742 RX 11531430 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811018307 RX 11012103 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341342/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675097341 RX 11532792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322463/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811019882 RX 11013611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675098940 RX 11534260 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060947/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811021469 RX 11015003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083930/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675100416 RX 11535738 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060960/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811023044 RX 11016511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083943/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675102015 RX 11537216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060973/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811024643 RX 11018019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083956/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675103614 RX 11538694 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811026119 RX 11019527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341406/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675105213 RX 11540056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3060998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322527/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811027718 RX 11021035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675106812 RX 11541524 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061011/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811029317 RX 11022427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3083994/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675108288 RX 11543002 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061024/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811030916 RX 11023935 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084007/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675109887 RX 11544480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061037/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811032491 RX 11025443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084020/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675111486 RX 11545958 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811033955 RX 11026951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341470/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675113085 RX 11547320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322591/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811035530 RX 11028459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675114684 RX 11548788 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061075/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811037117 RX 11029851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084058/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675116160 RX 11550266 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061088/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811038692 RX 11031359 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084071/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675117759 RX 11551744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061101/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811040279 RX 11032867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084084/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675119358 RX 11553222 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811041743 RX 11034375 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341534/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675120957 RX 11554584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322655/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811043330 RX 11035883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675122556 RX 11556052 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061139/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811044929 RX 11037275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084122/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675124032 RX 11557530 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061152/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811046528 RX 11038783 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084135/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675125631 RX 11559008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061165/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811048127 RX 11040291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084148/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675127230 RX 11560486 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811049603 RX 11041799 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341598/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675128829 RX 11561848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322719/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811051178 RX 11043307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675130428 RX 11563316 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061203/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811052765 RX 11044699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084186/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675131904 RX 11564794 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061216/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811054340 RX 11046207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084199/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675133503 RX 11566272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061229/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811055927 RX 11047715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084212/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675135102 RX 11567750 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811057391 RX 11049223 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341662/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675136701 RX 11569112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322783/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811058966 RX 11050731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675138300 RX 11570580 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061267/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811060553 RX 11052123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084250/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675139776 RX 11572058 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061280/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811062140 RX 11053631 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084263/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675141375 RX 11573536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061293/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811063739 RX 11055139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084276/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675142974 RX 11575014 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811065215 RX 11056647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675144573 RX 11576376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322847/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811066814 RX 11058155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675146172 RX 11577844 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061331/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811068413 RX 11059547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084314/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675147648 RX 11579322 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061344/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811070000 RX 11061055 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084327/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675149247 RX 11580800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061357/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811071575 RX 11062563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084340/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675150846 RX 11582278 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811073039 RX 11064071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341790/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675152445 RX 11583640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322911/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811074614 RX 11065579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675154044 RX 11585108 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061395/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811076201 RX 11066971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084378/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675155520 RX 11586586 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061408/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811077776 RX 11068479 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084391/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675157119 RX 11588064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061421/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811079363 RX 11069987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084404/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675158718 RX 11589542 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811080827 RX 11071495 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341854/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675160317 RX 11590904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322975/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811082426 RX 11073003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675161916 RX 11592372 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061459/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 322987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811084025 RX 11074395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084442/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675163392 RX 11593850 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061472/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811085624 RX 11075903 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084455/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675164991 RX 11595328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061485/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811087223 RX 11077411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084468/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675166590 RX 11596806 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811088687 RX 11078919 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341918/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675168189 RX 11598168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323039/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811090262 RX 11080427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675169788 RX 11599636 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061523/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811091849 RX 11081819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084506/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675171264 RX 11601114 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061536/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811093436 RX 11083327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084519/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675172863 RX 11602592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061549/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811095011 RX 11084835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084532/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675174462 RX 11604070 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811096475 RX 11086343 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341982/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675176061 RX 11605432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323103/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811098050 RX 11087851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 341995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675177660 RX 11606900 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061587/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811099637 RX 11089243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084570/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675179136 RX 11608378 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061600/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811101236 RX 11090751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084583/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675180735 RX 11609856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061613/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811102835 RX 11092259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084596/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675182334 RX 11611334 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811104311 RX 11093767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342046/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675183933 RX 11612696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323167/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811105910 RX 11095275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675185532 RX 11614164 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061651/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811107497 RX 11096667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084634/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675187008 RX 11615642 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061664/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811109084 RX 11098175 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084647/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675188607 RX 11617120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061677/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811110659 RX 11099683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084660/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675190206 RX 11618598 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811112123 RX 11101191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342110/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675191805 RX 11619960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323231/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811113698 RX 11102699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675193404 RX 11621428 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061715/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811115285 RX 11104091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084698/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675194880 RX 11622906 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061728/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811116872 RX 11105599 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084711/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675196479 RX 11624384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061741/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811118447 RX 11107107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084724/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675198078 RX 11625862 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811119923 RX 11108615 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342174/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675199677 RX 11627224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323295/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811121522 RX 11110123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675201276 RX 11628692 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061779/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811123121 RX 11111515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084762/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675202752 RX 11630170 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061792/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811124720 RX 11113023 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084775/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675204351 RX 11631648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061805/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811126319 RX 11114531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084788/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675205950 RX 11633126 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811127771 RX 11116039 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342238/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675207549 RX 11634488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323359/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811129346 RX 11117547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675209148 RX 11635956 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061843/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811130933 RX 11118939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084826/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675210624 RX 11637434 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061856/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811132520 RX 11120447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084839/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675212223 RX 11638912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061869/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811134095 RX 11121955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084852/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675213822 RX 11640390 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811135559 RX 11123463 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342302/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675215421 RX 11641752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323423/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811137134 RX 11124971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675217020 RX 11643220 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061907/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811138733 RX 11126363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084890/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675218496 RX 11644698 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061920/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811140332 RX 11127871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084903/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675220095 RX 11646176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061933/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811141931 RX 11129379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084916/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675221694 RX 11647654 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811143407 RX 11130887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342366/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675223293 RX 11649016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323487/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811145006 RX 11132395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675224892 RX 11650484 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061971/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811146581 RX 11133787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084954/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675226368 RX 11651962 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061984/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811148168 RX 11135295 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084967/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675227967 RX 11653440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3061997/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811149743 RX 11136803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084980/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675229566 RX 11654918 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811151207 RX 11138311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3084993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342430/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675231165 RX 11656280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323551/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811152782 RX 11139819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675232764 RX 11657748 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062035/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811154369 RX 11141211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085018/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675234240 RX 11659226 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062048/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811155956 RX 11142719 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085031/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675235839 RX 11660704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062061/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811157543 RX 11144227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085044/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675237438 RX 11662182 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811159019 RX 11145735 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342494/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675239037 RX 11663544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323615/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811160618 RX 11147243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675240636 RX 11665012 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062099/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811162217 RX 11148635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085082/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675242112 RX 11666490 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062112/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811163816 RX 11150143 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085095/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675243711 RX 11667968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062125/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811165403 RX 11151651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085108/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675245310 RX 11669446 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811166855 RX 11153159 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342558/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675246909 RX 11670808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323679/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811168430 RX 11154667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675248508 RX 11672276 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062163/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811170017 RX 11156059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085146/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675249984 RX 11673754 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062176/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811171604 RX 11157567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085159/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675251583 RX 11675232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062189/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811173179 RX 11159075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085172/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675253182 RX 11676710 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811174643 RX 11160583 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342622/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675254781 RX 11678072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323743/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811176230 RX 11162091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675256380 RX 11679540 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062227/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811177829 RX 11163483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085210/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675257856 RX 11681018 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062240/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811179428 RX 11164991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085223/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675259455 RX 11682496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062253/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811181027 RX 11166499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085236/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675261054 RX 11683974 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811182503 RX 11168007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342686/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675262653 RX 11685336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323807/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811184090 RX 11169515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675264252 RX 11686804 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062291/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811185665 RX 11170907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085274/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675265728 RX 11688282 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062304/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811187252 RX 11172415 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085287/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675267327 RX 11689760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062317/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811188839 RX 11173923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085300/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675268926 RX 11691238 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062329/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811190291 RX 11175431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342750/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675270525 RX 11692600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062342/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323871/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811191866 RX 11176939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675272124 RX 11694068 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062355/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811193453 RX 11178331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085338/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675273600 RX 11695546 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062368/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811195040 RX 11179839 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085351/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675275199 RX 11697024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062381/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811196639 RX 11181347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085364/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675276798 RX 11698502 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062393/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811198115 RX 11182855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342814/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675278397 RX 11699864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062406/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323935/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811199714 RX 11184363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675279996 RX 11701332 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062419/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811201313 RX 11185755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085402/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675281472 RX 11702810 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062432/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811202900 RX 11187263 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085415/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675283071 RX 11704288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062445/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811204487 RX 11188771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085428/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675284670 RX 11705766 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062457/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811205939 RX 11190279 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342878/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675286269 RX 11707128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062470/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 323999/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811207526 RX 11191787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675287868 RX 11708596 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062483/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811209101 RX 11193179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085466/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675289344 RX 11710074 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062496/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811210688 RX 11194687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085479/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675290943 RX 11711552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062509/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811212275 RX 11196195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085492/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675292542 RX 11713030 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062521/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811213727 RX 11197703 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342942/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675294141 RX 11714392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062534/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324063/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811215326 RX 11199211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675295740 RX 11715860 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062547/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811216925 RX 11200603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085530/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675297216 RX 11717338 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062560/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811218524 RX 11202111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085543/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675298815 RX 11718816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062573/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811220123 RX 11203619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085556/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 342994/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675300414 RX 11720294 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062585/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811221599 RX 11205127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343006/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675302013 RX 11721656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062598/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324127/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811223174 RX 11206635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675303612 RX 11723124 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062611/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811224749 RX 11208027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085594/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675305088 RX 11724602 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062624/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811226336 RX 11209535 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085607/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675306687 RX 11726080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062637/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811227923 RX 11211043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085620/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675308286 RX 11727558 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062649/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811229375 RX 11212551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343070/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675309885 RX 11728920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062662/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324191/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811230962 RX 11214059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675311484 RX 11730388 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062675/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811232537 RX 11215451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085658/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675312960 RX 11731866 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062688/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811234136 RX 11216959 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085671/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675314559 RX 11733344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062701/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811235735 RX 11218467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085684/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675316158 RX 11734822 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062713/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811237211 RX 11219975 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343134/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675317757 RX 11736184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062726/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324255/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811238810 RX 11221483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675319356 RX 11737652 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062739/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811240409 RX 11222875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085722/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675320832 RX 11739130 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062752/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811241984 RX 11224383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085735/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675322431 RX 11740608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062765/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811243571 RX 11225891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085748/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675324030 RX 11742086 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062777/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811245023 RX 11227399 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343198/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675325629 RX 11743448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062790/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324319/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811246610 RX 11228907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675327228 RX 11744916 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062803/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811248185 RX 11230299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085786/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675328704 RX 11746394 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062816/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811249772 RX 11231807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085799/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675330303 RX 11747872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062829/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811251359 RX 11233315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085812/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675331902 RX 11749350 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062841/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811252823 RX 11234823 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343262/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675333501 RX 11750712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062854/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324383/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811254422 RX 11236331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675335100 RX 11752180 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062867/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811256021 RX 11237723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085850/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675336576 RX 11753658 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062880/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811257620 RX 11239231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085863/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675338175 RX 11755136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062893/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811259219 RX 11240739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085876/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675339774 RX 11756614 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062905/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811260683 RX 11242247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343326/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675341373 RX 11757976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062918/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324447/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811262258 RX 11243755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675342972 RX 11759444 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062931/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811263833 RX 11245147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085914/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675344448 RX 11760922 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062944/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811265420 RX 11246655 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085927/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675346047 RX 11762400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062957/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811267007 RX 11248163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085940/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675347646 RX 11763878 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062969/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811268459 RX 11249671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343390/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675349245 RX 11765240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062982/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324511/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811270046 RX 11251179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675350844 RX 11766708 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3062995/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811271633 RX 11252571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085978/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675352320 RX 11768186 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063008/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811273232 RX 11254079 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3085991/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675353919 RX 11769664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063021/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811274831 RX 11255587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086004/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675355518 RX 11771142 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063033/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811276307 RX 11257095 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343454/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675357117 RX 11772504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063046/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324575/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811277906 RX 11258603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675358716 RX 11773972 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063059/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811279493 RX 11259995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086042/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675360192 RX 11775450 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063072/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811281068 RX 11261503 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086055/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675361791 RX 11776928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063085/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811282655 RX 11263011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086068/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675363390 RX 11778406 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063097/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811284119 RX 11264519 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343518/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675364989 RX 11779768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063110/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324639/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811285694 RX 11266027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675366588 RX 11781236 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063123/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811287269 RX 11267419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086106/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675368064 RX 11782714 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063136/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811288856 RX 11268927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086119/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675369663 RX 11784192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063149/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811290443 RX 11270435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086132/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675371262 RX 11785670 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063161/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811291919 RX 11271943 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343582/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675372861 RX 11787032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063174/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324703/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811293518 RX 11273451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675374460 RX 11788500 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063187/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811295117 RX 11274843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086170/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675375936 RX 11789978 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063200/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811296716 RX 11276351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086183/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675377535 RX 11791456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063213/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324741/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811298303 RX 11277859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086196/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675379134 RX 11792934 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063225/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324754/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811299767 RX 11279367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343646/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675380733 RX 11794296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063238/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324767/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811301342 RX 11280875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675382332 RX 11795764 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063251/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324779/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811302929 RX 11282267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086234/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675383808 RX 11797242 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063264/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324792/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811304504 RX 11283775 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086247/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675385407 RX 11798720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063277/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324805/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811306091 RX 11285283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086260/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675387006 RX 11800198 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063289/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324818/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811307555 RX 11286791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343710/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675388605 RX 11801560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063302/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324831/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811309130 RX 11288299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675390204 RX 11803028 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063315/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324843/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811310729 RX 11289691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086298/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675391680 RX 11804506 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063328/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324856/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811312328 RX 11291199 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086311/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675393279 RX 11805984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063341/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324869/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811313927 RX 11292707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086324/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675394878 RX 11807462 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063353/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324882/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811315403 RX 11294215 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343774/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675396477 RX 11808824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063366/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324895/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811316990 RX 11295723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675398076 RX 11810292 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063379/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324907/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811318577 RX 11297115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086362/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675399552 RX 11811770 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063392/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324920/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811320152 RX 11298623 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086375/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675401151 RX 11813248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063405/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324933/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811321739 RX 11300131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086388/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675402750 RX 11814726 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063417/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324946/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811323203 RX 11301639 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343838/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675404349 RX 11816088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063430/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324959/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811324778 RX 11303147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675405948 RX 11817556 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063443/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324971/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811326365 RX 11304539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086426/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675407424 RX 11819034 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063456/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324984/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811327940 RX 11306047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086439/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675409023 RX 11820512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063469/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 324997/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811329539 RX 11307555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086452/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675410622 RX 11821990 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063481/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325010/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811331015 RX 11309063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343902/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675412221 RX 11823352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063494/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325023/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811332614 RX 11310571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675413820 RX 11824820 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063507/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325035/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811334213 RX 11311963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086490/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675415296 RX 11826298 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063520/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325048/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811335812 RX 11313471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086503/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675416895 RX 11827776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063533/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325061/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811337387 RX 11314979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086516/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675418494 RX 11829254 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063545/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325074/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811338851 RX 11316487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343966/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675420093 RX 11830616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063558/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325087/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811340426 RX 11317995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675421692 RX 11832084 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063571/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325099/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811342013 RX 11319387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086554/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 343992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675423168 RX 11833562 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063584/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325112/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811343588 RX 11320895 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086567/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675424767 RX 11835040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063597/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325125/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811345175 RX 11322403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086580/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675426366 RX 11836518 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063609/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325138/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811346639 RX 11323911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344030/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675427965 RX 11837880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063622/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325151/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811348226 RX 11325419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675429564 RX 11839348 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063635/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325163/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811349825 RX 11326811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086618/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675431040 RX 11840826 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063648/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325176/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811351424 RX 11328319 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086631/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675432639 RX 11842304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063661/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325189/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811353023 RX 11329827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086644/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675434238 RX 11843782 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063673/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325202/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811354499 RX 11331335 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344094/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675435837 RX 11845144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063686/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325215/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811356074 RX 11332843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675437436 RX 11846612 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063699/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325227/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811357661 RX 11334235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086682/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675438912 RX 11848090 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063712/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325240/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811359236 RX 11335743 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086695/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675440511 RX 11849568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063725/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325253/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811360823 RX 11337251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086708/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675442110 RX 11851046 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063737/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325266/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811362287 RX 11338759 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344158/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675443709 RX 11852408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063750/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325279/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811363862 RX 11340267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675445308 RX 11853876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063763/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325291/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811365449 RX 11341659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086746/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675446784 RX 11855354 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063776/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325304/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811367036 RX 11343167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086759/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675448383 RX 11856832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063789/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325317/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811368635 RX 11344675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086772/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675449982 RX 11858310 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063801/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325330/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811370111 RX 11346183 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344222/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675451581 RX 11859672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063814/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325343/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811371710 RX 11347691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675453180 RX 11861140 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063827/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325355/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811373309 RX 11349083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086810/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675454656 RX 11862618 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063840/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325368/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811374896 RX 11350591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086823/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675456255 RX 11864096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063853/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325381/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811376471 RX 11352099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086836/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675457854 RX 11865574 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063865/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325394/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811377935 RX 11353607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344286/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675459453 RX 11866936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063878/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325407/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811379510 RX 11355115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675461052 RX 11868404 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063891/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325419/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811381097 RX 11356507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086874/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675462528 RX 11869882 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063904/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325432/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811382672 RX 11358015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086887/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675464127 RX 11871360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063917/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325445/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811384259 RX 11359523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086900/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675465726 RX 11872838 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063929/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325458/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811385723 RX 11361031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344350/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675467325 RX 11874200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063942/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325471/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811387322 RX 11362539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675468924 RX 11875668 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063955/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325483/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811388921 RX 11363931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086938/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675470400 RX 11877146 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063968/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325496/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811390520 RX 11365439 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086951/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675471999 RX 11878624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063981/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325509/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811392119 RX 11366947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086964/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675473598 RX 11880102 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3063993/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325522/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811393583 RX 11368455 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344414/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675475197 RX 11881464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064006/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325535/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811395158 RX 11369963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3086990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675476796 RX 11882932 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064019/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325547/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811396745 RX 11371355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087002/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675478272 RX 11884410 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064032/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325560/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811398332 RX 11372863 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087015/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675479871 RX 11885888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064045/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325573/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811399907 RX 11374371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087028/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675481470 RX 11887366 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064057/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325586/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811401371 RX 11375879 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344478/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675483069 RX 11888728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064070/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325599/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811402946 RX 11377387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675484668 RX 11890196 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064083/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325611/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811404533 RX 11378779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087066/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675486144 RX 11891674 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064096/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325624/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811406132 RX 11380287 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087079/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675487743 RX 11893152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064109/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325637/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811407731 RX 11381795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087092/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675489342 RX 11894630 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064121/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325650/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811409207 RX 11383303 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344542/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675490941 RX 11895992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064134/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325663/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811410806 RX 11384811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675492540 RX 11897460 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064147/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325675/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811412393 RX 11386203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087130/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675494016 RX 11898938 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064160/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325688/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811413980 RX 11387711 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087143/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675495615 RX 11900416 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064173/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325701/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811415555 RX 11389219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087156/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675497214 RX 11901894 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064185/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325714/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811417019 RX 11390727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344606/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675498813 RX 11903256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064198/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325727/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811418594 RX 11392235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675500412 RX 11904724 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064211/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325739/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811420181 RX 11393627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087194/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675501888 RX 11906202 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064224/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325752/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811421768 RX 11395135 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087207/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675503487 RX 11907680 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064237/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325765/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811423343 RX 11396643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087220/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675505086 RX 11909158 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064249/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325778/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811424819 RX 11398151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344670/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675506685 RX 11910520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064262/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325791/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811426418 RX 11399659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675508284 RX 11911988 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064275/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325803/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811428017 RX 11401051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087258/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675509760 RX 11913466 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325816/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811429616 RX 11402559 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087271/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675511359 RX 11914944 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064301/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325829/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811431215 RX 11404067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087284/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675512958 RX 11916422 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064313/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325842/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811432667 RX 11405575 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344734/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675514557 RX 11917784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064326/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325855/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811434242 RX 11407083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675516156 RX 11919252 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064339/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325867/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811435829 RX 11408475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087322/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675517632 RX 11920730 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064352/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325880/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811437416 RX 11409983 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087335/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675519231 RX 11922208 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064365/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325893/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811438991 RX 11411491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087348/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675520830 RX 11923686 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064377/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325906/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811440455 RX 11412999 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344798/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675522429 RX 11925048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064390/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325919/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811442030 RX 11414507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675524028 RX 11926516 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064403/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325931/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811443629 RX 11415899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087386/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675525504 RX 11927994 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064416/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325944/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811445228 RX 11417407 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087399/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675527103 RX 11929472 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064429/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325957/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811446827 RX 11418915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087412/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675528702 RX 11930950 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064441/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325970/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811448303 RX 11420423 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344862/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675530301 RX 11932312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064454/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325983/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811449902 RX 11421931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675531900 RX 11933780 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064467/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 325995/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811451477 RX 11423323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087450/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675533376 RX 11935258 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064480/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326008/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811453064 RX 11424831 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087463/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675534975 RX 11936736 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064493/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326021/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811454639 RX 11426339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087476/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675536574 RX 11938214 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064505/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326034/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811456103 RX 11427847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344926/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675538173 RX 11939576 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064518/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326047/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811457678 RX 11429355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675539772 RX 11941044 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064531/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326059/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811459265 RX 11430747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087514/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675541248 RX 11942522 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064544/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326072/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811460852 RX 11432255 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087527/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675542847 RX 11944000 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064557/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326085/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811462439 RX 11433763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087540/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675544446 RX 11945478 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064569/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326098/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811463915 RX 11435271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 344990/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675546045 RX 11946840 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064582/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326111/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811465514 RX 11436779 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675547644 RX 11948308 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064595/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326123/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811467113 RX 11438171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087578/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675549120 RX 11949786 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064608/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326136/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811468712 RX 11439679 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087591/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675550719 RX 11951264 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064621/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326149/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811470299 RX 11441187 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087604/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675552318 RX 11952742 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064633/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326162/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811471751 RX 11442695 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345054/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675553917 RX 11954104 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064646/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326175/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811473326 RX 11444203 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675555516 RX 11955572 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064659/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326187/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811474913 RX 11445595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087642/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675556992 RX 11957050 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064672/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326200/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811476500 RX 11447103 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087655/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675558591 RX 11958528 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064685/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326213/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811478075 RX 11448611 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087668/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675560190 RX 11960006 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064697/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326226/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811479539 RX 11450119 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345118/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675561789 RX 11961368 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064710/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326239/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811481126 RX 11451627 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675563388 RX 11962836 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064723/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326251/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811482725 RX 11453019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087706/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675564864 RX 11964314 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064736/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326264/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811484324 RX 11454527 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087719/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675566463 RX 11965792 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064749/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326277/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811485923 RX 11456035 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087732/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675568062 RX 11967270 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064761/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326290/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811487399 RX 11457543 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345182/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675569661 RX 11968632 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064774/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326303/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811488986 RX 11459051 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675571260 RX 11970100 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064787/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326315/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811490561 RX 11460443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087770/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675572736 RX 11971578 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064800/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326328/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811492148 RX 11461951 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087783/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675574335 RX 11973056 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064813/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326341/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811493735 RX 11463459 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087796/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675575934 RX 11974534 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064825/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326354/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811495187 RX 11464967 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345246/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675577533 RX 11975896 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064838/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326367/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811496762 RX 11466475 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675579132 RX 11977364 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064851/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326379/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811498349 RX 11467867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087834/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675580608 RX 11978842 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064864/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326392/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811499936 RX 11469375 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087847/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675582207 RX 11980320 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064877/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326405/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811501535 RX 11470883 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087860/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675583806 RX 11981798 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064889/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326418/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811503011 RX 11472391 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345310/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675585405 RX 11983160 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064902/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326431/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811504610 RX 11473899 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675587004 RX 11984628 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064915/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326443/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811506209 RX 11475291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087898/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675588480 RX 11986106 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064928/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326456/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811507796 RX 11476799 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087911/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675590079 RX 11987584 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064941/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326469/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811509383 RX 11478307 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087924/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675591678 RX 11989062 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064953/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326482/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811510835 RX 11479815 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345374/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675593277 RX 11990424 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064966/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326495/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811512422 RX 11481323 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675594876 RX 11991892 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064979/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326507/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811513997 RX 11482715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087962/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675596352 RX 11993370 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3064992/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326520/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811515584 RX 11484223 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087975/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675597951 RX 11994848 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065005/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326533/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811517171 RX 11485731 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3087988/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675599550 RX 11996326 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065017/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326546/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811518623 RX 11487239 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345438/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675601149 RX 11997688 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065030/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326559/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811520222 RX 11488747 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675602748 RX 11999156 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065043/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326571/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811521821 RX 11490139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088026/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675604224 RX 12000634 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065056/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326584/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811523420 RX 11491647 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088039/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675605823 RX 12002112 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065069/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326597/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811525019 RX 11493155 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088052/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675607422 RX 12003590 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065081/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326610/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811526495 RX 11494663 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345502/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675609021 RX 12004952 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065094/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326623/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811528070 RX 11496171 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675610620 RX 12006420 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065107/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326635/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811529645 RX 11497563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088090/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675612096 RX 12007898 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065120/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326648/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811531232 RX 11499071 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088103/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675613695 RX 12009376 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065133/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326661/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811532819 RX 11500579 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088116/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675615294 RX 12010854 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065145/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326674/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811534271 RX 11502087 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345566/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675616893 RX 12012216 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065158/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326687/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811535858 RX 11503595 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675618492 RX 12013684 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065171/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326699/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811537433 RX 11504987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088154/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675619968 RX 12015162 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065184/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326712/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811539032 RX 11506495 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088167/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675621567 RX 12016640 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065197/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326725/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811540631 RX 11508003 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088180/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675623166 RX 12018118 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065209/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326738/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811542107 RX 11509511 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345630/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675624765 RX 12019480 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065222/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326751/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811543706 RX 11511019 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675626364 RX 12020948 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065235/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326763/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811545305 RX 11512411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088218/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675627840 RX 12022426 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065248/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326776/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811546880 RX 11513919 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088231/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675629439 RX 12023904 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065261/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326789/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811548467 RX 11515427 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088244/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675631038 RX 12025382 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065273/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326802/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811549919 RX 11516935 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345694/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675632637 RX 12026744 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065286/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326815/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811551506 RX 11518443 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675634236 RX 12028212 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065299/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326827/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811553081 RX 11519835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088282/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675635712 RX 12029690 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065312/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326840/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811554668 RX 11521343 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088295/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675637311 RX 12031168 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065325/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326853/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811556255 RX 11522851 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088308/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675638910 RX 12032646 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065337/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326866/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811557719 RX 11524359 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345758/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675640509 RX 12034008 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065350/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326879/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811559318 RX 11525867 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675642108 RX 12035476 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065363/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326891/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811560917 RX 11527259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088346/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675643584 RX 12036954 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065376/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326904/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811562516 RX 11528767 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088359/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675645183 RX 12038432 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065389/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326917/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811564115 RX 11530275 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088372/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675646782 RX 12039910 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065401/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326930/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811565579 RX 11531783 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345822/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675648381 RX 12041272 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065414/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326943/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811567154 RX 11533291 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675649980 RX 12042740 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065427/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326955/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811568729 RX 11534683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088410/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675651456 RX 12044218 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065440/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326968/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811570316 RX 11536191 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088423/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345861/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675653055 RX 12045696 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065453/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326981/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811571903 RX 11537699 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088436/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345874/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675654654 RX 12047174 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065465/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 326994/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811573355 RX 11539207 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345886/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675656253 RX 12048536 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065478/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327007/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811574942 RX 11540715 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345899/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675657852 RX 12050004 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065491/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327019/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811576529 RX 11542107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088474/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345912/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675659328 RX 12051482 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065504/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327032/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811578128 RX 11543615 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088487/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345925/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675660927 RX 12052960 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065517/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327045/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811579727 RX 11545123 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088500/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345938/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675662526 RX 12054438 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065529/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327058/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811581203 RX 11546631 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345950/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675664125 RX 12055800 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065542/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327071/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811582802 RX 11548139 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345963/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675665724 RX 12057268 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065555/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327083/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811584389 RX 11549531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088538/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345976/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675667200 RX 12058746 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065568/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327096/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811585964 RX 11551039 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088551/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 345989/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675668799 RX 12060224 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065581/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327109/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811587551 RX 11552547 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088564/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346002/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675670398 RX 12061702 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065593/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327122/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811589015 RX 11554055 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346014/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675671997 RX 12063064 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065606/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327135/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811590590 RX 11555563 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346027/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675673596 RX 12064532 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065619/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327147/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811592165 RX 11556955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088602/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346040/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675675072 RX 12066010 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065632/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327160/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811593752 RX 11558463 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088615/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346053/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675676671 RX 12067488 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065645/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327173/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811595339 RX 11559971 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088628/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346066/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675678270 RX 12068966 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065657/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327186/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811596815 RX 11561479 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346078/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675679869 RX 12070328 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065670/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327199/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811598414 RX 11562987 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346091/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675681468 RX 12071796 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065683/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327211/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811600013 RX 11564379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088666/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346104/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675682944 RX 12073274 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065696/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327224/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811601612 RX 11565887 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088679/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346117/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675684543 RX 12074752 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065709/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327237/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811603199 RX 11567395 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088692/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346130/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675686142 RX 12076230 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065721/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327250/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811604663 RX 11568903 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346142/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675687741 RX 12077592 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065734/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327263/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811606238 RX 11570411 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346155/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675689340 RX 12079060 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065747/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327275/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811607825 RX 11571803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088730/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346168/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675690816 RX 12080538 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065760/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327288/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811609400 RX 11573311 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088743/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346181/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675692415 RX 12082016 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065773/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327301/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811610987 RX 11574819 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088756/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346194/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675694014 RX 12083494 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065785/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327314/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811612451 RX 11576327 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346206/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675695613 RX 12084856 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065798/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327327/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811614026 RX 11577835 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346219/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675697212 RX 12086324 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065811/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327339/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811615625 RX 11579227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088794/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346232/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675698688 RX 12087802 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065824/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327352/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811617224 RX 11580735 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088807/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346245/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675700287 RX 12089280 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065837/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327365/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811618823 RX 11582243 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088820/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346258/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675701886 RX 12090758 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065849/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327378/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811620299 RX 11583751 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346270/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675703485 RX 12092120 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065862/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327391/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811621886 RX 11585259 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346283/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675705084 RX 12093588 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065875/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327403/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811623473 RX 11586651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088858/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346296/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675706560 RX 12095066 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065888/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327416/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811625048 RX 11588159 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088871/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346309/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675708159 RX 12096544 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065901/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327429/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811626635 RX 11589667 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088884/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346322/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675709758 RX 12098022 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065913/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327442/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811628099 RX 11591175 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346334/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675711357 RX 12099384 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065926/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327455/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811629674 RX 11592683 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346347/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675712956 RX 12100852 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065939/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327467/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811631261 RX 11594075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088922/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346360/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675714432 RX 12102330 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065952/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327480/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811632836 RX 11595583 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088935/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346373/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675716031 RX 12103808 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065965/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327493/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811634435 RX 11597091 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088948/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346386/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675717630 RX 12105286 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065977/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327506/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811635911 RX 11598599 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346398/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675719229 RX 12106648 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3065990/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327519/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811637510 RX 11600107 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346411/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675720828 RX 12108116 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066003/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327531/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811639109 RX 11601499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088986/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346424/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675722304 RX 12109594 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066016/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327544/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811640708 RX 11603007 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3088999/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346437/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675723903 RX 12111072 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066029/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327557/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811642283 RX 11604515 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089012/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346450/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675725502 RX 12112550 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066041/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327570/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811643747 RX 11606023 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346462/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675727101 RX 12113912 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066054/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327583/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811645322 RX 11607531 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346475/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675728700 RX 12115380 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066067/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327595/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811646909 RX 11608923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089050/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346488/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675730176 RX 12116858 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066080/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327608/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811648484 RX 11610431 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089063/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346501/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675731775 RX 12118336 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066093/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327621/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811650071 RX 11611939 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089076/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346514/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675733374 RX 12119814 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066105/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327634/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811651535 RX 11613447 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346526/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675734973 RX 12121176 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066118/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327647/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811653122 RX 11614955 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346539/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675736572 RX 12122644 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066131/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327659/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811654721 RX 11616347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089114/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346552/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675738048 RX 12124122 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066144/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327672/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811656320 RX 11617855 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089127/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346565/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675739647 RX 12125600 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066157/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327685/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811657919 RX 11619363 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089140/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346578/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675741246 RX 12127078 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066169/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327698/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811659395 RX 11620871 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346590/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675742845 RX 12128440 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066182/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327711/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811660970 RX 11622379 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346603/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675744444 RX 12129908 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066195/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327723/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811662557 RX 11623771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089178/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346616/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675745920 RX 12131386 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066208/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327736/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811664132 RX 11625279 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089191/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346629/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675747519 RX 12132864 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066221/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327749/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811665719 RX 11626787 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089204/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346642/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675749118 RX 12134342 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066233/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327762/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811667183 RX 11628295 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346654/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675750717 RX 12135704 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066246/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327775/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811668758 RX 11629803 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346667/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675752316 RX 12137172 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066259/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327787/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811670345 RX 11631195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089242/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346680/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675753792 RX 12138650 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066272/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327800/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811671932 RX 11632703 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089255/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346693/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675755391 RX 12140128 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066285/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327813/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811673531 RX 11634211 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089268/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346706/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675756990 RX 12141606 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066297/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327826/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811675007 RX 11635719 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346718/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675758589 RX 12142968 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066310/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327839/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811676606 RX 11637227 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346731/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675760188 RX 12144436 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066323/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327851/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811678205 RX 11638619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089306/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346744/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675761664 RX 12145914 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066336/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327864/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811679792 RX 11640127 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089319/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346757/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675763263 RX 12147392 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066349/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327877/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811681367 RX 11641635 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089332/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346770/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675764862 RX 12148870 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066361/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327890/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811682831 RX 11643143 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089345/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346782/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675766461 RX 12150232 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066374/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327903/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811684406 RX 11644651 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089358/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346795/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675768060 RX 12151700 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066387/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327915/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811685993 RX 11646043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089370/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346808/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675769536 RX 12153178 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066400/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327928/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811687568 RX 11647551 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089383/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346821/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675771135 RX 12154656 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066413/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327941/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811689155 RX 11649059 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089396/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346834/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675772734 RX 12156134 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066425/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327954/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811690619 RX 11650567 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089409/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675774333 RX 12157496 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066438/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327967/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811692218 RX 11652075 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089422/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346859/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675775932 RX 12158964 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066451/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327979/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811693817 RX 11653467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089434/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346872/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675777408 RX 12160442 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066464/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 327992/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811695416 RX 11654975 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089447/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346885/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675779007 RX 12161920 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066477/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328005/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811697015 RX 11656483 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089460/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346898/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675780606 RX 12163398 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066489/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328018/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811698479 RX 11657991 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089473/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346910/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675782205 RX 12164760 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066502/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328031/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811700054 RX 11659499 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089486/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346923/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675783804 RX 12166228 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066515/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328043/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811701641 RX 11660891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089498/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346936/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675785280 RX 12167706 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066528/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328056/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811703228 RX 11662399 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089511/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346949/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675786879 RX 12169184 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066541/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328069/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811704803 RX 11663907 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089524/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346962/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675788478 RX 12170662 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066553/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328082/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811706267 RX 11665415 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089537/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346974/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675790077 RX 12172024 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066566/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328095/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811707842 RX 11666923 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089550/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 346987/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675791676 RX 12173492 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066579/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328107/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811709429 RX 11668315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089562/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347000/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675793152 RX 12174970 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066592/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328120/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811711028 RX 11669823 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089575/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347013/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675794751 RX 12176448 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066605/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328133/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811712627 RX 11671331 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089588/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347026/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675796350 RX 12177926 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066617/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328146/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811714103 RX 11672839 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089601/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347038/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675797949 RX 12179288 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066630/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328159/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811715702 RX 11674347 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089614/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347051/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675799548 RX 12180756 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066643/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328171/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811717289 RX 11675739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089626/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347064/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675801024 RX 12182234 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066656/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328184/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811718876 RX 11677247 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089639/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347077/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675802623 RX 12183712 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066669/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328197/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811720451 RX 11678755 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089652/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347090/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675804222 RX 12185190 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066681/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328210/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811721915 RX 11680263 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089665/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347102/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675805821 RX 12186552 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066694/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328223/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811723490 RX 11681771 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089678/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347115/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675807420 RX 12188020 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066707/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328235/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811725077 RX 11683163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089690/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347128/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675808896 RX 12189498 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066720/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328248/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811726664 RX 11684671 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089703/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347141/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675810495 RX 12190976 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066733/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328261/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811728239 RX 11686179 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089716/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347154/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675812094 RX 12192454 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066745/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328274/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811729715 RX 11687687 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089729/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347166/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675813693 RX 12193816 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066758/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328287/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811731314 RX 11689195 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089742/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347179/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675815292 RX 12195284 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066771/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328299/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811732913 RX 11690587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089754/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347192/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675816768 RX 12196762 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066784/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328312/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811734512 RX 11692095 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089767/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347205/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675818367 RX 12198240 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066797/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328325/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811736111 RX 11693603 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089780/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347218/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675819966 RX 12199718 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066809/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328338/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811737563 RX 11695111 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089793/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347230/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675821565 RX 12201080 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066822/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328351/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811739138 RX 11696619 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089806/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347243/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675823164 RX 12202548 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066835/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328363/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811740725 RX 11698011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089818/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347256/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675824640 RX 12204026 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066848/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328376/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811742312 RX 11699519 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089831/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347269/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675826239 RX 12205504 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066861/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328389/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811743887 RX 11701027 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089844/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347282/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675827838 RX 12206982 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066873/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328402/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811745351 RX 11702535 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089857/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347294/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675829437 RX 12208344 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066886/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328415/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811746926 RX 11704043 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089870/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347307/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675831036 RX 12209812 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066899/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328427/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811748525 RX 11705435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089882/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347320/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675832512 RX 12211290 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066912/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328440/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811750124 RX 11706943 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089895/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347333/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675834111 RX 12212768 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066925/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328453/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811751723 RX 11708451 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089908/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347346/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675835710 RX 12214246 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066937/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328466/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811753199 RX 11709959 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089921/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347358/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675837309 RX 12215608 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066950/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328479/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811754798 RX 11711467 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089934/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347371/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675838908 RX 12217076 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066963/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328491/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811756373 RX 11712859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089946/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347384/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675840384 RX 12218554 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066976/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328504/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811757960 RX 11714367 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089959/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347397/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675841983 RX 12220032 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3066989/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328517/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811759535 RX 11715875 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089972/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347410/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675843582 RX 12221510 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067001/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328530/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811760999 RX 11717383 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089985/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347422/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675845181 RX 12222872 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067014/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328543/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811762574 RX 11718891 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3089998/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347435/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675846780 RX 12224340 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067027/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328555/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811764161 RX 11720283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090010/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347448/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675848256 RX 12225818 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067040/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328568/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811765748 RX 11721791 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090023/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347461/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675849855 RX 12227296 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067053/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328581/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811767335 RX 11723299 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090036/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347474/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675851454 RX 12228774 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067065/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328594/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811768811 RX 11724807 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090049/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347486/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675853053 RX 12230136 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067078/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328607/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811770410 RX 11726315 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090062/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347499/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675854652 RX 12231604 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067091/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328619/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811772009 RX 11727707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090074/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347512/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675856128 RX 12233082 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067104/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328632/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811773608 RX 11729215 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090087/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347525/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675857727 RX 12234560 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067117/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328645/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811775195 RX 11730723 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090100/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347538/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675859326 RX 12236038 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067129/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328658/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811776647 RX 11732231 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090113/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347550/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675860925 RX 12237400 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067142/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328671/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811778222 RX 11733739 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090126/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347563/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675862524 RX 12238868 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067155/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328683/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811779809 RX 11735131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090138/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347576/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675864000 RX 12240346 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067168/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328696/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811781396 RX 11736639 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090151/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347589/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675865599 RX 12241824 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067181/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328709/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811782971 RX 11738147 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090164/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347602/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675867198 RX 12243302 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067193/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328722/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811784435 RX 11739655 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090177/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347614/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675868797 RX 12244664 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067206/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328735/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811786022 RX 11741163 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090190/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347627/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675870396 RX 12246132 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067219/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328747/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811787621 RX 11742555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090202/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347640/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675871872 RX 12247610 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067232/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328760/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811789220 RX 11744063 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090215/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347653/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675873471 RX 12249088 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067245/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328773/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811790819 RX 11745571 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090228/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347666/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675875070 RX 12250566 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067257/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328786/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811792295 RX 11747079 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090241/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347678/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675876669 RX 12251928 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067270/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328799/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811793882 RX 11748587 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090254/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347691/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675878268 RX 12253396 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067283/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328811/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811795457 RX 11749979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090266/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347704/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675879744 RX 12254874 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067296/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328824/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811797044 RX 11751487 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090279/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347717/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675881343 RX 12256352 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067309/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328837/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811798631 RX 11752995 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090292/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347730/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675882942 RX 12257830 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067321/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328850/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811800083 RX 11754503 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090305/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347742/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675884541 RX 12259192 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067334/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328863/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811801658 RX 11756011 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347755/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675886140 RX 12260660 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067347/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328875/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811803245 RX 11757403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090330/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347768/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675887616 RX 12262138 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067360/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328888/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811804832 RX 11758911 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090343/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347781/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675889215 RX 12263616 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067373/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328901/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811806431 RX 11760419 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090356/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347794/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675890814 RX 12265094 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067385/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328914/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811807907 RX 11761927 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090369/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347806/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675892413 RX 12266456 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067398/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328927/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811809506 RX 11763435 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090382/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347819/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675894012 RX 12267924 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067411/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328939/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811811105 RX 11764827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090394/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347832/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675895488 RX 12269402 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067424/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328952/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811812692 RX 11766335 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090407/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347845/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675897087 RX 12270880 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067437/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328965/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811814279 RX 11767843 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090420/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347858/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675898686 RX 12272358 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067449/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328978/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811815731 RX 11769351 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090433/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347870/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675900285 RX 12273720 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067462/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 328991/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811817318 RX 11770859 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090446/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347883/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675901884 RX 12275188 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067475/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329003/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811818893 RX 11772251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090458/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347896/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675903360 RX 12276666 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067488/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329016/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811820480 RX 11773759 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090471/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347909/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675904959 RX 12278144 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067501/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329029/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811822067 RX 11775267 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090484/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347922/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675906558 RX 12279622 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067513/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329042/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811823519 RX 11776775 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090497/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347934/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675908157 RX 12280984 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067526/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329055/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811825118 RX 11778283 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090510/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347947/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675909756 RX 12282452 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067539/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329067/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811826717 RX 11779675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090522/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347960/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675911232 RX 12283930 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067552/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329080/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811828316 RX 11781183 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090535/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347973/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675912831 RX 12285408 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067565/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329093/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811829915 RX 11782691 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090548/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347986/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675914430 RX 12286886 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067577/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329106/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811831391 RX 11784199 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090561/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 347998/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675916029 RX 12288248 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067590/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329119/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811832966 RX 11785707 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090574/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348011/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675917628 RX 12289716 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067603/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329131/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811834541 RX 11787099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090586/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348024/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675919104 RX 12291194 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067616/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329144/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811836128 RX 11788607 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090599/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348037/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675920703 RX 12292672 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067629/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329157/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811837715 RX 11790115 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090612/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348050/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675922302 RX 12294150 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067641/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329170/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811839167 RX 11791623 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090625/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348062/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675923901 RX 12295512 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067654/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329183/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811840754 RX 11793131 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090638/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348075/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675925500 RX 12296980 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067667/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329195/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811842329 RX 11794523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090650/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348088/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675926976 RX 12298458 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067680/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329208/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811843928 RX 11796031 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090663/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348101/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675928575 RX 12299936 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067693/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329221/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811845527 RX 11797539 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090676/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348114/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675930174 RX 12301414 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067705/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329234/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811847003 RX 11799047 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090689/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348126/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675931773 RX 12302776 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067718/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329247/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811848602 RX 11800555 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090702/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348139/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675933372 RX 12304244 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067731/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329259/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811850201 RX 11801947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090714/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348152/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675934848 RX 12305722 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067744/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329272/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811851776 RX 11803455 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090727/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348165/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675936447 RX 12307200 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067757/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329285/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811853363 RX 11804963 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090740/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348178/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675938046 RX 12308678 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067769/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329298/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811854815 RX 11806471 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090753/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348190/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675939645 RX 12310040 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067782/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329311/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811856402 RX 11807979 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090766/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348203/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675941244 RX 12311508 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067795/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329323/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811857977 RX 11809371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090778/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348216/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675942720 RX 12312986 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067808/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329336/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811859564 RX 11810879 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090791/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348229/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675944319 RX 12314464 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067821/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329349/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811861151 RX 11812387 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090804/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348242/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675945918 RX 12315942 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067833/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329362/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811862615 RX 11813895 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090817/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348254/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675947517 RX 12317304 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067846/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329375/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811864214 RX 11815403 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090830/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348267/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675949116 RX 12318772 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067859/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329387/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811865813 RX 11816795 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090842/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348280/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675950592 RX 12320250 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067872/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329400/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811867412 RX 11818303 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090855/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348293/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675952191 RX 12321728 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067885/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329413/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811869011 RX 11819811 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090868/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348306/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675953790 RX 12323206 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067897/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329426/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811870475 RX 11821319 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090881/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348318/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675955389 RX 12324568 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067910/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329439/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811872050 RX 11822827 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090894/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348331/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675956988 RX 12326036 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067923/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329451/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811873625 RX 11824219 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090906/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348344/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675958464 RX 12327514 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067936/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329464/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811875212 RX 11825727 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090919/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348357/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675960063 RX 12328992 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067949/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329477/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811876799 RX 11827235 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090932/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348370/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675961662 RX 12330470 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067961/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329490/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811878251 RX 11828743 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090945/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348382/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675963261 RX 12331832 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067974/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329503/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811879838 RX 11830251 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090958/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348395/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675964860 RX 12333300 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3067987/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329515/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811881425 RX 11831643 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090970/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348408/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675966336 RX 12334778 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068000/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329528/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811883024 RX 11833151 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090983/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348421/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675967935 RX 12336256 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068013/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329541/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811884623 RX 11834659 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3090996/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348434/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675969534 RX 12337734 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068025/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329554/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811886099 RX 11836167 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091009/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348446/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675971133 RX 12339096 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068038/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329567/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811887698 RX 11837675 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091022/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348459/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675972732 RX 12340564 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068051/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329579/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811889285 RX 11839067 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091034/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348472/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675974208 RX 12342042 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068064/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329592/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811890860 RX 11840575 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091047/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348485/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675975807 RX 12343520 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068077/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329605/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811892447 RX 11842083 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091060/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348498/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675977406 RX 12344998 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068089/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329618/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811893911 RX 11843591 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091073/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348510/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675979005 RX 12346360 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068102/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329631/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811895486 RX 11845099 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091086/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348523/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675980604 RX 12347828 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068115/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329643/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811897061 RX 11846491 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091098/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348536/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675982080 RX 12349306 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068128/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329656/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811898648 RX 11847999 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091111/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348549/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675983679 RX 12350784 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068141/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329669/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811900235 RX 11849507 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091124/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348562/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675985278 RX 12352262 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068153/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329682/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811901711 RX 11851015 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091137/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348574/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675986877 RX 12353624 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068166/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329695/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811903310 RX 11852523 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091150/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348587/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675988476 RX 12355092 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068179/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329707/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811904909 RX 11853915 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091162/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348600/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675989952 RX 12356570 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068192/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329720/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811906508 RX 11855423 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091175/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348613/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675991551 RX 12358048 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068205/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329733/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811908095 RX 11856931 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091188/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348626/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675993150 RX 12359526 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068217/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329746/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811909559 RX 11858439 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 0.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091201/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348638/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675994749 RX 12360888 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068230/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329759/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811911134 RX 11859947 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 128.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091214/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348651/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675996348 RX 12362356 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068243/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329771/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811912721 RX 11861339 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 256.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091226/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348664/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675997824 RX 12363834 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068256/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329784/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811914296 RX 11862847 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 384.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091239/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348677/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20675999423 RX 12365312 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -47 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068269/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329797/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811915883 RX 11864355 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 512.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091252/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348690/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20676001022 RX 12366790 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068281/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329810/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811917347 RX 11865863 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 640.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091265/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348702/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20676002621 RX 12368152 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -50 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068294/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329823/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811918922 RX 11867371 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 768.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091278/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348715/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20676004220 RX 12369620 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068307/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329835/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811920521 RX 11868763 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +[NR_MAC] Frame.Slot 896.0 +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091290/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348728/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20676005696 RX 12371098 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (16 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068320/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329848/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811922120 RX 11870271 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + + +** Caught SIGTERM, shutting down + +** Caught SIGTERM, shutting down +[PHY] Killing gNB 0 processing threads + +** Caught SIGTERM, shutting down +Entering ITTI signals handler +TYPE TO TERMINATE +[E2-AGENT]: CONTROL ACKNOWLEDGE tx +Returned from ITTI signal handler +oai_exit=1 +Exiting ru_thread +[E2AP]: SCTP_SHUTDOWN_EVENT +[E2 AGENT]: Communication with the nearRT-RIC lost + +Run time: 1h 4429s + Time executing user inst.: 6229s 602751us + Time executing system inst.: 3119s 256723us + Max. Phy. memory usage: 2622180kB + Page fault number (no io): 649789 + Page fault number (requiring io): 0 + Number of file system read: 632 + Number of filesystem write: 61168 + Number of context switch (process origin, io...): 200745620 + Number of context switch (os origin, priority...): 3566375 +Linux signal Interrupt... +/home/ubuntu/autonomous_5g_slicing_lab/llm-slicing-5g-lab/openairinterface5g/executables/softmodem-common.c:223 signal_handler() Exiting OAI softmodem: softmodem starting exit procedure + diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_UE_stats-0.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_UE_stats-0.log index 4a531f447..1f79a6918 100644 Binary files a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_UE_stats-0.log and b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_UE_stats-0.log differ diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_stats.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_stats.log index 602cb1ae6..1abb3b308 100644 --- a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_stats.log +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrL1_stats.log @@ -6,14 +6,14 @@ Blacklisted PRBs 0/106 0. 0. 0. 0. 0. 0. max_IO = 0 (0), min_I0 = 0 (0), avg_I0 = 0 dB PRACH I0 = 0.0 dB +DLSCH RNTI 8379: current_Qm 2, current_RI 1, total_bytes TX -798829223 +DLSCH RNTI 96c8: current_Qm 2, current_RI 1, total_bytes TX 337087230 +ULSCH RNTI 8379, 976: ulsch_power[0] 50,9 ulsch_noise_power[0] 0.0, sync_pos 1 + round_trials 348737(2.9e-06):1(0.0e+00):0(0.0e+00):0, DTX 0, current_Qm 2, current_RI 1, total_bytes RX/SCHED 0/24 +ULSCH RNTI 96c8, 976: ulsch_power[0] 51,0 ulsch_noise_power[0] 0.0, sync_pos 2 + round_trials 329857(3.0e-06):1(0.0e+00):0(0.0e+00):0, DTX 0, current_Qm 2, current_RI 1, total_bytes RX/SCHED 0/24 -LSCH RNTI 12f1: current_Qm 2, current_RI 1, total_bytes TX 1702867412 -ULSCH RNTI 12f1, 802: ulsch_power[0] 50,9 ulsch_noise_power[0] 0.0, sync_pos 2 - round_trials 183157(0.0e+00):0(0.0e+00):0(0.0e+00):0, DTX 0, current_Qm 0, current_RI 0, total_bytes RX/SCHED 0/0 -0e+00):0, DTX 0, current_Qm 0, current_RI 0, total_bytes RX/SCHED 0/0 -ULSCH RNTI 12f1, 545: ulsch_power[0] 50,9 ulsch_noise_power[0] 0.0, sync_pos 1 - round_trials 183132(0.0e+00):0(0.0e+00):0(0.0e+00):0, DTX 0, current_Qm 0, current_RI 0, total_bytes RX/SCHED 0/0 diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrMAC_stats.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrMAC_stats.log index ff0128621..b7b60074b 100644 --- a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrMAC_stats.log +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrMAC_stats.log @@ -1,2 +1,20 @@ +UE RNTI 8379 CU-UE-ID 1 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (14 meas) +UE 8379: UL-RI 1, TPMI 0 +UE 8379: dlsch_rounds 3091288/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: ulsch_rounds 348726/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 8379: MAC: TX 20676005450 RX 12370876 bytes +UE 8379: LCID 1: TX 1022 RX 325 bytes +UE 8379: LCID 2: TX 0 RX 0 bytes +UE 8379: LCID 4: TX 20576415186 RX 502152 bytes +UE RNTI 96c8 CU-UE-ID 2 in-sync PH 0 dB PCMAX 0 dBm, average RSRP -44 (14 meas) +UE 96c8: UL-RI 1, TPMI 0 +UE 96c8: dlsch_rounds 3068318/1/0/0, dlsch_errors 0, pucch0_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: ulsch_rounds 329846/1/0/0, ulsch_errors 0, ulsch_DTX 0, BLER 0.00000 MCS (0) 9 +UE 96c8: MAC: TX 21811921874 RX 11870039 bytes +UE 96c8: LCID 1: TX 1024 RX 330 bytes +UE 96c8: LCID 2: TX 0 RX 0 bytes +UE 96c8: LCID 4: TX 21715052955 RX 502469 bytes + +s + - Name Total Per Trials Num Trials CPU_F_GHz 2.000292 diff --git a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrRRC_stats.log b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrRRC_stats.log index f09fb36a1..69341a948 100644 --- a/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrRRC_stats.log +++ b/community/autonomous_5g_slicing_lab/llm-slicing-5g-lab/nrRRC_stats.log @@ -1,4 +1,11 @@ +UE 0 CU UE ID 1 DU UE ID 33657 RNTI 8379 random identity 0000123456789abc S-TMSI 56789abc: + RRC status connected + PDU session 0 ID 10 status established + associated DU: (local/integrated CU-DU) +UE 1 CU UE ID 2 DU UE ID 38600 RNTI 96c8 random identity 0000123456789abc S-TMSI 56789abc: + RRC status connected + PDU session 0 ID 10 status established + associated DU: (local/integrated CU-DU) 1 connected DUs -[1] DU ID 3584 (gNB-OAI) integrated DU-CU: nrCellID 12345678, PCI 0, SSB ARFCN 641280 - TDD: band 78 ARFCN 640008 SCS 30 (kHz) PRB 106 +[1] DU ID 3584 (gNB-OAI) integrated DU-CU: nrCellID 12345678, PCI 0